bicatali 14/06/09 03:17:04 Modified: hypre-2.9.0b.ebuild ChangeLog Log: Fixed underlinking (bug #493222) and enabling MPI (bug #508030) thanks Matthias Maier (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Revision Changes Path 1.4 sci-libs/hypre/hypre-2.9.0b.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hypre/hypre-2.9.0b.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hypre/hypre-2.9.0b.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hypre/hypre-2.9.0b.ebuild?r1=1.3&r2=1.4 Index: hypre-2.9.0b.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-libs/hypre/hypre-2.9.0b.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- hypre-2.9.0b.ebuild 22 Apr 2014 17:27:16 -0000 1.3 +++ hypre-2.9.0b.ebuild 9 Jun 2014 03:17:04 -0000 1.4 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/hypre/hypre-2.9.0b.ebuild,v 1.3 2014/04/22 17:27:16 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/hypre/hypre-2.9.0b.ebuild,v 1.4 2014/06/09 03:17:04 bicatali Exp $ EAPI=5 @@ -15,14 +15,12 @@ LICENSE="LGPL-2.1" SLOT="0/${PV}" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="blas doc examples fortran lapack mpi" - -REQUIRED_USE="mpi? ( fortran lapack )" +IUSE="doc examples fortran mpi" RDEPEND=" sci-libs/superlu:0= - blas? ( virtual/blas ) - lapack? ( virtual/lapack ) + virtual/blas + virtual/lapack mpi? ( virtual/mpi )" DEPEND="${RDEPEND} virtual/pkgconfig" @@ -50,29 +48,16 @@ } src_configure() { - local myeconfargs+=( + local myeconfargs=( --enable-shared --without-superlu - --without-strict-checking + --with-blas-libs="$($(tc-getPKG_CONFIG) --libs-only-l blas | sed -e 's/-l//g')" + --with-blas-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L blas | sed -e 's/-L//g')" + --with-lapack-libs="$($(tc-getPKG_CONFIG) --libs-only-l lapack | sed -e 's/-l//g')" + --with-lapack-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L lapack | sed -e 's/-L//g')" $(use_enable fortran) $(use_with mpi MPI) ) - if use blas; then - myeconfargs+=( - --with-blas-libs="$($(tc-getPKG_CONFIG) --libs-only-l blas | sed -e 's/-l//g')" - --with-blas-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L blas | sed -e 's/-L//g')" - ) - else - myeconfargs+=( --without-blas ) - fi - if use lapack; then - myeconfargs+=( - --with-lapack-libs="$($(tc-getPKG_CONFIG) --libs-only-l lapack | sed -e 's/-l//g')" - --with-lapack-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L lapack | sed -e 's/-L//g')" - ) - else - myeconfargs+=( --without-lapack ) - fi econf "${myeconfargs[@]}" } 1.14 sci-libs/hypre/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hypre/ChangeLog?rev=1.14&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hypre/ChangeLog?rev=1.14&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hypre/ChangeLog?r1=1.13&r2=1.14 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-libs/hypre/ChangeLog,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- ChangeLog 22 Apr 2014 17:27:16 -0000 1.13 +++ ChangeLog 9 Jun 2014 03:17:04 -0000 1.14 @@ -1,6 +1,10 @@ # ChangeLog for sci-libs/hypre # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/hypre/ChangeLog,v 1.13 2014/04/22 17:27:16 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/hypre/ChangeLog,v 1.14 2014/06/09 03:17:04 bicatali Exp $ + + 09 Jun 2014; Sébastien Fabbro <[email protected]> hypre-2.9.0b.ebuild: + Fixed underlinking (bug #493222) and enabling MPI (bug #508030) thanks + Matthias Maier 22 Apr 2014; Sébastien Fabbro <[email protected]> -hypre-2.8.0b-r1.ebuild, hypre-2.9.0b.ebuild:
