diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-02-21 22:09:58 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-02-21 22:09:58 +0000 |
commit | a89df3d1f12e687815d533bb219f4997ae64752e (patch) | |
tree | b84c9ba800b89ba9c41cf8b3b120341a13d6dce5 /sci-physics/camfr | |
parent | sci-libs/scipy: Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of p... (diff) | |
download | gentoo-2-a89df3d1f12e687815d533bb219f4997ae64752e.tar.gz gentoo-2-a89df3d1f12e687815d533bb219f4997ae64752e.tar.bz2 gentoo-2-a89df3d1f12e687815d533bb219f4997ae64752e.zip |
sci-physics/camfr: 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-physics/camfr')
-rw-r--r-- | sci-physics/camfr/ChangeLog | 8 | ||||
-rw-r--r-- | sci-physics/camfr/camfr-20070717-r3.ebuild | 10 | ||||
-rw-r--r-- | sci-physics/camfr/metadata.xml | 2 |
3 files changed, 12 insertions, 8 deletions
diff --git a/sci-physics/camfr/ChangeLog b/sci-physics/camfr/ChangeLog index dc3790070c9f..5b83e6eb058b 100644 --- a/sci-physics/camfr/ChangeLog +++ b/sci-physics/camfr/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-physics/camfr -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/camfr/ChangeLog,v 1.25 2012/10/16 19:06:44 jlec Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-physics/camfr/ChangeLog,v 1.26 2013/02/21 22:09:58 jlec Exp $ + + 21 Feb 2013; Justin Lecher <jlec@gentoo.org> camfr-20070717-r3.ebuild, + metadata.xml: + Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of plain pkg-config 16 Oct 2012; Justin Lecher <jlec@gentoo.org> camfr-20070717-r3.ebuild, metadata.xml: diff --git a/sci-physics/camfr/camfr-20070717-r3.ebuild b/sci-physics/camfr/camfr-20070717-r3.ebuild index 1912b56d6168..bae0701af8c5 100644 --- a/sci-physics/camfr/camfr-20070717-r3.ebuild +++ b/sci-physics/camfr/camfr-20070717-r3.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-physics/camfr/camfr-20070717-r3.ebuild,v 1.4 2012/10/16 19:06:44 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/camfr/camfr-20070717-r3.ebuild,v 1.5 2013/02/21 22:09:58 jlec Exp $ EAPI=4 @@ -8,7 +8,7 @@ PYTHON_DEPEND="2" PYTHON_USE_WITH="tk" SUPPORT_PYTHON_ABIS="1" -inherit eutils fortran-2 distutils +inherit eutils fortran-2 distutils toolchain-funcs DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES="true" @@ -53,10 +53,10 @@ src_prepare() { include_dirs.append("${EPREFIX}/$(python_get_sitedir)") EOF local x - for x in $(pkg-config --libs-only-l lapack); do + for x in $($(tc-getPKG_CONFIG) --libs-only-l lapack); do lapack_libs="${lapack_libs}, \"${x#-l}\"" done - for x in $(pkg-config --libs-only-L lapack); do + for x in $($(tc-getPKG_CONFIG) --libs-only-L lapack); do lapack_libdirs="${lapack_libdirs}, \"${x#-L}\"" done cat <<-EOF >> machine_cfg.py diff --git a/sci-physics/camfr/metadata.xml b/sci-physics/camfr/metadata.xml index ebe2af3930cd..c5bdd620a2c0 100644 --- a/sci-physics/camfr/metadata.xml +++ b/sci-physics/camfr/metadata.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <herd>sci-physics</herd> + <herd>sci-physics</herd> </pkgmetadata> |