diff options
author | alex <alex@FreeBSD.org> | 2001-01-13 23:41:14 +0800 |
---|---|---|
committer | alex <alex@FreeBSD.org> | 2001-01-13 23:41:14 +0800 |
commit | da057eee634bb2088855fb8dfac8636e84e74951 (patch) | |
tree | 396cf3306094708667f2d38b93888ef769839ed5 /textproc/ispell/files | |
parent | 4116fc69cd6ca665d05e5b433f870f3462384c15 (diff) | |
download | freebsd-ports-graphics-da057eee634bb2088855fb8dfac8636e84e74951.tar.gz freebsd-ports-graphics-da057eee634bb2088855fb8dfac8636e84e74951.tar.zst freebsd-ports-graphics-da057eee634bb2088855fb8dfac8636e84e74951.zip |
Update the ISPELL_NO part to version 2.0
Bump PORTREVISON.
Diffstat (limited to 'textproc/ispell/files')
-rw-r--r-- | textproc/ispell/files/NO.patch | 87 |
1 files changed, 51 insertions, 36 deletions
diff --git a/textproc/ispell/files/NO.patch b/textproc/ispell/files/NO.patch index 841a55bd1b3..6cd6cae772c 100644 --- a/textproc/ispell/files/NO.patch +++ b/textproc/ispell/files/NO.patch @@ -1,36 +1,51 @@ -*** inorsk/parse.y.org Sun Feb 6 19:41:49 2000 ---- inorsk/parse.y Sun Feb 6 19:42:58 2000 -*************** -*** 870,876 **** - flagbit = toupper (flagbit); - #endif /* MASKBITS */ - #if MASKBITS <= 64 -! if (!isalpha (flagbit)) - yyerror (PARSE_Y_BAD_FLAG); - #endif /* MASKBITS */ - flagbit = CHARTOBIT (flagbit); ---- 870,876 ---- - flagbit = toupper (flagbit); - #endif /* MASKBITS */ - #if MASKBITS <= 64 -! if (flagbit < 'A' || flagbit > 'z') - yyerror (PARSE_Y_BAD_FLAG); - #endif /* MASKBITS */ - flagbit = CHARTOBIT (flagbit); -*************** -*** 902,908 **** - flagbit = toupper (flagbit); - #endif /* MASKBITS */ - #if MASKBITS <= 64 -! if (!isalpha (flagbit)) - yyerror (PARSE_Y_BAD_FLAG); - #endif /* MASKBITS */ - flagbit = CHARTOBIT (flagbit); ---- 902,908 ---- - flagbit = toupper (flagbit); - #endif /* MASKBITS */ - #if MASKBITS <= 64 -! if (flagbit < 'A' || flagbit > 'z') - yyerror (PARSE_Y_BAD_FLAG); - #endif /* MASKBITS */ - flagbit = CHARTOBIT (flagbit); +--- norsk/Makefile.orig Tue Sep 5 23:50:30 2000 ++++ norsk/Makefile Sat Jan 13 15:23:30 2001 +@@ -8,9 +8,9 @@ + SHELL = /bin/sh + MAKE = make + +-CONFIG = ../../config.sh +-PATHADDER = ../.. +-BUILDHASH = ../../buildhash ++CONFIG = ../ispell-3.1/config.sh ++PATHADDER = ../ispell-3.1 ++BUILDHASH ?= ../ispell-3.1/buildhash + + # The following variables make it easy to adapt this Makefile to + # numerous languages. +@@ -269,7 +269,7 @@ + echo -e 'suffixes\nflag *z:\nY Y Y Y Y > YYYYYY' >> $@ + + norsk.words: norsk.words.sq +- unsq < norsk.words.sq > norsk.words ++ $(UNSQ) < norsk.words.sq > norsk.words + + # The following ugly code munches a part of the base file, keeping the + # indications of the frequency of the words. It also removes some +@@ -296,7 +296,7 @@ + | grep -e '$(subst munched.,,$@)$$' \ + | sed -e 's/ .*//' -e 's/-/î/g' -e 's/ \*//' \ + | grep '^[${UCH}]' \ +- | munchlist -v -l ${AFFIXES}.munch \ ++ | $(MUNCHLIST) -v -l ${AFFIXES}.munch \ + > munch1.tmp + PATH=$(PATHADDER):$$PATH; \ + export PATH; \ +@@ -304,7 +304,7 @@ + | grep -e '$(subst munched.,,$@)$$' \ + | sed -e 's/ .*//' -e 's/-/î/g' -e 's/ \*//' \ + | grep -v '^[${UCH}]' \ +- | munchlist -v -l ${AFFIXES}.munch \ ++ | $(MUNCHLIST) -v -l ${AFFIXES}.munch \ + >> munch1.tmp + cat munch1.tmp \ + | sed -e 's/\(zyzyzy\|ZYZYZY\)/\1\/\` /' \ +@@ -463,7 +463,7 @@ + | grep '\*' \ + | sed -e 's/ .*//' \ + | tr -d '-' \ +- | munchlist -v -l ny${AFFIXES}.munch \ ++ | $(MUNCHLIST) -v -l ny${AFFIXES}.munch \ + | sed -e N -e 's/^\(\([-${CH}]\)*\)er\/\(.*F.*\)\n\1rar\/M$$/\1er\/\3D/' \ + -e '$$ p' -e '$$ d' -e P -e D \ + > $@ |