blob: 76c63fe63e7bb2b9c9ea9e05639e31bcf0700fac (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/iperf-1.7.0.ebuild,v 1.1 2003/07/29 19:31:34 mholzer Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Iperf is a tool to measure IP bandwidth using UDP or TCP. It allows for tuning various parameters, and reports bandwidth, delay jitter, and packet loss. It supports IPv6 and multicast."
SRC_URI="http://dast.nlanr.net/Projects/Iperf/${P}-source.tar.gz"
HOMEPAGE="http://dast.nlanr.net/Projects/Iperf"
DEPEND="virtual/glibc"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
src_unpack() {
unpack ${A}
cd ${S}
sed -i 's:@read INSTALL_DIR;::' Makefile
}
src_compile() {
cd cfg
econf || die
cd ..
emake || die
}
src_install () {
make INSTALL_DIR=${D}/usr/bin install || die
dodoc INSTALL README VERSION
}
|