diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-03-10 20:06:01 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-03-10 20:06:01 +0000 |
commit | 2086c04a45017848435206dbea91695b2e3d8015 (patch) | |
tree | 8ffc15e6c22781576d15053f68abf9ae055f6391 /net-analyzer/netselect/netselect-0.3-r1.ebuild | |
parent | Bump to 0.8.8, bug #430478. Thanks to Enrico Tagliavini. (diff) | |
download | historical-2086c04a45017848435206dbea91695b2e3d8015.tar.gz historical-2086c04a45017848435206dbea91695b2e3d8015.tar.bz2 historical-2086c04a45017848435206dbea91695b2e3d8015.zip |
Add prefix support by Christoph Junghans (bug #461296).
Package-Manager: portage-2.2.0_alpha166/cvs/Linux x86_64
Manifest-Sign-Key: 0xA792A613
Diffstat (limited to 'net-analyzer/netselect/netselect-0.3-r1.ebuild')
-rw-r--r-- | net-analyzer/netselect/netselect-0.3-r1.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/net-analyzer/netselect/netselect-0.3-r1.ebuild b/net-analyzer/netselect/netselect-0.3-r1.ebuild deleted file mode 100644 index e8524ad46fd6..000000000000 --- a/net-analyzer/netselect/netselect-0.3-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netselect/netselect-0.3-r1.ebuild,v 1.21 2011/02/06 07:50:14 leio Exp $ - -inherit eutils flag-o-matic - -DESCRIPTION="Ultrafast implementation of ping." -HOMEPAGE="http://alumnit.ca/~apenwarr/netselect/index.html" -SRC_URI="http://alumnit.ca/~apenwarr/netselect/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd" -IUSE="" - -S="${WORKDIR}/${PN}" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}/${P}-bsd.patch" -} - -src_compile() { - sed -i \ - -e "s:PREFIX =.*:PREFIX = ${D}usr:" \ - -e "s:CFLAGS =.*:CFLAGS = -Wall -I. -g ${CFLAGS}:" \ - -e "s:LDFLAGS =.*:LDFLAGS = -g ${LDFLAGS}:" \ - -e '23,27d' \ - -e '34d' \ - Makefile \ - || die "sed Makefile failed" - - emake || die "emake failed" -} - -src_install () { - dobin netselect || die "dobin failed" - fowners root:wheel /usr/bin/netselect - fperms 4711 /usr/bin/netselect - dodoc ChangeLog HISTORY README* -} |