diff options
author | 2012-12-12 20:14:44 +0000 | |
---|---|---|
committer | 2012-12-12 20:14:44 +0000 | |
commit | 0335707e654c0827b8ccf289e39623971b1873ad (patch) | |
tree | f98b293c08b2cc0f25914290018678b016682172 /sci-libs/superlu | |
parent | sci-libs/superlu: Respect AR and RANLIB; fix test failure, #430444 (diff) | |
download | gentoo-2-0335707e654c0827b8ccf289e39623971b1873ad.tar.gz gentoo-2-0335707e654c0827b8ccf289e39623971b1873ad.tar.bz2 gentoo-2-0335707e654c0827b8ccf289e39623971b1873ad.zip |
sci-libs/superlu: Respect AR and RANLIB; fix test failure, #430444
(Portage version: 2.2.0_alpha147/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Diffstat (limited to 'sci-libs/superlu')
-rw-r--r-- | sci-libs/superlu/ChangeLog | 6 | ||||
-rw-r--r-- | sci-libs/superlu/metadata.xml | 4 | ||||
-rw-r--r-- | sci-libs/superlu/superlu-4.1-r1.ebuild | 9 |
3 files changed, 15 insertions, 4 deletions
diff --git a/sci-libs/superlu/ChangeLog b/sci-libs/superlu/ChangeLog index 1af549cf5bd3..2798ae9ccf13 100644 --- a/sci-libs/superlu/ChangeLog +++ b/sci-libs/superlu/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-libs/superlu # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/superlu/ChangeLog,v 1.18 2012/12/11 18:29:59 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/superlu/ChangeLog,v 1.19 2012/12/12 20:14:44 jlec Exp $ + + 12 Dec 2012; Justin Lecher <jlec@gentoo.org> superlu-4.1-r1.ebuild, + metadata.xml: + Respect AR and RANLIB; fix test failure, #430444 11 Dec 2012; Sébastien Fabbro <bicatali@gentoo.org> -files/4.0-test.patch, -files/superlu-4.0-autotools.patch, -files/superlu-4.2-autotools.patch, diff --git a/sci-libs/superlu/metadata.xml b/sci-libs/superlu/metadata.xml index 101acb6868f3..e43161f47979 100644 --- a/sci-libs/superlu/metadata.xml +++ b/sci-libs/superlu/metadata.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<herd>sci</herd> -<longdescription lang="en"> + <herd>sci</herd> + <longdescription lang="en"> SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems of linear equations on high performance machines. The library is written in C and is callable from either C or diff --git a/sci-libs/superlu/superlu-4.1-r1.ebuild b/sci-libs/superlu/superlu-4.1-r1.ebuild index 7ab8fd04c19e..e14fedaa194c 100644 --- a/sci-libs/superlu/superlu-4.1-r1.ebuild +++ b/sci-libs/superlu/superlu-4.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/superlu/superlu-4.1-r1.ebuild,v 1.10 2012/10/16 19:34:38 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/superlu/superlu-4.1-r1.ebuild,v 1.11 2012/12/12 20:14:44 jlec Exp $ EAPI="2" @@ -26,7 +26,12 @@ DEPEND="${RDEPEND} S="${WORKDIR}/${MY_PN}_${PV}" src_prepare() { + unset VERBOSE epatch "${FILESDIR}"/${P}-autotools.patch + sed \ + -e "s:= ar:= $(tc-getAR):g" \ + -e "s:= ranlib:= $(tc-getRANLIB):g" \ + -i make.inc || die eautoreconf } @@ -40,6 +45,8 @@ src_test() { cd TESTING emake -j1 \ CC="$(tc-getCC)" \ + AR="$(tc-getAR)" \ + RANLIB="$(tc-getRANLIB)" \ FORTRAN="$(tc-getFC)" \ LOADER="$(tc-getCC)" \ CFLAGS="${CFLAGS}" \ |