diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2010-02-12 04:17:58 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2010-02-12 04:17:58 +0000 |
commit | 6999bf722274deeffde48b7132c33cc124afcfe3 (patch) | |
tree | 92423e9ca79f9a319eba7231c1d0a7ea22fdc2ae /sci-libs/mathgl | |
parent | Removed mpi use flag in favor of checking if hdf5 was built with mpi, see bug... (diff) | |
download | gentoo-2-6999bf722274deeffde48b7132c33cc124afcfe3.tar.gz gentoo-2-6999bf722274deeffde48b7132c33cc124afcfe3.tar.bz2 gentoo-2-6999bf722274deeffde48b7132c33cc124afcfe3.zip |
Removed mpi use flag in favor of checking if hdf5 was built with mpi, see bug #302621
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/mathgl')
-rw-r--r-- | sci-libs/mathgl/ChangeLog | 6 | ||||
-rw-r--r-- | sci-libs/mathgl/mathgl-1.10.ebuild | 9 |
2 files changed, 9 insertions, 6 deletions
diff --git a/sci-libs/mathgl/ChangeLog b/sci-libs/mathgl/ChangeLog index 02e8c6418253..510f8d025f22 100644 --- a/sci-libs/mathgl/ChangeLog +++ b/sci-libs/mathgl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-libs/mathgl # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/mathgl/ChangeLog,v 1.10 2010/01/30 09:36:07 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/mathgl/ChangeLog,v 1.11 2010/02/12 04:17:58 bicatali Exp $ + + 12 Feb 2010; Sébastien Fabbro <bicatali@gentoo.org> mathgl-1.10.ebuild: + Removed mpi use flag in favor of checking if hdf5 was built with mpi, see + bug #302621 30 Jan 2010; Andrey Grozin <grozin@gentoo.org> -mathgl-1.9.0.1.ebuild, mathgl-1.10.ebuild, metadata.xml: diff --git a/sci-libs/mathgl/mathgl-1.10.ebuild b/sci-libs/mathgl/mathgl-1.10.ebuild index 87850d5b2bf0..16dfbb4be0e4 100644 --- a/sci-libs/mathgl/mathgl-1.10.ebuild +++ b/sci-libs/mathgl/mathgl-1.10.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-libs/mathgl/mathgl-1.10.ebuild,v 1.2 2010/01/30 09:36:07 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/mathgl/mathgl-1.10.ebuild,v 1.3 2010/02/12 04:17:58 bicatali Exp $ EAPI=2 WX_GTK_VER=2.8 @@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="doc fltk gif glut gsl hdf5 jpeg mpi octave python qt4 wxwidgets" +IUSE="doc fltk gif glut gsl hdf5 jpeg octave python qt4 wxwidgets" RDEPEND="media-libs/libpng virtual/glu @@ -22,9 +22,8 @@ RDEPEND="media-libs/libpng fltk? ( x11-libs/fltk:1.1 ) gif? ( media-libs/giflib ) jpeg? ( media-libs/jpeg ) - hdf5? ( >=sci-libs/hdf5-1.8[mpi=] ) + hdf5? ( >=sci-libs/hdf5-1.8 ) gsl? ( sci-libs/gsl ) - mpi? ( virtual/mpi[cxx] ) octave? ( sci-mathematics/octave ) qt4? ( x11-libs/qt-gui:4 ) wxwidgets? ( x11-libs/wxGTK:2.8 )" @@ -39,7 +38,7 @@ pkg_setup() { eerror "You need >=gcc-4.3.0 to compile this package" die "Wrong gcc version" fi - if use mpi; then + if has_version sci-libs/hdf5[mpi]; then export CC=mpicc export CXX=mpicxx fi |