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
commit7b49dcd225735660218aebe10f974a4939ab83af (patch)
treef14dfcd14b6c44ffcb0a00b7d4b717c0c6b6c109 /app-dicts/eblook
parentuse eautoreconf instead of direct autotools (diff)
downloadgentoo-2-7b49dcd225735660218aebe10f974a4939ab83af.tar.gz
gentoo-2-7b49dcd225735660218aebe10f974a4939ab83af.tar.bz2
gentoo-2-7b49dcd225735660218aebe10f974a4939ab83af.zip
autoreconf -> eautoreconf. bug #226531
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-dicts/eblook')
-rw-r--r--app-dicts/eblook/ChangeLog7
-rw-r--r--app-dicts/eblook/eblook-1.5.1.ebuild15
2 files changed, 12 insertions, 10 deletions
diff --git a/app-dicts/eblook/ChangeLog b/app-dicts/eblook/ChangeLog
index 5951f8440010..308e2ad0cdc4 100644
--- a/app-dicts/eblook/ChangeLog
+++ b/app-dicts/eblook/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-dicts/eblook
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/eblook/ChangeLog,v 1.12 2007/12/25 16:37:38 phreak Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/eblook/ChangeLog,v 1.13 2008/06/18 02:38:29 darkside Exp $
+
+ 18 Jun 2008; Jeremy Olexa <darkside@gentoo.org> eblook-1.5.1.ebuild:
+ autoreconf -> eautoreconf. bug #226531
25 Dec 2007; Christian Heim <phreak@gentoo.org> metadata.xml:
Removing usata from metadata.xml as per #22931. Assigning to maintainer-needed.
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
}