2014-07-20 12:18:29 +04:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
2013-09-06 12:49:54 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2013-09-06 12:49:54 +04:00
|
|
|
|
2014-07-20 12:18:29 +04:00
|
|
|
EAPI=5
|
2013-09-06 12:49:54 +04:00
|
|
|
|
|
|
|
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"
|
2014-07-20 12:18:29 +04:00
|
|
|
SLOT="2"
|
2014-09-15 15:16:06 +04:00
|
|
|
KEYWORDS="amd64 ~arm hppa ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint"
|
2013-09-06 12:49:54 +04:00
|
|
|
IUSE="ipv6 threads debug"
|
|
|
|
|
|
|
|
PATCHES=(
|
2014-07-20 12:18:29 +04:00
|
|
|
"${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
|
2013-09-06 12:49:54 +04:00
|
|
|
)
|
|
|
|
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}
|
|
|
|
}
|