summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2014-10-29 09:40:30 +0000
committerJeroen Roovers <jer@gentoo.org>2014-10-29 09:40:30 +0000
commit716f6921526809c9e60ed6b8bc14a458ec9bfc1f (patch)
tree85a27ecc27c8d2ea40f52586a63d4fd3f314ac92 /net-analyzer/netperf
parentStable for sparc, wrt bug #516658 (diff)
downloadgentoo-2-716f6921526809c9e60ed6b8bc14a458ec9bfc1f.tar.gz
gentoo-2-716f6921526809c9e60ed6b8bc14a458ec9bfc1f.tar.bz2
gentoo-2-716f6921526809c9e60ed6b8bc14a458ec9bfc1f.zip
Old.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer/netperf')
-rw-r--r--net-analyzer/netperf/ChangeLog5
-rw-r--r--net-analyzer/netperf/netperf-2.5.0-r1.ebuild56
2 files changed, 4 insertions, 57 deletions
diff --git a/net-analyzer/netperf/ChangeLog b/net-analyzer/netperf/ChangeLog
index ca24124254e7..971e2e434a43 100644
--- a/net-analyzer/netperf/ChangeLog
+++ b/net-analyzer/netperf/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/netperf
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netperf/ChangeLog,v 1.70 2014/10/29 09:30:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netperf/ChangeLog,v 1.71 2014/10/29 09:40:30 jer Exp $
+
+ 29 Oct 2014; Jeroen Roovers <jer@gentoo.org> -netperf-2.5.0-r1.ebuild:
+ Old.
29 Oct 2014; Agostino Sarubbo <ago@gentoo.org> netperf-2.6.0-r1.ebuild:
Stable for sparc, wrt bug #517128
diff --git a/net-analyzer/netperf/netperf-2.5.0-r1.ebuild b/net-analyzer/netperf/netperf-2.5.0-r1.ebuild
deleted file mode 100644
index 20f27d22cc07..000000000000
--- a/net-analyzer/netperf/netperf-2.5.0-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netperf/netperf-2.5.0-r1.ebuild,v 1.8 2014/08/10 20:59:26 slyfox Exp $
-
-EAPI="4"
-
-inherit eutils
-
-DESCRIPTION="Network performance benchmark including tests for TCP, UDP, sockets, ATM and more"
-SRC_URI="ftp://ftp.netperf.org/${PN}/${P}.tar.bz2"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
-
-HOMEPAGE="http://www.netperf.org/"
-LICENSE="netperf"
-SLOT="0"
-IUSE=""
-
-DEPEND=">=sys-apps/sed-4"
-RDEPEND=""
-
-src_prepare() {
- sed -i src/netserver.c \
- -e '/^#define DEBUG_LOG_FILE_DIR/s:"/tmp/":"/var/log/":' \
- -e 's:sizeof(netperf_response) - 7:MAXSPECDATA:g' \
- || die
-
- epatch "${FILESDIR}"/${PN}-fix-scripts.patch
-
- # Fixing paths in scripts
- sed -i -e 's:^\(NETHOME=\).*:\1"/usr/bin":' \
- doc/examples/sctp_stream_script \
- doc/examples/tcp_range_script \
- doc/examples/tcp_rr_script \
- doc/examples/tcp_stream_script \
- doc/examples/udp_rr_script \
- doc/examples/udp_stream_script
-}
-
-src_install () {
- default
-
- # move netserver into sbin as we had it before 2.4 was released with its
- # autoconf goodness
- dodir /usr/sbin
- mv "${D}"/usr/{bin,sbin}/netserver || die
-
- # init.d / conf.d
- newinitd "${FILESDIR}"/${PN}-2.2-init netperf
- newconfd "${FILESDIR}"/${PN}-2.2-conf netperf
-
- # documentation and example scripts
- dodoc AUTHORS ChangeLog NEWS README Release_Notes
- dodir /usr/share/doc/${PF}/examples
- #Scripts no longer get installed by einstall
- cp doc/examples/*_script "${D}"/usr/share/doc/${PF}/examples
-}