summaryrefslogtreecommitdiff
path: root/textproc/aspell
diff options
context:
space:
mode:
authorwiz <wiz>2008-09-22 08:53:13 +0000
committerwiz <wiz>2008-09-22 08:53:13 +0000
commit125c6232d71bd4cabe3a4cfe8ec0ba96c7cc4071 (patch)
tree0620dd19efdd5df0b509b2dc4967f479e5c658d0 /textproc/aspell
parent7c89e3b99b04333f3834e18a41a95911bcb28b9a (diff)
downloadpkgsrc-125c6232d71bd4cabe3a4cfe8ec0ba96c7cc4071.tar.gz
Add patch fixing problem checking html files, reported by Chris Ross
and Uwe Klaus on pkgsrc-users; using upstream patch. Bump PKGREVISION.
Diffstat (limited to 'textproc/aspell')
-rw-r--r--textproc/aspell/Makefile3
-rw-r--r--textproc/aspell/distinfo3
-rw-r--r--textproc/aspell/patches/patch-aa15
3 files changed, 19 insertions, 2 deletions
diff --git a/textproc/aspell/Makefile b/textproc/aspell/Makefile
index cc0d46d57a0..754750d9f5c 100644
--- a/textproc/aspell/Makefile
+++ b/textproc/aspell/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.56 2008/04/29 11:40:50 wiz Exp $
+# $NetBSD: Makefile,v 1.57 2008/09/22 08:53:13 wiz Exp $
#
DISTNAME= aspell-0.60.6
+PKGREVISION= 1
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_GNU:=aspell/}
diff --git a/textproc/aspell/distinfo b/textproc/aspell/distinfo
index 3c84c510fb4..941e3e1ae3a 100644
--- a/textproc/aspell/distinfo
+++ b/textproc/aspell/distinfo
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.24 2008/04/29 11:40:50 wiz Exp $
+$NetBSD: distinfo,v 1.25 2008/09/22 08:53:14 wiz Exp $
SHA1 (aspell-0.60.6.tar.gz) = 335bcb560e00f59d89ec9e4c4114c325fb0e65f4
RMD160 (aspell-0.60.6.tar.gz) = 315638cc7cc4ce9d3dc09c7e15faf637855d504e
Size (aspell-0.60.6.tar.gz) = 1777930 bytes
+SHA1 (patch-aa) = 379c978c9370d2a27ad683af2fba39805f53cbd2
SHA1 (patch-ab) = 615a676128dab7d79e697f56330c8aaa6c901d3f
SHA1 (patch-ac) = 8adbd2b330830ba0fb3fc063bee0fac69b0a1f64
SHA1 (patch-ad) = 5e525ed1e91b3271567f4255729e94159be86f58
diff --git a/textproc/aspell/patches/patch-aa b/textproc/aspell/patches/patch-aa
new file mode 100644
index 00000000000..99c29a4a0a2
--- /dev/null
+++ b/textproc/aspell/patches/patch-aa
@@ -0,0 +1,15 @@
+$NetBSD: patch-aa,v 1.11 2008/09/22 08:53:14 wiz Exp $
+
+http://sourceforge.net/tracker/index.php?func=detail&aid=2016300&group_id=245&atid=100245
+
+--- gen/mk-static-filter.pl.orig 2007-12-03 06:43:09.000000000 +0000
++++ gen/mk-static-filter.pl
+@@ -159,7 +159,7 @@ while ($filter = shift @filterhashes) {
+ printf STATICFILTERS "\n const KeyInfo * ".${$filter}{"NAME"}."_options_begin = ".
+ ${$filter}{"NAME"}."_options;\n";
+ # If structure is empty, set options_end to same as options_begin.
+- if (%{$filter}) {
++ if ($firstopt) {
+ printf STATICFILTERS "\n const KeyInfo * ".${$filter}{"NAME"}."_options_end = ".
+ ${$filter}{"NAME"}."_options;\n";
+ } else {