diff options
author | 2014-08-06 21:13:56 +0000 | |
---|---|---|
committer | 2014-08-06 21:13:56 +0000 | |
commit | 01081ac3ccefc2589c7f4a4ba3ef51ca83696bc9 (patch) | |
tree | caa04cd783cfa97a024436b4af9693e9cdc34283 /net-misc/iperf | |
parent | version bump (diff) | |
download | gentoo-2-01081ac3ccefc2589c7f4a4ba3ef51ca83696bc9.tar.gz gentoo-2-01081ac3ccefc2589c7f4a4ba3ef51ca83696bc9.tar.bz2 gentoo-2-01081ac3ccefc2589c7f4a4ba3ef51ca83696bc9.zip |
Version bump.
(Portage version: 2.2.11-r1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-misc/iperf')
-rw-r--r-- | net-misc/iperf/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/iperf/iperf-3.0.6.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/net-misc/iperf/ChangeLog b/net-misc/iperf/ChangeLog index 00d46b72b32f..9df2357b5da0 100644 --- a/net-misc/iperf/ChangeLog +++ b/net-misc/iperf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/iperf # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/ChangeLog,v 1.52 2014/08/01 11:41:03 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/ChangeLog,v 1.53 2014/08/06 21:13:56 jer Exp $ + +*iperf-3.0.6 (06 Aug 2014) + + 06 Aug 2014; Jeroen Roovers <jer@gentoo.org> +iperf-3.0.6.ebuild: + Version bump. 01 Aug 2014; Raúl Porcel <armin76@gentoo.org> iperf-2.0.5-r2.ebuild: sparc/x86 stable wrt #517430 diff --git a/net-misc/iperf/iperf-3.0.6.ebuild b/net-misc/iperf/iperf-3.0.6.ebuild new file mode 100644 index 000000000000..24895e0c34d4 --- /dev/null +++ b/net-misc/iperf/iperf-3.0.6.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/iperf-3.0.6.ebuild,v 1.1 2014/08/06 21:13:56 jer Exp $ + +EAPI=5 +inherit autotools eutils + +DESCRIPTION="A TCP, UDP, and SCTP network bandwidth measurement tool" +LICENSE="BSD" +SLOT="3" +HOMEPAGE="https://github.com/esnet/iperf/" +SRC_URI="https://codeload.github.com/esnet/${PN}/tar.gz/${PV} -> ${P}.tar.gz" +KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint" +IUSE="static-libs" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-3.0.5-flags.patch + eautoreconf +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + prune_libtool_files +} |