hwoarang 14/12/20 12:50:37 Modified: bwping-1.7-r1.ebuild ChangeLog Log: Make sure IPV6 is enabled in the kernel is the ipv6 useflag is set. Bug #530420 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 09BF4F54C2BA7F3C!)
Revision Changes Path 1.4 net-analyzer/bwping/bwping-1.7-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/bwping-1.7-r1.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/bwping-1.7-r1.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/bwping-1.7-r1.ebuild?r1=1.3&r2=1.4 Index: bwping-1.7-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-analyzer/bwping/bwping-1.7-r1.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- bwping-1.7-r1.ebuild 22 Feb 2014 08:06:11 -0000 1.3 +++ bwping-1.7-r1.ebuild 20 Dec 2014 12:50:37 -0000 1.4 @@ -1,11 +1,11 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bwping/bwping-1.7-r1.ebuild,v 1.3 2014/02/22 08:06:11 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bwping/bwping-1.7-r1.ebuild,v 1.4 2014/12/20 12:50:37 hwoarang Exp $ EAPI=5 AUTOTOOLS_AUTORECONF=1 -inherit autotools-utils +inherit autotools-utils linux-info DESCRIPTION="A tool to measure bandwidth and RTT between two hosts using ICMP" HOMEPAGE="http://bwping.sourceforge.net/" @@ -20,6 +20,14 @@ "${FILESDIR}/${P}-buildsystem-configurable-ipv6.patch" # bug 454256 ) +CONFIG_CHECK="IPV6" + +pkg_setup() { + if use ipv6; then + linux-info_pkg_setup + fi +} + src_configure() { local myeconfargs=( $(use_enable ipv6) 1.18 net-analyzer/bwping/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/ChangeLog?rev=1.18&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/ChangeLog?rev=1.18&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/bwping/ChangeLog?r1=1.17&r2=1.18 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-analyzer/bwping/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ChangeLog 10 Jul 2014 19:53:23 -0000 1.17 +++ ChangeLog 20 Dec 2014 12:50:37 -0000 1.18 @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/bwping # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bwping/ChangeLog,v 1.17 2014/07/10 19:53:23 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bwping/ChangeLog,v 1.18 2014/12/20 12:50:37 hwoarang Exp $ + + 20 Dec 2014; Markos Chandras <[email protected]> bwping-1.7-r1.ebuild: + Make sure IPV6 is enabled in the kernel is the ipv6 useflag is set. Bug + #530420 10 Jul 2014; Jeroen Roovers <[email protected]> -bwping-1.4.ebuild, -bwping-1.7.ebuild, files/bwping-1.7-buildsystem-configurable-ipv6.patch:
