diff options
author | wiz <wiz@pkgsrc.org> | 2009-01-09 11:35:07 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2009-01-09 11:35:07 +0000 |
commit | 6a6e6d87a16186358962a51a1caa95874eccafba (patch) | |
tree | 47e1c81f3bd89d9c5264609c17f699402dc8e1d3 /textproc | |
parent | 8af770cc7e643154d68a9a28c22b1126ff7975e1 (diff) | |
download | pkgsrc-6a6e6d87a16186358962a51a1caa95874eccafba.tar.gz |
Remove unneeded patch.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/hunspell-de/patches/patch-aa | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/textproc/hunspell-de/patches/patch-aa b/textproc/hunspell-de/patches/patch-aa deleted file mode 100644 index 5a5ef40c459..00000000000 --- a/textproc/hunspell-de/patches/patch-aa +++ /dev/null @@ -1,40 +0,0 @@ -$NetBSD: patch-aa,v 1.1 2008/11/11 14:17:34 wiz Exp $ - ---- Makefile.orig 2008-11-06 20:04:26.000000000 +0100 -+++ Makefile -@@ -192,7 +192,7 @@ myspell/$(1).dic: $$(WORDS_$(1)) $$(WORD - cat $$(WORDS_$(1)) $$(WORDS_de_all) dicts/abkuerzpunkt.txt \ - | (test -e ./bin/conv_dict_$(1) && ./bin/conv_dict_$(1) || cat) \ - | ./bin/myspell-generic-process.sh > $$@.tmp -- wc -l < $$@.tmp > $$@ -+ wc -l < $$@.tmp | sed "s/^ *//" > $$@ - cat myspell/de_all.dic.header | $(SED) "s/AFF_VERSION_REPLACE/$(VERSION_STRING)/;s/LANG_REPLACE/$(1)/" >> $$@ - ./bin/dic2iso < $$@.tmp >> $$@ - $(RM_OR_NOT) $$@.tmp -@@ -297,7 +297,7 @@ hunspell/$(1)_small.dic: $$(HUNSPELL_DIC - | (test -e ./bin/conv_dict_$(1) && ./bin/conv_dict_$(1) || cat) \ - | ./bin/hunspell-generic-process.sh \ - > $$@.tmp -- wc -l < $$@.tmp > $$@ -+ wc -l < $$@.tmp | sed "s/^ *//" > $$@ - cat myspell/de_all.dic.header | \ - $(SED) "s/AFF_VERSION_REPLACE/$(VERSION_STRING)/;s/LANG_REPLACE/$(1)/;s/Myspell/Hunspell/" >> $$@ - ./bin/dic2iso < $$@.tmp >> $$@ -@@ -314,7 +314,7 @@ hunspell/$(1).dic: $$(HUNSPELL_DICTS_ALL - | ./bin/hunspell-generic-process.sh \ - | ./bin/hunspell-optimize-roothelper.pl \ - > $$@.tmp -- wc -l < $$@.tmp > $$@ -+ wc -l < $$@.tmp | sed "s/^ *//" > $$@ - cat myspell/de_all.dic.header | $(SED) "s/AFF_VERSION_REPLACE/$$(VERSION_STRING)/;s/LANG_REPLACE/$(1)/;s/Myspell/Hunspell/" >> $$@ - ./bin/dic2iso < $$@.tmp >> $$@ - $(RM_OR_NOT) $$@.tmp -@@ -365,7 +365,7 @@ huntest: hunspell/hunspell-test.txt - # so this is the lesser evil. No perfect solution found so far... - cat hunspell/hunspell-test.txt |$(HUNSPELL) -L -d hunspell/de_DE > $@.tmp 2>&1 - @if `grep -q "^0 " $@.tmp`;then echo "Huntest NICHT bestanden:"; cat $@.tmp; exit 1;fi -- @if ! test "`wc -l < $@.tmp`" = "`tail -n 1 $@.tmp | cut -f1 -d:`";then echo "Huntest NICHT bestanden (Zu viele als korrekt erkannte Wörter):"; cat $@.tmp; exit 1;fi -+ @if ! test "`wc -l < $@.tmp | sed 's/^ *//'`" = "`tail -n 1 $@.tmp | cut -f1 -d:`";then echo "Huntest NICHT bestanden (Zu viele als korrekt erkannte Wörter):"; cat $@.tmp; exit 1;fi - - - ### |