diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-02-21 21:23:07 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-02-21 21:23:07 +0000 |
commit | fca2a05b644bea48dc28fa37b545991699b0920e (patch) | |
tree | 79711463abb45c5673db9e88c582ba9d22eff58b /sci-libs/superlu | |
parent | sci-libs/taucs: Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of p... (diff) | |
download | gentoo-2-fca2a05b644bea48dc28fa37b545991699b0920e.tar.gz gentoo-2-fca2a05b644bea48dc28fa37b545991699b0920e.tar.bz2 gentoo-2-fca2a05b644bea48dc28fa37b545991699b0920e.zip |
sci-libs/superlu: Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of plain pkg-config
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Diffstat (limited to 'sci-libs/superlu')
-rw-r--r-- | sci-libs/superlu/ChangeLog | 7 | ||||
-rw-r--r-- | sci-libs/superlu/superlu-4.1-r1.ebuild | 8 |
2 files changed, 9 insertions, 6 deletions
diff --git a/sci-libs/superlu/ChangeLog b/sci-libs/superlu/ChangeLog index 8a8690577453..5b7fed6523e6 100644 --- a/sci-libs/superlu/ChangeLog +++ b/sci-libs/superlu/ChangeLog @@ -1,6 +1,9 @@ # 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.20 2012/12/12 20:31:31 jlec Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/superlu/ChangeLog,v 1.21 2013/02/21 21:23:07 jlec Exp $ + + 21 Feb 2013; Justin Lecher <jlec@gentoo.org> superlu-4.1-r1.ebuild: + Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of plain pkg-config 12 Dec 2012; Justin Lecher <jlec@gentoo.org> superlu-4.3.ebuild: Respect AR and RANLIB diff --git a/sci-libs/superlu/superlu-4.1-r1.ebuild b/sci-libs/superlu/superlu-4.1-r1.ebuild index e14fedaa194c..c1d0d7710630 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 +# Copyright 1999-2013 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.11 2012/12/12 20:14:44 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/superlu/superlu-4.1-r1.ebuild,v 1.12 2013/02/21 21:23:07 jlec Exp $ EAPI="2" @@ -37,7 +37,7 @@ src_prepare() { src_configure() { econf \ - --with-blas="$(pkg-config --libs blas)" \ + --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \ $(use_enable static-libs static) } @@ -52,7 +52,7 @@ src_test() { CFLAGS="${CFLAGS}" \ FFLAGS="${FFLAGS}" \ LOADOPTS="${LDFLAGS}" \ - BLASLIB="$(pkg-config --libs blas)" \ + BLASLIB="$($(tc-getPKG_CONFIG) --libs blas)" \ SUPERLULIB="${S}/SRC/.libs/libsuperlu$(get_libname)" \ LD_LIBRARY_PATH="${S}/SRC/.libs" \ DYLD_LIBRARY_PATH="${S}/SRC/.libs" \ |