summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2009-02-09 22:06:49 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2009-02-09 22:06:49 +0000
commitf61fdfcf11605eb281904e58fc53dcce0417a102 (patch)
treea80a4506c334f5a572b6cf0482e200b5699c0d6f /app-text/gnome-spell
parentno need for autotools (diff)
downloadgentoo-2-f61fdfcf11605eb281904e58fc53dcce0417a102.tar.gz
gentoo-2-f61fdfcf11605eb281904e58fc53dcce0417a102.tar.bz2
gentoo-2-f61fdfcf11605eb281904e58fc53dcce0417a102.zip
Bump to 1.0.8-r1. Do not use hardcoded locales table, bug #256564.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'app-text/gnome-spell')
-rw-r--r--app-text/gnome-spell/ChangeLog10
-rw-r--r--app-text/gnome-spell/gnome-spell-1.0.8-r1.ebuild (renamed from app-text/gnome-spell/gnome-spell-1.0.7-r1.ebuild)40
2 files changed, 29 insertions, 21 deletions
diff --git a/app-text/gnome-spell/ChangeLog b/app-text/gnome-spell/ChangeLog
index 501b614e50c8..d3b62e5ae4a7 100644
--- a/app-text/gnome-spell/ChangeLog
+++ b/app-text/gnome-spell/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-text/gnome-spell
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-spell/ChangeLog,v 1.91 2008/10/12 10:32:48 eva Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-spell/ChangeLog,v 1.92 2009/02/09 22:06:49 eva Exp $
+
+*gnome-spell-1.0.8-r1 (09 Feb 2009)
+
+ 09 Feb 2009; Gilles Dartiguelongue <eva@gentoo.org>
+ -gnome-spell-1.0.7-r1.ebuild, +gnome-spell-1.0.8-r1.ebuild:
+ Bump to 1.0.8-r1. Do not use hardcoded locales table, bug #256564.
12 Oct 2008; Gilles Dartiguelongue <eva@gentoo.org>
gnome-spell-1.0.8.ebuild:
diff --git a/app-text/gnome-spell/gnome-spell-1.0.7-r1.ebuild b/app-text/gnome-spell/gnome-spell-1.0.8-r1.ebuild
index 6ca69f645092..f9eac3fe4f62 100644
--- a/app-text/gnome-spell/gnome-spell-1.0.7-r1.ebuild
+++ b/app-text/gnome-spell/gnome-spell-1.0.8-r1.ebuild
@@ -1,19 +1,18 @@
-# Copyright 1999-2007 Gentoo Foundation
+# 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.7-r1.ebuild,v 1.15 2007/12/22 15:15:42 eva Exp $
-
-WANT_AUTOMAKE="latest"
-WANT_AUTOCONF="latest"
+# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-spell/gnome-spell-1.0.8-r1.ebuild,v 1.1 2009/02/09 22:06:49 eva Exp $
inherit eutils gnome2 autotools
DESCRIPTION="Gnome spellchecking component"
HOMEPAGE="http://www.gnome.org/"
+SRC_URI="${SRC_URI}
+ mirror://gentoo/${P}-isocodes.patch.bz2"
LICENSE="GPL-2"
SLOT="1"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
-IUSE="static"
+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
@@ -21,7 +20,8 @@ RDEPEND=">=gnome-base/libgnome-1.112.1
>=gnome-base/libbonobo-2.0
>=gnome-base/orbit-2
>=x11-libs/gtk+-2.4
- >=app-text/enchant-1.2.5"
+ >=app-text/enchant-1.2.5
+ app-text/iso-codes"
DEPEND="${RDEPEND}
dev-util/intltool
@@ -30,16 +30,10 @@ DEPEND="${RDEPEND}
DOCS="AUTHORS ChangeLog NEWS README"
-pkg_setup() {
-
- G2CONF="${G2CONF} $(use_enable static)"
-
-}
+G2CONF="${G2CONF} --disable-static"
src_unpack() {
-
- unpack ${A}
- cd "${S}"
+ gnome2_src_unpack
# note that the combo and enchant patch are intertwined
# the enchant patch changes libgnomeui dep to libgnome
@@ -47,10 +41,18 @@ src_unpack() {
# Marinus Schraal <foser@gentoo.org> - 02 Apr 2006
# Use enchant backend instead of aspell
- epatch "${FILESDIR}/${P}-enchant-r2.patch"
+ epatch "${FILESDIR}/${P}-enchant.patch"
+
# replace gtkentry with gtkcombo widget
- epatch "${FILESDIR}/${P}-combo.patch"
- epatch "${FILESDIR}/${P}-remove_gnome_h.patch"
+ 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.patch"
+
+ # Fix test error caused by previous patch.
+ echo "gnome-spell/spell-checker-language.c" >> po/POTFILES.in
+ intltoolize --force || die "intltoolize failed"
eautoreconf
}