You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/iperf/iperf-2.0.5-r2.ebuild

51 lines
1.3 KiB

# Copyright 1999-2013 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-r2.ebuild,v 1.1 2013/09/05 16:04:40 dev-zero Exp $
EAPI="5"
inherit base
DESCRIPTION="Tool to measure IP bandwidth using UDP or TCP"
HOMEPAGE="http://iperf.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="HPND"
SLOT="0"
KEYWORDS="~amd64 ~arm ~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=""
PATCHES=(
"${FILESDIR}"/"${PN}"-fix-bandwidth-limit.patch
"${FILESDIR}"/"${PN}"-cast-to-max_size_t-instead-of-int.patch
"${FILESDIR}"/"${PN}"-die-on-bind-fail.patch
"${FILESDIR}"/"${PN}"-bidirectional-tcp-server.patch
"${FILESDIR}"/"${PN}"-fix-format-security-ftbfs.patch
"${FILESDIR}"/"${PN}"-ipv6_mcast_check.patch
)
DOCS="INSTALL README"
src_configure() {
econf \
$(use_enable ipv6) \
$(use_enable threads) \
$(use_enable debug debuginfo)
}
src_install() {
default
dohtml doc/*
newinitd "${FILESDIR}"/${PN}.initd-r1 ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
}
pkg_postinst() {
echo
einfo "To run iperf in server mode, run:"
einfo " /etc/init.d/iperf start"
echo
}