summaryrefslogtreecommitdiff
path: root/textproc/enchant
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2008-04-17 21:07:18 +0000
committerwiz <wiz@pkgsrc.org>2008-04-17 21:07:18 +0000
commit3d2ddcbfa6e59b4819ebe5b7093e7a1236b6a5fb (patch)
treef69abc6a0483aa674050373ddac62129fe62b168 /textproc/enchant
parent0d88a9376f1e27904be5c8b53422914aaf848865 (diff)
downloadpkgsrc-3d2ddcbfa6e59b4819ebe5b7093e7a1236b6a5fb.tar.gz
Fix hunspell backend. Idea from Matthias Drochner, patch from Adam Hoka.
Fix path to hunspell directories. Make hunspell the default backend. Bump PKGREVISION.
Diffstat (limited to 'textproc/enchant')
-rw-r--r--textproc/enchant/Makefile6
-rw-r--r--textproc/enchant/distinfo3
-rw-r--r--textproc/enchant/options.mk4
-rw-r--r--textproc/enchant/patches/patch-ab22
4 files changed, 30 insertions, 5 deletions
diff --git a/textproc/enchant/Makefile b/textproc/enchant/Makefile
index 5a9adf49a10..1773f7e0fc7 100644
--- a/textproc/enchant/Makefile
+++ b/textproc/enchant/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.24 2008/04/17 14:29:58 wiz Exp $
+# $NetBSD: Makefile,v 1.25 2008/04/17 21:07:18 wiz Exp $
#
DISTNAME= enchant-1.4.0
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= textproc
MASTER_SITES= http://www.abisource.com/downloads/enchant/1.4.0/
@@ -20,6 +20,8 @@ PKGCONFIG_OVERRIDE+= enchant.pc.in
GNU_CONFIGURE= yes
CFLAGS.SunOS+= -D__EXTENSIONS__
+CONFIGURE_ARGS+= --with-myspell-dir=${BUILDLINK_PREFIX.hunspell}/share/hunspell
+
pre-configure:
cd ${WRKSRC} && autoconf
diff --git a/textproc/enchant/distinfo b/textproc/enchant/distinfo
index e410db2d9b4..75d87a72cc6 100644
--- a/textproc/enchant/distinfo
+++ b/textproc/enchant/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.10 2008/04/17 14:29:58 wiz Exp $
+$NetBSD: distinfo,v 1.11 2008/04/17 21:07:18 wiz Exp $
SHA1 (enchant-1.4.0.tar.gz) = 1a3c140c96769d3268a7f1faf7d9400016985537
RMD160 (enchant-1.4.0.tar.gz) = 84a253e665f71ba5b3277ad95a403ea386d42ba4
Size (enchant-1.4.0.tar.gz) = 601930 bytes
SHA1 (patch-aa) = 56ca983fdd6de171aba956b46c673299dcb7549e
+SHA1 (patch-ab) = fd2319dd225493d643facb8fbe7f88dee810b1db
diff --git a/textproc/enchant/options.mk b/textproc/enchant/options.mk
index 332d5b422ac..65a0eb008cb 100644
--- a/textproc/enchant/options.mk
+++ b/textproc/enchant/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.2 2008/04/17 14:29:58 wiz Exp $
+# $NetBSD: options.mk,v 1.3 2008/04/17 21:07:18 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.enchant
PKG_SUPPORTED_OPTIONS= aspell enchant-zemberek hunspell ispell
@@ -6,7 +6,7 @@ PKG_SUPPORTED_OPTIONS= aspell enchant-zemberek hunspell ispell
# hspell - Hebrew spelling
# uspell - Yiddish spelling
# voikko - Finnish spelling
-PKG_SUGGESTED_OPTIONS= aspell ispell
+PKG_SUGGESTED_OPTIONS= hunspell ispell
.include "../../mk/bsd.options.mk"
diff --git a/textproc/enchant/patches/patch-ab b/textproc/enchant/patches/patch-ab
new file mode 100644
index 00000000000..d6f360e2ed0
--- /dev/null
+++ b/textproc/enchant/patches/patch-ab
@@ -0,0 +1,22 @@
+$NetBSD: patch-ab,v 1.3 2008/04/17 21:07:18 wiz Exp $
+
+--- src/myspell/myspell_checker.cpp.orig 2008-03-21 02:45:24.000000000 +0100
++++ src/myspell/myspell_checker.cpp
+@@ -39,7 +39,7 @@
+ #include "enchant-provider.h"
+
+ /* built against hunspell 1.1.5 on 2007-03-19 */
+-#include "hunspell.hxx"
++#include <hunspell/hunspell.hxx>
+
+ ENCHANT_PLUGIN_DECLARE("Myspell")
+
+@@ -353,7 +353,7 @@ MySpellChecker::requestDictionary(const
+ strcpy(aff+len_dic-3, "aff");
+ if (g_file_test(aff, G_FILE_TEST_EXISTS))
+ {
+- myspell = new Hunspell(aff, dic);
++ myspell = new Hunspell(aff, dic, NULL);
+ }
+ g_free(dic);
+ g_free(aff);