diff options
author | Jeroen Roovers <jer@gentoo.org> | 2010-09-18 23:54:35 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2010-09-18 23:54:35 +0000 |
commit | ede86a4d5bd0424648e406695caef7299e9f425d (patch) | |
tree | 20370a0c9434f67237a7c577a72bc633673f29b0 /net-analyzer | |
parent | Use separate patches after all to restore the stable version to its former gl... (diff) | |
download | gentoo-2-ede86a4d5bd0424648e406695caef7299e9f425d.tar.gz gentoo-2-ede86a4d5bd0424648e406695caef7299e9f425d.tar.bz2 gentoo-2-ede86a4d5bd0424648e406695caef7299e9f425d.zip |
Respect LDFLAGS (bug #337896). Do not hardcode CC, CFLAGS.
(Portage version: 2.2_rc83/cvs/Linux i686)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/arpoison/ChangeLog | 9 | ||||
-rw-r--r-- | net-analyzer/arpoison/arpoison-0.6-r1.ebuild | 38 |
2 files changed, 45 insertions, 2 deletions
diff --git a/net-analyzer/arpoison/ChangeLog b/net-analyzer/arpoison/ChangeLog index 44a38283ea5b..e23ce194ff8a 100644 --- a/net-analyzer/arpoison/ChangeLog +++ b/net-analyzer/arpoison/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/arpoison -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arpoison/ChangeLog,v 1.8 2008/12/05 00:16:47 darkside Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arpoison/ChangeLog,v 1.9 2010/09/18 23:54:35 jer Exp $ + +*arpoison-0.6-r1 (18 Sep 2010) + + 18 Sep 2010; Jeroen Roovers <jer@gentoo.org> +arpoison-0.6-r1.ebuild: + Respect LDFLAGS (bug #337896). Do not hardcode CC, CFLAGS. 05 Dec 2008; Jeremy Olexa <darkside@gentoo.org> arpoison-0.6.ebuild: typo, pointed out by nightmorph diff --git a/net-analyzer/arpoison/arpoison-0.6-r1.ebuild b/net-analyzer/arpoison/arpoison-0.6-r1.ebuild new file mode 100644 index 000000000000..c1c8fab80f75 --- /dev/null +++ b/net-analyzer/arpoison/arpoison-0.6-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arpoison/arpoison-0.6-r1.ebuild,v 1.1 2010/09/18 23:54:35 jer Exp $ + +EAPI="2" + +inherit toolchain-funcs + +DESCRIPTION="A utility to poison ARP caches" +HOMEPAGE="http://arpoison.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=">=net-libs/libnet-1.1.0" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" + +S="${WORKDIR}/${PN}" + +src_prepare() { + sed -i Makefile \ + -e 's|gcc \(-Wall\)|$(CC) \1 $(CFLAGS) $(LDFLAGS)|' \ + || die "sed Makefile" +} + +src_compile() { + emake CC=$(tc-getCC) || die +} + +src_install() { + dosbin arpoison + doman arpoison.8 + dodoc README TODO +} |