summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2008-06-18 02:38:29 +0000
committerJeremy Olexa <darkside@gentoo.org>2008-06-18 02:38:29 +0000
commitd785108d8c4b8560612fcc4ae3de8a41bb99702e (patch)
treecc2ec4642ca111fc33e326e87af1842f2798dc23 /app-dicts/eblook/eblook-1.5.1.ebuild
parentuse eautoreconf instead of direct autotools (diff)
downloadhistorical-d785108d8c4b8560612fcc4ae3de8a41bb99702e.tar.gz
historical-d785108d8c4b8560612fcc4ae3de8a41bb99702e.tar.bz2
historical-d785108d8c4b8560612fcc4ae3de8a41bb99702e.zip
autoreconf -> eautoreconf. bug #226531
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'app-dicts/eblook/eblook-1.5.1.ebuild')
-rw-r--r--app-dicts/eblook/eblook-1.5.1.ebuild15
1 files changed, 7 insertions, 8 deletions
diff --git a/app-dicts/eblook/eblook-1.5.1.ebuild b/app-dicts/eblook/eblook-1.5.1.ebuild
index e192f127927c..0438b75755b6 100644
--- a/app-dicts/eblook/eblook-1.5.1.ebuild
+++ b/app-dicts/eblook/eblook-1.5.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/eblook/eblook-1.5.1.ebuild,v 1.10 2005/01/01 12:51:03 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/eblook/eblook-1.5.1.ebuild,v 1.11 2008/06/18 02:38:29 darkside Exp $
-inherit eutils
+inherit eutils autotools
IUSE=""
@@ -21,18 +21,17 @@ DEPEND="${RDEPEND}
src_unpack() {
unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${P}-eb4-gentoo.diff
+ cd "${S}"
+ epatch "${FILESDIR}/${P}-eb4-gentoo.diff"
+ eautoreconf || die "eautoreconf failed"
}
src_compile() {
- autoreconf || die
-
econf --with-eb-conf=/etc/eb.conf || die
emake || die
}
src_install() {
- make DESTDIR=${D} install || die
+ make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog INSTALL NEWS README VERSION
}