diff options
author | 2014-07-10 19:13:35 +0000 | |
---|---|---|
committer | 2014-07-10 19:13:35 +0000 | |
commit | e4302f550e3f3dea7a5e41997a580ade3a071eab (patch) | |
tree | c6bd1b42e77095a0bb317a50292d7f2c186bfbf1 /net-analyzer/arpoison | |
parent | Remove die() message. Do not set unused IUSE. (diff) | |
download | gentoo-2-e4302f550e3f3dea7a5e41997a580ade3a071eab.tar.gz gentoo-2-e4302f550e3f3dea7a5e41997a580ade3a071eab.tar.bz2 gentoo-2-e4302f550e3f3dea7a5e41997a580ade3a071eab.zip |
Clean up unused vars. Remove die() message. Set SLOT dependency on net-libs/libnet.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer/arpoison')
-rw-r--r-- | net-analyzer/arpoison/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/arpoison/arpoison-0.6-r2.ebuild | 14 |
2 files changed, 12 insertions, 10 deletions
diff --git a/net-analyzer/arpoison/ChangeLog b/net-analyzer/arpoison/ChangeLog index efb78d83c396..625000b29d8b 100644 --- a/net-analyzer/arpoison/ChangeLog +++ b/net-analyzer/arpoison/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/arpoison -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arpoison/ChangeLog,v 1.17 2012/12/28 16:19:09 jer Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arpoison/ChangeLog,v 1.18 2014/07/10 19:13:35 jer Exp $ + + 10 Jul 2014; Jeroen Roovers <jer@gentoo.org> arpoison-0.6-r2.ebuild: + Clean up unused vars. Remove die() message. Set SLOT dependency on + net-libs/libnet. 28 Dec 2012; Jeroen Roovers <jer@gentoo.org> -arpoison-0.6.ebuild, -arpoison-0.6-r1.ebuild: diff --git a/net-analyzer/arpoison/arpoison-0.6-r2.ebuild b/net-analyzer/arpoison/arpoison-0.6-r2.ebuild index 24a3a631f951..d1b43796ccf0 100644 --- a/net-analyzer/arpoison/arpoison-0.6-r2.ebuild +++ b/net-analyzer/arpoison/arpoison-0.6-r2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arpoison/arpoison-0.6-r2.ebuild,v 1.5 2012/12/28 11:20:02 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arpoison/arpoison-0.6-r2.ebuild,v 1.6 2014/07/10 19:13:35 jer Exp $ -EAPI="5" +EAPI=5 inherit toolchain-funcs @@ -13,11 +13,9 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~arm ppc x86" -IUSE="" -RDEPEND=">=net-libs/libnet-1.1.0" -DEPEND="${RDEPEND} - >=sys-apps/sed-4" +RDEPEND="net-libs/libnet:1.1" +DEPEND="${RDEPEND}" S="${WORKDIR}/${PN}" @@ -27,7 +25,7 @@ src_prepare() { sed -i Makefile \ -e 's|gcc \(-Wall\)|$(CC) \1 $(CFLAGS) $(LDFLAGS)|' \ -e "s|libnet-config|${ROOT}usr/bin/libnet-config|g" \ - || die "sed on Makefile failed" + || die } src_compile() { |