diff options
author | 2010-03-30 07:02:46 +0000 | |
---|---|---|
committer | 2010-03-30 07:02:46 +0000 | |
commit | 0fc8b1e1007d54517eaf5123b0e86a1072399f55 (patch) | |
tree | 1fce721b57fbde718412d224cc82eae800c0d9eb | |
parent | perl-core/DB_File > virtual/perl-DB_File and EAPI downgrade, thanks tove for ... (diff) | |
download | gentoo-2-0fc8b1e1007d54517eaf5123b0e86a1072399f55.tar.gz gentoo-2-0fc8b1e1007d54517eaf5123b0e86a1072399f55.tar.bz2 gentoo-2-0fc8b1e1007d54517eaf5123b0e86a1072399f55.zip |
Fix for USE="python -tool" situation, #311995
(Portage version: 2.2_rc67/cvs/Linux x86_64)
-rw-r--r-- | sci-chemistry/apbs/ChangeLog | 6 | ||||
-rw-r--r-- | sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild | 10 | ||||
-rw-r--r-- | sci-chemistry/apbs/metadata.xml | 5 |
3 files changed, 18 insertions, 3 deletions
diff --git a/sci-chemistry/apbs/ChangeLog b/sci-chemistry/apbs/ChangeLog index 3e07b3b682d2..0b754f552631 100644 --- a/sci-chemistry/apbs/ChangeLog +++ b/sci-chemistry/apbs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-chemistry/apbs # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/ChangeLog,v 1.26 2010/03/29 19:00:29 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/ChangeLog,v 1.27 2010/03/30 07:02:46 jlec Exp $ + + 30 Mar 2010; Justin Lecher <jlec@gentoo.org> apbs-1.2.1b-r2.ebuild, + metadata.xml: + Fix for USE="python -tool" situation, #311995 *apbs-1.2.1b-r2 (28 Mar 2010) diff --git a/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild b/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild index c9727e661f38..53d63e6bc302 100644 --- a/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild +++ b/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild @@ -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/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild,v 1.1 2010/03/29 19:00:29 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild,v 1.2 2010/03/30 07:02:46 jlec Exp $ EAPI="3" @@ -65,9 +65,15 @@ src_configure() { fi fi || die "Failed to select proper mpi implementation" - econf $(use_enable python) \ + # we need the tools target for python + if use python && ! use tools; then + myconf="${myconf} --enable-tools" + fi + + econf \ --disable-maloc-rebuild \ $(use_enable openmp) \ + $(use_enable python) \ $(use_enable tools) \ ${myconf} } diff --git a/sci-chemistry/apbs/metadata.xml b/sci-chemistry/apbs/metadata.xml index c6c79fd71ace..b360b031c2e8 100644 --- a/sci-chemistry/apbs/metadata.xml +++ b/sci-chemistry/apbs/metadata.xml @@ -5,6 +5,11 @@ <email>markusle@gentoo.org</email> <name>Markus Dittrich</name> </maintainer> + <maintainer> + <email>jlec@gentoo.org</email> + <name>Justin Lecher</name> + <description>Ebuild Crasher</description> + </maintainer> <herd>sci-chemistry</herd> <use> <flag name='arpack'>Include support for arpack libs</flag> |