summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2009-01-28 10:48:01 +0000
committerPeter Volkov <pva@gentoo.org>2009-01-28 10:48:01 +0000
commit359050dbf86ad4b87b649591e5a874d6832f23d3 (patch)
treedd02023bea0e18311440edaf8c0ebf151bb4eec8 /app-text
parentx11-misc/xkeyboard-config: bump to 1.5 (diff)
downloadgentoo-2-359050dbf86ad4b87b649591e5a874d6832f23d3.tar.gz
gentoo-2-359050dbf86ad4b87b649591e5a874d6832f23d3.tar.bz2
gentoo-2-359050dbf86ad4b87b649591e5a874d6832f23d3.zip
Added ewarn about changes in spellchecking engine, bug #250115.
(Portage version: 2.2_rc23/cvs/Linux i686)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/enchant/ChangeLog5
-rw-r--r--app-text/enchant/enchant-1.4.2.ebuild14
2 files changed, 16 insertions, 3 deletions
diff --git a/app-text/enchant/ChangeLog b/app-text/enchant/ChangeLog
index 7c8335a03388..f13a2c2d45e2 100644
--- a/app-text/enchant/ChangeLog
+++ b/app-text/enchant/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-text/enchant
# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/ChangeLog,v 1.86 2009/01/24 14:13:42 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/ChangeLog,v 1.87 2009/01/28 10:48:01 pva Exp $
+
+ 28 Jan 2009; Peter Volkov <pva@gentoo.org> enchant-1.4.2.ebuild:
+ Added ewarn about changes in spellchecking engine, bug #250115.
24 Jan 2009; nixnut <nixnut@gentoo.org> enchant-1.4.2.ebuild:
ppc stable #255691
diff --git a/app-text/enchant/enchant-1.4.2.ebuild b/app-text/enchant/enchant-1.4.2.ebuild
index c211841a65eb..ab39f9e33a75 100644
--- a/app-text/enchant/enchant-1.4.2.ebuild
+++ b/app-text/enchant/enchant-1.4.2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/enchant-1.4.2.ebuild,v 1.6 2009/01/24 14:13:42 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/enchant-1.4.2.ebuild,v 1.7 2009/01/28 10:48:01 pva Exp $
EAPI="1"
inherit libtool confutils autotools
@@ -43,7 +43,7 @@ src_compile() {
$(use_enable hunspell myspell) \
$(use_enable zemberek) \
--disable-ispell \
- --with-myspell-dir=/usr/share/myspell/ || die "econf failed"
+ --with-myspell-dir=/usr/share/myspell/
emake || die "emake failed"
}
@@ -51,3 +51,13 @@ src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS BUGS ChangeLog HACKING MAINTAINERS NEWS README TODO
}
+
+pkg_postinst() {
+ ewarn "Starting with ${PN}-1.4.0 default spell checking engine has changed"
+ ewarn "from aspell to hunspell. In case you used aspell dictionaries to"
+ ewarn "check spelling you need either reemerge ${PN} with aspell USE flag"
+ ewarn "or you need to emerge myspell-<lang> dictionaries."
+ ewarn "aspell is faster but has less features then hunspell and most"
+ ewarn "distributions by default use hunspell only. Nevertheless in Gentoo"
+ ewarn "it's still your choice which library to use..."
+}