diff options
author | wiz <wiz> | 2005-06-26 05:19:10 +0000 |
---|---|---|
committer | wiz <wiz> | 2005-06-26 05:19:10 +0000 |
commit | c6c9b27c03aa663dc155ed26aaca7eec81805323 (patch) | |
tree | 548f12d3c310f04507b6508adbee265ba477d79a /textproc/aspell | |
parent | 1188c06455e23cb960418e62b466507a584258d8 (diff) | |
download | pkgsrc-c6c9b27c03aa663dc155ed26aaca7eec81805323.tar.gz |
Add patch from program's author that fixes aspell-cz build.
Bump PKGREVISION to 1.
Diffstat (limited to 'textproc/aspell')
-rw-r--r-- | textproc/aspell/Makefile | 3 | ||||
-rw-r--r-- | textproc/aspell/distinfo | 3 | ||||
-rw-r--r-- | textproc/aspell/patches/patch-ab | 13 |
3 files changed, 17 insertions, 2 deletions
diff --git a/textproc/aspell/Makefile b/textproc/aspell/Makefile index 2aefbb91d11..ba0dd89b34f 100644 --- a/textproc/aspell/Makefile +++ b/textproc/aspell/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.31 2005/05/22 20:08:34 jlam Exp $ +# $NetBSD: Makefile,v 1.32 2005/06/26 05:19:10 wiz Exp $ # DISTNAME= aspell-0.60.2 +PKGREVISION= 1 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GNU:=aspell/} diff --git a/textproc/aspell/distinfo b/textproc/aspell/distinfo index 192426f604b..15e41a7444e 100644 --- a/textproc/aspell/distinfo +++ b/textproc/aspell/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.13 2005/02/24 14:48:39 agc Exp $ +$NetBSD: distinfo,v 1.14 2005/06/26 05:19:10 wiz Exp $ SHA1 (aspell-0.60.2.tar.gz) = 2429ceeddc5ad68e11aaca404d1eaa2e4997bef1 RMD160 (aspell-0.60.2.tar.gz) = ce5b5ef1f7ae4d7434200202bd23b8076a38ba90 Size (aspell-0.60.2.tar.gz) = 1577570 bytes SHA1 (patch-aa) = d6446a8ec87ffb6cb76d59927b407c97716bf771 +SHA1 (patch-ab) = 505bdb239beec03d21ee372e50a165d3067e3755 SHA1 (patch-ac) = 659fac33603b1b56c4c8149c7d8e94811e22f4b6 SHA1 (patch-ag) = 04b34f2b780a632a5045120ae408ceea591a66de diff --git a/textproc/aspell/patches/patch-ab b/textproc/aspell/patches/patch-ab new file mode 100644 index 00000000000..fc285cf229d --- /dev/null +++ b/textproc/aspell/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.5 2005/06/26 05:19:10 wiz Exp $ + +--- modules/speller/default/readonly_ws.cpp.orig 2004-11-10 07:18:45.000000000 +0100 ++++ modules/speller/default/readonly_ws.cpp +@@ -921,7 +921,7 @@ namespace { + prev->aff = aff; + aff += l1; + for (const char * p = cur->aff; *p; ++p) { +- if (memchr(prev->aff, l1, *p)) continue; ++ if (memchr(prev->aff, *p, l1)) continue; + *aff = *p; + ++aff; + } |