diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-04 14:27:55 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-04 14:27:55 +0000 |
commit | 36f455f1e78685e47b2162ba711e8f7d306e7ed6 (patch) | |
tree | aa496bab7e04fe87c00d892c4e70675640300a4a /app-text/gnome-spell | |
parent | Fix broken autotools handling. (diff) | |
download | gentoo-2-36f455f1e78685e47b2162ba711e8f7d306e7ed6.tar.gz gentoo-2-36f455f1e78685e47b2162ba711e8f7d306e7ed6.tar.bz2 gentoo-2-36f455f1e78685e47b2162ba711e8f7d306e7ed6.zip |
Fix broken autotools handling.
(Portage version: 2.1.2_rc4-r5)
Diffstat (limited to 'app-text/gnome-spell')
-rw-r--r-- | app-text/gnome-spell/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/gnome-spell/gnome-spell-1.0.7-r1.ebuild | 22 |
2 files changed, 14 insertions, 16 deletions
diff --git a/app-text/gnome-spell/ChangeLog b/app-text/gnome-spell/ChangeLog index 67692a7be3fe..975708947a8a 100644 --- a/app-text/gnome-spell/ChangeLog +++ b/app-text/gnome-spell/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/gnome-spell -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-spell/ChangeLog,v 1.78 2006/09/08 19:22:40 tcort Exp $ +# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-spell/ChangeLog,v 1.79 2007/01/04 14:27:55 flameeyes Exp $ + + 04 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> + gnome-spell-1.0.7-r1.ebuild: + Fix broken autotools handling. 08 Sep 2006; Thomas Cort <tcort@gentoo.org> gnome-spell-1.0.7-r1.ebuild: Stable on alpha wrt Bug #133939. diff --git a/app-text/gnome-spell/gnome-spell-1.0.7-r1.ebuild b/app-text/gnome-spell/gnome-spell-1.0.7-r1.ebuild index 8c15a57f6df9..7c7c82ddc5f7 100644 --- a/app-text/gnome-spell/gnome-spell-1.0.7-r1.ebuild +++ b/app-text/gnome-spell/gnome-spell-1.0.7-r1.ebuild @@ -1,8 +1,11 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 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.11 2006/11/12 04:17:31 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-spell/gnome-spell-1.0.7-r1.ebuild,v 1.12 2007/01/04 14:27:55 flameeyes Exp $ -inherit libtool eutils gnome2 +WANT_AUTOMAKE="latest" +WANT_AUTOCONF="latest" + +inherit eutils gnome2 autotools DESCRIPTION="Gnome spellchecking component" HOMEPAGE="http://www.gnome.org/" @@ -23,8 +26,7 @@ RDEPEND=">=gnome-base/libgnome-1.112.1 DEPEND="${RDEPEND} dev-util/intltool dev-util/pkgconfig - sys-devel/gettext - >=sys-devel/autoconf-2.59" + sys-devel/gettext" DOCS="AUTHORS ChangeLog NEWS README" @@ -51,13 +53,5 @@ src_unpack() { epatch ${FILESDIR}/${P}-remove_gnome_h.patch - einfo "Runnig aclocal" - aclocal || die "aclocal failed" - einfo "Running autoconf" - WANT_AUTOCONF=2.5 autoconf || die "autoconf failed" - einfo "Running automake" - WANT_AUTOMAKE=1.9 automake || die "automake failed" - einfo "Running libtoolize" - libtoolize --copy --force - + eautoreconf } |