diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-04 13:59:48 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-04 13:59:48 +0000 |
commit | 0d7f8b4d37a9b2ce8def7a98dfe9f981de59f311 (patch) | |
tree | add040b59461cf4e2618c45df7b8e9bdea3c36be /app-emulation/qenv/qenv-0.1.ebuild | |
parent | Fix broken autotools handling. (diff) | |
download | historical-0d7f8b4d37a9b2ce8def7a98dfe9f981de59f311.tar.gz historical-0d7f8b4d37a9b2ce8def7a98dfe9f981de59f311.tar.bz2 historical-0d7f8b4d37a9b2ce8def7a98dfe9f981de59f311.zip |
Fix broken autotools handling.
Package-Manager: portage-2.1.2_rc4-r5
Diffstat (limited to 'app-emulation/qenv/qenv-0.1.ebuild')
-rw-r--r-- | app-emulation/qenv/qenv-0.1.ebuild | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/app-emulation/qenv/qenv-0.1.ebuild b/app-emulation/qenv/qenv-0.1.ebuild index a589ac19e622..c11f8cd4249f 100644 --- a/app-emulation/qenv/qenv-0.1.ebuild +++ b/app-emulation/qenv/qenv-0.1.ebuild @@ -1,8 +1,11 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/qenv/qenv-0.1.ebuild,v 1.1 2005/12/12 20:00:22 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/qenv/qenv-0.1.ebuild,v 1.2 2007/01/04 13:59:48 flameeyes Exp $ -inherit libtool eutils +WANT_AUTOCONF="latest" +WANT_AUTOMAKE="latest" + +inherit autotools eutils DESCRIPTION="Pool of machines handler for QEMU" HOMEPAGE="http://virutass.net/software/qemu/" @@ -17,20 +20,14 @@ RDEPEND=">=app-emulation/qemu-0.7.2 net-misc/bridge-utils app-admin/sudo net-dns/dnsmasq" -DEPEND="${DEPEND} - sys-devel/autoconf - sys-devel/automake" src_unpack() { unpack ${A} EPATCH_OPTS="-p1 -d ${S}" \ - epatch ${FILESDIR}/${PN}-0.1-qemu-0.7.2.patch \ - || die "failed to update for qemu-0.7.2" - cd ${S} - for i in 'autoconf' 'automake' 'libtoolize --copy --force' ; do - einfo "Doing $i" - ${i} || die "Failed: $i" - done; + epatch ${FILESDIR}/${PN}-0.1-qemu-0.7.2.patch + + cd "${S}" + eautoreconf } src_install() { |