39 lines
1,006 B
Bash
39 lines
1,006 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/iperf-2.0.5.ebuild,v 1.6 2010/10/10 18:48:12 armin76 Exp $
|
|
|
|
EAPI="2"
|
|
|
|
DESCRIPTION="tool to measure IP bandwidth using UDP or TCP"
|
|
HOMEPAGE="http://iperf.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="as-is"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 hppa ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint"
|
|
IUSE="ipv6 threads debug"
|
|
|
|
DEPEND=""
|
|
RDEPEND=""
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable ipv6) \
|
|
$(use_enable threads) \
|
|
$(use_enable debug debuginfo)
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "make install failed"
|
|
dodoc INSTALL README
|
|
dohtml doc/*
|
|
newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
|
|
newconfd "${FILESDIR}"/${PN}.confd ${PN} || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
echo
|
|
einfo "To run iperf in server mode, run:"
|
|
einfo " /etc/init.d/iperf start"
|
|
echo
|
|
}
|