jer 14/07/19 13:29:42 Modified: ChangeLog iperf-3.0.5.ebuild Log: Do not inject -g into CFLAGS/LDFLAGS, do not create an additional profiled build (bug #517488 by Ronny Boesger). (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path 1.47 net-misc/iperf/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iperf/ChangeLog?rev=1.47&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iperf/ChangeLog?rev=1.47&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iperf/ChangeLog?r1=1.46&r2=1.47 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/iperf/ChangeLog,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- ChangeLog 18 Jul 2014 16:33:50 -0000 1.46 +++ ChangeLog 19 Jul 2014 13:29:42 -0000 1.47 @@ -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.46 2014/07/18 16:33:50 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/ChangeLog,v 1.47 2014/07/19 13:29:42 jer Exp $ + + 19 Jul 2014; Jeroen Roovers <[email protected]> iperf-3.0.5.ebuild, + +files/iperf-3.0.5-flags.patch: + Do not inject -g into CFLAGS/LDFLAGS, do not create an additional profiled + build (bug #517488 by Ronny Boesger). *iperf-3.0.5 (18 Jul 2014) 1.2 net-misc/iperf/iperf-3.0.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iperf/iperf-3.0.5.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iperf/iperf-3.0.5.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iperf/iperf-3.0.5.ebuild?r1=1.1&r2=1.2 Index: iperf-3.0.5.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/iperf/iperf-3.0.5.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- iperf-3.0.5.ebuild 18 Jul 2014 16:33:50 -0000 1.1 +++ iperf-3.0.5.ebuild 19 Jul 2014 13:29:42 -0000 1.2 @@ -1,9 +1,9 @@ # 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.5.ebuild,v 1.1 2014/07/18 16:33:50 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/iperf-3.0.5.ebuild,v 1.2 2014/07/19 13:29:42 jer Exp $ EAPI=5 -inherit eutils +inherit autotools eutils DESCRIPTION="A TCP, UDP, and SCTP network bandwidth measurement tool" LICENSE="BSD" @@ -13,6 +13,11 @@ KEYWORDS="~amd64 ~arm ~hppa ~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}"/${P}-flags.patch + eautoreconf +} + src_configure() { econf $(use_enable static-libs static) }
