blob: d670fbb89b83fd98dee136bdb5d6b6e1cfb354f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netperf/netperf-2.4.0.ebuild,v 1.2 2005/07/16 19:42:29 swegener Exp $
inherit flag-o-matic
MY_P=${P/_rc/-rc}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Network performance benchmark including tests for TCP, UDP, sockets, ATM and more."
if [[ ${PV} == *_* ]]; then
SRC_URI="ftp://ftp.cup.hp.com/dist/networking/benchmarks/netperf/experimental/${MY_P}.tar.gz"
else
SRC_URI="ftp://ftp.cup.hp.com/dist/networking/benchmarks/netperf/${MY_P}.tar.gz"
fi
HOMEPAGE="http://www.netperf.org/"
LICENSE="netperf"
SLOT="0"
KEYWORDS="~x86 ~sparc ~ia64 ~alpha ~amd64 ~ppc64 ~ppc ~ppc-macos"
IUSE=""
src_install () {
einstall || die
# 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 COPYING NEWS README Release_Notes doc/netperf.pdf
dodir /usr/share/doc/${PF}/examples
mv ${D}/usr/bin/*_script ${D}/usr/share/doc/${PF}/examples
}
|