diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-10-14 19:24:14 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-10-14 19:24:14 +0000 |
commit | 7886dd36ce14479f234015ba88988e0c09ebf46f (patch) | |
tree | c573994b6fb9368179c8194057a4be2b7c04572a /net-libs/libnet/libnet-1.1.2.1-r1.ebuild | |
parent | Stable on ppc64; bug #144869 (diff) | |
download | gentoo-2-7886dd36ce14479f234015ba88988e0c09ebf46f.tar.gz gentoo-2-7886dd36ce14479f234015ba88988e0c09ebf46f.tar.bz2 gentoo-2-7886dd36ce14479f234015ba88988e0c09ebf46f.zip |
fixup autotools #151175 by Asmund Grammeltvedt.
(Portage version: 2.1.2_pre2-r9)
Diffstat (limited to 'net-libs/libnet/libnet-1.1.2.1-r1.ebuild')
-rw-r--r-- | net-libs/libnet/libnet-1.1.2.1-r1.ebuild | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/net-libs/libnet/libnet-1.1.2.1-r1.ebuild b/net-libs/libnet/libnet-1.1.2.1-r1.ebuild index 5933ba870cb4..ce37b041f7be 100644 --- a/net-libs/libnet/libnet-1.1.2.1-r1.ebuild +++ b/net-libs/libnet/libnet-1.1.2.1-r1.ebuild @@ -1,8 +1,10 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/libnet-1.1.2.1-r1.ebuild,v 1.4 2006/09/10 18:13:38 the_paya Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/libnet-1.1.2.1-r1.ebuild,v 1.5 2006/10/14 19:24:14 vapier Exp $ -inherit eutils +WANT_AUTOCONF="latest" +WANT_AUTOMAKE="latest" +inherit eutils autotools DESCRIPTION="library to provide an API for commonly used low-level network functions (mainly packet injection)" HOMEPAGE="http://www.packetfactory.net/libnet/" @@ -23,14 +25,11 @@ src_unpack() { cd "${S}" epatch "${FILESDIR}"/${P}-fix-chksum.patch epatch "${FILESDIR}"/${P}-autotools.patch - libtoolize --copy --force && \ - aclocal && \ - autoconf && \ - automake || die "autotools failed" + eautoreconf } src_install(){ - make DESTDIR="${D}" install || die "Failed to install" + emake DESTDIR="${D}" install || die "Failed to install" doman doc/man/man3/*.3 dodoc VERSION README doc/* |