diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-07 21:49:19 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-07 21:49:19 +0000 |
commit | aa674790c0eebb49fb436db778158f9d442f4b81 (patch) | |
tree | e634afb14f9e503820d1550a978330190427fae4 /app-text/enchant | |
parent | add inherit eutils (diff) | |
download | gentoo-2-aa674790c0eebb49fb436db778158f9d442f4b81.tar.gz gentoo-2-aa674790c0eebb49fb436db778158f9d442f4b81.tar.bz2 gentoo-2-aa674790c0eebb49fb436db778158f9d442f4b81.zip |
add inherit eutils
Diffstat (limited to 'app-text/enchant')
-rw-r--r-- | app-text/enchant/enchant-1.0.0.ebuild | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/app-text/enchant/enchant-1.0.0.ebuild b/app-text/enchant/enchant-1.0.0.ebuild index 7e606d2404bb..7f2eb81c18d4 100644 --- a/app-text/enchant/enchant-1.0.0.ebuild +++ b/app-text/enchant/enchant-1.0.0.ebuild @@ -1,26 +1,22 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/enchant-1.0.0.ebuild,v 1.5 2003/11/09 18:03:04 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/enchant-1.0.0.ebuild,v 1.6 2004/04/07 21:48:46 vapier Exp $ -inherit gnome2 +inherit gnome2 eutils DESCRIPTION="Spellchecker wrapping library" HOMEPAGE="http://www.abisource.com/enchant/" - SRC_URI="mirror://sourceforge/abiword/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" - KEYWORDS="x86 ~ppc sparc ~alpha" - IUSE="" # The || is meant to make sure there is a a default spell lib to work with # 25 Aug 2003; foser <foser@gentoo.org> RDEPEND=">=dev-libs/glib-2 || ( app-text/aspell app-text/ispell )" - DEPEND="${RDEPEND} dev-util/pkgconfig" @@ -29,7 +25,5 @@ DOCS="AUTHORS BUGS COPYING.LIB ChangeLog HACKING MAINTAINERS NEWS README TODO" src_unpack() { unpack ${A} cd ${S} - if use alpha; then - epatch ${FILESDIR}/enchant-1.0.0-alpha.patch || die "epatch failed" - fi + use alpha && epatch ${FILESDIR}/enchant-1.0.0-alpha.patch } |