diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-07-13 20:32:24 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-07-13 20:32:24 +0000 |
commit | 522ad367f4eab5ebed2defeab664d17f1c89dc42 (patch) | |
tree | e1d11922157985f1336628c3695fe47743a17868 /net-analyzer/arp-sk | |
parent | Drop stable keywords. There are a few unresolved bugs (443924, 461484, 463328... (diff) | |
download | gentoo-2-522ad367f4eab5ebed2defeab664d17f1c89dc42.tar.gz gentoo-2-522ad367f4eab5ebed2defeab664d17f1c89dc42.tar.bz2 gentoo-2-522ad367f4eab5ebed2defeab664d17f1c89dc42.zip |
Fix building with automake-1.13 (bug #476716 by Daniel Kuehn).
(Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer/arp-sk')
-rw-r--r-- | net-analyzer/arp-sk/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/arp-sk/arp-sk-0.0.16-r1.ebuild | 24 | ||||
-rw-r--r-- | net-analyzer/arp-sk/arp-sk-0.0.16-r2.ebuild | 3 |
3 files changed, 7 insertions, 26 deletions
diff --git a/net-analyzer/arp-sk/ChangeLog b/net-analyzer/arp-sk/ChangeLog index 2c8692d19ce9..edea4276bf08 100644 --- a/net-analyzer/arp-sk/ChangeLog +++ b/net-analyzer/arp-sk/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/arp-sk # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arp-sk/ChangeLog,v 1.18 2013/07/04 12:16:30 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arp-sk/ChangeLog,v 1.19 2013/07/13 20:32:24 jer Exp $ + + 13 Jul 2013; Jeroen Roovers <jer@gentoo.org> -arp-sk-0.0.16-r1.ebuild, + arp-sk-0.0.16-r2.ebuild: + Fix building with automake-1.13 (bug #476716 by Daniel Kuehn). 04 Jul 2013; Agostino Sarubbo <ago@gentoo.org> arp-sk-0.0.16-r2.ebuild: Stable for x86, wrt bug #470530 diff --git a/net-analyzer/arp-sk/arp-sk-0.0.16-r1.ebuild b/net-analyzer/arp-sk/arp-sk-0.0.16-r1.ebuild deleted file mode 100644 index 08ef2013fa6b..000000000000 --- a/net-analyzer/arp-sk/arp-sk-0.0.16-r1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arp-sk/arp-sk-0.0.16-r1.ebuild,v 1.2 2008/11/18 04:29:19 darkside Exp $ - -inherit multilib - -DESCRIPTION="A swiss knife tool for ARP" -HOMEPAGE="http://sid.rstack.org/arp-sk/" -SRC_URI="http://sid.rstack.org/arp-sk/files/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" -DEPEND=">=net-libs/libnet-1.1" - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - - # We don't need libcompat as it has a potential to clash with other packages. - rm -fr "${D}"/usr/$(get_libdir) - - dodoc ARP AUTHORS CONTRIB ChangeLog README TODO -} diff --git a/net-analyzer/arp-sk/arp-sk-0.0.16-r2.ebuild b/net-analyzer/arp-sk/arp-sk-0.0.16-r2.ebuild index af7d2ef3792e..5ae47ba23fff 100644 --- a/net-analyzer/arp-sk/arp-sk-0.0.16-r2.ebuild +++ b/net-analyzer/arp-sk/arp-sk-0.0.16-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arp-sk/arp-sk-0.0.16-r2.ebuild,v 1.6 2013/07/04 12:16:30 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arp-sk/arp-sk-0.0.16-r2.ebuild,v 1.7 2013/07/13 20:32:24 jer Exp $ EAPI=5 inherit autotools eutils multilib @@ -20,6 +20,7 @@ DOCS=( ARP AUTHORS CONTRIB ChangeLog README TODO ) src_prepare() { epatch "${FILESDIR}"/${P}-libnet1_2.patch + sed -i configure.in -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die rm missing || die "removing of 'missing' script failed" epatch_user |