diff options
author | Peter Volkov <pva@gentoo.org> | 2009-02-10 11:59:53 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2009-02-10 11:59:53 +0000 |
commit | 665de5b94680c760cb48216c1848148bf735546d (patch) | |
tree | dc014803b8b2fa395a568a247d6e12b891909204 /app-text/gnome-spell/gnome-spell-1.0.8-r2.ebuild | |
parent | Fix --as-needed bug #247446 (diff) | |
download | gentoo-2-665de5b94680c760cb48216c1848148bf735546d.tar.gz gentoo-2-665de5b94680c760cb48216c1848148bf735546d.tar.bz2 gentoo-2-665de5b94680c760cb48216c1848148bf735546d.zip |
Fixed 'Unknown' language for dictionaries with name of form ru_RU_ye.
(Portage version: 2.2_rc23/cvs/Linux i686)
Diffstat (limited to 'app-text/gnome-spell/gnome-spell-1.0.8-r2.ebuild')
-rw-r--r-- | app-text/gnome-spell/gnome-spell-1.0.8-r2.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/app-text/gnome-spell/gnome-spell-1.0.8-r2.ebuild b/app-text/gnome-spell/gnome-spell-1.0.8-r2.ebuild new file mode 100644 index 000000000000..8d6d4dbf904e --- /dev/null +++ b/app-text/gnome-spell/gnome-spell-1.0.8-r2.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-spell/gnome-spell-1.0.8-r2.ebuild,v 1.1 2009/02/10 11:59:53 pva Exp $ + +inherit eutils gnome2 autotools + +DESCRIPTION="Gnome spellchecking component" +HOMEPAGE="http://www.gnome.org/" +SRC_URI="${SRC_URI} + mirror://gentoo/${P}-isocodes-r1.patch.bz2" + +LICENSE="GPL-2" +SLOT="1" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND=">=gnome-base/libgnome-1.112.1 + >=gnome-base/libbonoboui-1.112.1 + >=gnome-base/libglade-1.99.9 + >=gnome-base/libbonobo-2.0 + >=gnome-base/orbit-2 + >=x11-libs/gtk+-2.4 + >=app-text/enchant-1.2.5 + app-text/iso-codes" + +DEPEND="${RDEPEND} + dev-util/intltool + dev-util/pkgconfig + sys-devel/gettext" + +DOCS="AUTHORS ChangeLog NEWS README" + +G2CONF="${G2CONF} --disable-static" + +src_unpack() { + gnome2_src_unpack + + # note that the combo and enchant patch are intertwined + # the enchant patch changes libgnomeui dep to libgnome + # made possible by the combo patch + # Marinus Schraal <foser@gentoo.org> - 02 Apr 2006 + + # Use enchant backend instead of aspell + epatch "${FILESDIR}/${P}-enchant.patch" + + # replace gtkentry with gtkcombo widget + epatch "${FILESDIR}/${PN}-1.0.7-combo.patch" + epatch "${FILESDIR}/${PN}-1.0.7-remove_gnome_h.patch" + + # Use iso-codes instead of hardcoded locales list, bug #256564 + epatch "${WORKDIR}/${P}-isocodes-r1.patch" + + # Fix test error caused by previous patch. + echo "gnome-spell/spell-checker-language.c" >> po/POTFILES.in + + intltoolize --force || die "intltoolize failed" + eautoreconf +} |