diff options
author | markd <markd@pkgsrc.org> | 2004-02-29 12:00:56 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2004-02-29 12:00:56 +0000 |
commit | 3d8cf0b27743a667037d7fa87912e2f5174d781b (patch) | |
tree | 82a86759f61b8c55752fa0892e8b8d46a3e4bd43 /x11/kdelibs3 | |
parent | d2605c1b9ab5f5f1a443c1283d1c1cf875a189d2 (diff) | |
download | pkgsrc-3d8cf0b27743a667037d7fa87912e2f5174d781b.tar.gz |
Fix another instance of finding the path for ispell/aspell.
Bump PKGREVISION.
Diffstat (limited to 'x11/kdelibs3')
-rw-r--r-- | x11/kdelibs3/Makefile | 3 | ||||
-rw-r--r-- | x11/kdelibs3/distinfo | 4 | ||||
-rw-r--r-- | x11/kdelibs3/patches/patch-cc | 32 |
3 files changed, 29 insertions, 10 deletions
diff --git a/x11/kdelibs3/Makefile b/x11/kdelibs3/Makefile index 06c41355c20..a046ad17637 100644 --- a/x11/kdelibs3/Makefile +++ b/x11/kdelibs3/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.51 2004/02/25 22:11:23 markd Exp $ +# $NetBSD: Makefile,v 1.52 2004/02/29 12:00:56 markd Exp $ DISTNAME= kdelibs-3.2.0 CATEGORIES= x11 COMMENT= Support libraries for the KDE integrated X11 desktop +PKGREVISION= 1 .include "../../meta-pkgs/kde3/Makefile.kde3" diff --git a/x11/kdelibs3/distinfo b/x11/kdelibs3/distinfo index 8aae1bc71d4..4cdd9baf5bf 100644 --- a/x11/kdelibs3/distinfo +++ b/x11/kdelibs3/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.31 2004/02/05 10:05:58 markd Exp $ +$NetBSD: distinfo,v 1.32 2004/02/29 12:00:56 markd Exp $ SHA1 (kdelibs-3.2.0.tar.bz2) = 64780c60e66b954ba9cddfd10f1c7c20772ce4cb Size (kdelibs-3.2.0.tar.bz2) = 12453641 bytes @@ -10,5 +10,5 @@ SHA1 (patch-bc) = 434a48d290aa9716b8c6e372419460ebd33cf8ea SHA1 (patch-bd) = f233a73d0a8148e1ae7f4e777c3f5d50b56d768f SHA1 (patch-bu) = 65aca46f30be04c0d8177498eac149437b21ba56 SHA1 (patch-bv) = 882355f9dd9cdbbbe14d54e5c59b630ef0347e1c -SHA1 (patch-cc) = 607452fb8c4e163ef634d1624fae89bde4563ed5 +SHA1 (patch-cc) = d52e3beff19ed287a4635c8da5ab7a69a8e3c0f3 SHA1 (patch-ce) = d3e380f42beae1006ad3aea593feb10039c41f1f diff --git a/x11/kdelibs3/patches/patch-cc b/x11/kdelibs3/patches/patch-cc index 152fc54a3a4..2812026e009 100644 --- a/x11/kdelibs3/patches/patch-cc +++ b/x11/kdelibs3/patches/patch-cc @@ -1,8 +1,8 @@ -$NetBSD: patch-cc,v 1.4 2004/02/04 13:58:40 markd Exp $ +$NetBSD: patch-cc,v 1.5 2004/02/29 12:00:57 markd Exp $ ---- kdeui/ksconfig.cpp.orig Wed Jan 15 12:18:30 2003 +--- kdeui/ksconfig.cpp.orig 2003-11-30 22:46:51.000000000 +1300 +++ kdeui/ksconfig.cpp -@@ -360,6 +360,8 @@ void KSpellConfig::getAvailDictsIspell ( +@@ -432,6 +432,8 @@ void KSpellConfig::getAvailDictsIspell ( // dictionary path QFileInfo dir ("/usr/lib/ispell"); if (!dir.exists() || !dir.isDir()) @@ -11,12 +11,30 @@ $NetBSD: patch-cc,v 1.4 2004/02/04 13:58:40 markd Exp $ dir.setFile ("/usr/local/lib/ispell"); if (!dir.exists() || !dir.isDir()) dir.setFile ("/usr/local/share/ispell"); -@@ -422,6 +424,8 @@ void KSpellConfig::getAvailDictsAspell ( - // dictionary path +@@ -495,6 +497,8 @@ void KSpellConfig::getAvailDictsAspell ( // FIXME: use "aspell dump config" to find out the dict-dir QFileInfo dir ("/usr/lib/aspell"); -+ if (!dir.exists() || !dir.isDir()) -+ dir.setFile ("@LOCALBASE@/lib"); if (!dir.exists() || !dir.isDir()) ++ dir.setFile ("@LOCALBASE@/lib"); ++ if (!dir.exists() || !dir.isDir()) dir.setFile ("/usr/local/lib/aspell"); if (!dir.exists() || !dir.isDir()) + dir.setFile ("/usr/share/aspell"); +@@ -559,6 +563,8 @@ KSpellConfig::fillDicts( QComboBox* box, + // dictionary path + QFileInfo dir ("/usr/lib/ispell"); + if (!dir.exists() || !dir.isDir()) ++ dir.setFile ("@LOCALBASE@/lib"); ++ if (!dir.exists() || !dir.isDir()) + dir.setFile ("/usr/local/lib/ispell"); + if (!dir.exists() || !dir.isDir()) + dir.setFile ("/usr/local/share/ispell"); +@@ -623,6 +629,8 @@ KSpellConfig::fillDicts( QComboBox* box, + // FIXME: use "aspell dump config" to find out the dict-dir + QFileInfo dir ("/usr/lib/aspell"); + if (!dir.exists() || !dir.isDir()) ++ dir.setFile ("@LOCALBASE@/lib"); ++ if (!dir.exists() || !dir.isDir()) + dir.setFile ("/usr/local/lib/aspell"); + if (!dir.exists() || !dir.isDir()) + dir.setFile ("/usr/share/aspell"); |