From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1OJBw8-0001QT-AV for garchives@archives.gentoo.org; Mon, 31 May 2010 20:50:16 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D33FEE0781; Mon, 31 May 2010 20:50:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 98202E0781 for ; Mon, 31 May 2010 20:50:15 +0000 (UTC) Received: from corvid.gentoo.org (corvid.gentoo.org [208.92.234.79]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 32FA01B4025 for ; Mon, 31 May 2010 20:50:15 +0000 (UTC) Received: by corvid.gentoo.org (Postfix, from userid 2078) id 0BD032CF37; Mon, 31 May 2010 20:50:13 +0000 (UTC) From: "Jeroen Roovers (jer)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, jer@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/nfdump: nfdump-1.6.1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: nfdump-1.6.1.ebuild ChangeLog X-VCS-Directories: net-analyzer/nfdump X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers Content-Type: text/plain; charset=utf8 Message-Id: <20100531205014.0BD032CF37@corvid.gentoo.org> Date: Mon, 31 May 2010 20:50:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 5e8aff34-667a-45cd-aca3-e18334381c02 X-Archives-Hash: a1b5c2fdac9715f7bff21c4de24e67d8 jer 10/05/31 20:50:13 Modified: nfdump-1.6.1.ebuild ChangeLog Log: When USE=3Dftconv, after we run eautoreconf, we need to define the swit= ches differently (bug #322201). (Portage version: 2.2_rc67/cvs/Linux i686) Revision Changes Path 1.2 net-analyzer/nfdump/nfdump-1.6.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nfdum= p/nfdump-1.6.1.ebuild?rev=3D1.2&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nfdum= p/nfdump-1.6.1.ebuild?rev=3D1.2&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nfdum= p/nfdump-1.6.1.ebuild?r1=3D1.1&r2=3D1.2 Index: nfdump-1.6.1.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/nfdump-1.6.1.ebuild= ,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- nfdump-1.6.1.ebuild 6 May 2010 09:10:36 -0000 1.1 +++ nfdump-1.6.1.ebuild 31 May 2010 20:50:13 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/nfdump-1.6.1.ebui= ld,v 1.1 2010/05/06 09:10:36 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/nfdump-1.6.1.ebui= ld,v 1.2 2010/05/31 20:50:13 jer Exp $ =20 EAPI=3D2 inherit autotools eutils @@ -35,10 +35,17 @@ } =20 src_configure() { - # $(use_enable readpcap) \ + # When USE=3Dftconv, after we run eautoreconf, we need to define the sw= itches + # differently (bug #322201) + local myconf + if use ftconv; then + myconf=3D"--with-ftpath=3D/usr --enable-ftconv" + else + myconf=3D"--without-ftconv" + fi + econf \ - $(use_enable ftconv) \ - $(use_with ftconv ftpath=3D"/usr") \ + ${myconf} \ $(use_enable nfprofile) \ $(use_enable sflow) } 1.10 net-analyzer/nfdump/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nfdum= p/ChangeLog?rev=3D1.10&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nfdum= p/ChangeLog?rev=3D1.10&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nfdum= p/ChangeLog?r1=3D1.9&r2=3D1.10 Index: ChangeLog =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 6 May 2010 09:10:36 -0000 1.9 +++ ChangeLog 31 May 2010 20:50:13 -0000 1.10 @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/nfdump # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/ChangeLog,v 1.9 2= 010/05/06 09:10:36 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/ChangeLog,v 1.10 = 2010/05/31 20:50:13 jer Exp $ + + 31 May 2010; Jeroen Roovers nfdump-1.6.1.ebuild: + When USE=3Dftconv, after we run eautoreconf, we need to define the swi= tches + differently (bug #322201). =20 *nfdump-1.6.1 (06 May 2010) =20