summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2014-01-31 19:22:19 +0000
committerJeroen Roovers <jer@gentoo.org>2014-01-31 19:22:19 +0000
commit28e7a732c71dcd0b19c67f4ee499ce63460085bf (patch)
treeac9a28acd71d0ba858cc0c3a7a5c846d9ae2fc1e /net-analyzer
parentStable for HPPA (bug #499844). (diff)
downloadgentoo-2-28e7a732c71dcd0b19c67f4ee499ce63460085bf.tar.gz
gentoo-2-28e7a732c71dcd0b19c67f4ee499ce63460085bf.tar.bz2
gentoo-2-28e7a732c71dcd0b19c67f4ee499ce63460085bf.zip
Old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/netselect/ChangeLog7
-rw-r--r--net-analyzer/netselect/netselect-0.3-r2.ebuild43
2 files changed, 5 insertions, 45 deletions
diff --git a/net-analyzer/netselect/ChangeLog b/net-analyzer/netselect/ChangeLog
index ef33a2558c69..13a04b3da73b 100644
--- a/net-analyzer/netselect/ChangeLog
+++ b/net-analyzer/netselect/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/netselect
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netselect/ChangeLog,v 1.54 2013/07/02 07:42:24 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netselect/ChangeLog,v 1.55 2014/01/31 19:22:19 jer Exp $
+
+ 31 Jan 2014; Jeroen Roovers <jer@gentoo.org> -netselect-0.3-r2.ebuild:
+ Old.
02 Jul 2013; Agostino Sarubbo <ago@gentoo.org> netselect-0.3-r3.ebuild:
Stable for sh, wrt bug #470534
diff --git a/net-analyzer/netselect/netselect-0.3-r2.ebuild b/net-analyzer/netselect/netselect-0.3-r2.ebuild
deleted file mode 100644
index e6c41e9e6f6d..000000000000
--- a/net-analyzer/netselect/netselect-0.3-r2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netselect/netselect-0.3-r2.ebuild,v 1.11 2012/10/14 21:53:59 aballier Exp $
-
-inherit eutils flag-o-matic toolchain-funcs
-
-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 ~amd64-fbsd ~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 CC="$(tc-getCC)" || 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*
-}