diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-01-26 01:02:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-01-26 01:02:45 +0000 |
commit | 0f029dfe12f58f7d2395189adfd7ac230f5b8e29 (patch) | |
tree | 0965b8f95e78631a9a48d61017634c9702607d0b /net-p2p/amule | |
parent | dont use old WANT_AUTOCONF #35111 (diff) | |
download | historical-0f029dfe12f58f7d2395189adfd7ac230f5b8e29.tar.gz historical-0f029dfe12f58f7d2395189adfd7ac230f5b8e29.tar.bz2 historical-0f029dfe12f58f7d2395189adfd7ac230f5b8e29.zip |
dont use old WANT_AUTOCONF #35111
Diffstat (limited to 'net-p2p/amule')
-rw-r--r-- | net-p2p/amule/amule-1.1.2.ebuild | 4 | ||||
-rw-r--r-- | net-p2p/amule/amule-1.2.4.ebuild | 9 |
2 files changed, 6 insertions, 7 deletions
diff --git a/net-p2p/amule/amule-1.1.2.ebuild b/net-p2p/amule/amule-1.1.2.ebuild index c8b21e0349ff..e62543863804 100644 --- a/net-p2p/amule/amule-1.1.2.ebuild +++ b/net-p2p/amule/amule-1.1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/amule-1.1.2.ebuild,v 1.3 2004/01/06 04:48:26 avenj Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/amule-1.1.2.ebuild,v 1.4 2004/01/26 01:02:08 vapier Exp $ MY_P=${P/m/M} S=${WORKDIR}/${MY_P} @@ -31,7 +31,7 @@ pkg_setup() { } src_compile () { - export WANT_AUTOCONF_2_5='1' + export WANT_AUTOCONF='2.5' export WANT_AUTOMAKE='1.7' ./autogen.sh econf || die diff --git a/net-p2p/amule/amule-1.2.4.ebuild b/net-p2p/amule/amule-1.2.4.ebuild index 7d703b65dec0..7f77ff69c087 100644 --- a/net-p2p/amule/amule-1.2.4.ebuild +++ b/net-p2p/amule/amule-1.2.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/amule-1.2.4.ebuild,v 1.1 2004/01/14 22:04:35 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/amule-1.2.4.ebuild,v 1.2 2004/01/26 01:02:45 vapier Exp $ MY_P=${P/m/M} S=${WORKDIR}/${MY_P} @@ -13,18 +13,17 @@ RESTRICT="nomirror" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~amd64" - IUSE="nls" DEPEND=">=x11-libs/wxGTK-2.4.1 >=net-ftp/curl-7.9.7 >=sys-libs/zlib-1.2.1" -src_compile () { +src_compile() { econf `use_enable nls` || die - MAKEOPTS="${MAKEOPTS} -j1" emake || die + emake -j1 || die } -src_install () { +src_install() { einstall || die } |