diff options
author | jmz <jmz@FreeBSD.org> | 2000-02-12 01:08:00 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 2000-02-12 01:08:00 +0800 |
commit | 7116c7488ec76ba7ad9c92b02ef347a21c995c30 (patch) | |
tree | c5cc1be4c42e75fc32e1fc05ff5997d21165411a /textproc/ispell/files | |
parent | ccc2b20746923533a902fd562ac0e732d026acf8 (diff) | |
download | freebsd-ports-graphics-7116c7488ec76ba7ad9c92b02ef347a21c995c30.tar.gz freebsd-ports-graphics-7116c7488ec76ba7ad9c92b02ef347a21c995c30.tar.zst freebsd-ports-graphics-7116c7488ec76ba7ad9c92b02ef347a21c995c30.zip |
Build british dictionary with ISPELL_BRITISH=yes instead of `make british'.
Cleanups from PR ports/16450
Add norvegian dictionary (ports/16533)
Don't create a dummy file in ${WRKSRC}. It is only valid when emacs is a link
to xemacs.
PR: ports/16450, ports/16533
Submitted by: Alexander Langer <alex@big.endian.de>
Reviewed by: jmz
Diffstat (limited to 'textproc/ispell/files')
-rw-r--r-- | textproc/ispell/files/BR.patch | 12 | ||||
-rw-r--r-- | textproc/ispell/files/NO.patch | 36 |
2 files changed, 45 insertions, 3 deletions
diff --git a/textproc/ispell/files/BR.patch b/textproc/ispell/files/BR.patch index a2213217356..888bb2c13cd 100644 --- a/textproc/ispell/files/BR.patch +++ b/textproc/ispell/files/BR.patch @@ -1,5 +1,5 @@ ---- Makefile.orig Mon Oct 18 15:15:22 1999 -+++ Makefile Tue Nov 2 23:55:52 1999 +--- Makefile.orig Mon Oct 18 19:15:22 1999 ++++ Makefile Thu Feb 10 17:04:59 2000 @@ -16,12 +16,11 @@ # VDIR - aqui será colocado o banco de verbos # MANDIR - aqui será colocada a man page do conjugue @@ -18,7 +18,13 @@ # # Daqui para baixo não mexa mais em nada -@@ -71,20 +70,16 @@ +@@ -66,25 +65,21 @@ + br.hash: v.ispell + cat v.ispell E.ispell|sort|uniq >br.tmp + mv -f br.tmp br.ispell +- buildhash br.ispell br.aff br.hash ++ ${BUILDHASH} br.ispell br.aff br.hash + # # Instala o br.hash # diff --git a/textproc/ispell/files/NO.patch b/textproc/ispell/files/NO.patch new file mode 100644 index 00000000000..841a55bd1b3 --- /dev/null +++ b/textproc/ispell/files/NO.patch @@ -0,0 +1,36 @@ +*** 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); |