diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-02-21 14:12:55 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-02-21 14:12:55 +0000 |
commit | ec5f4e3258fd84d923d20e06cc4daea81d41ca72 (patch) | |
tree | 85be08f82ac43f9faa3f6b9dd2e4938eb3ed4a01 /sci-mathematics/gsl-shell/gsl-shell-2.2.0.ebuild | |
parent | Security bump (bug #458390) (diff) | |
download | gentoo-2-ec5f4e3258fd84d923d20e06cc4daea81d41ca72.tar.gz gentoo-2-ec5f4e3258fd84d923d20e06cc4daea81d41ca72.tar.bz2 gentoo-2-ec5f4e3258fd84d923d20e06cc4daea81d41ca72.zip |
sci-mathematics/gsl-shell: 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 70EB7916)
Diffstat (limited to 'sci-mathematics/gsl-shell/gsl-shell-2.2.0.ebuild')
-rw-r--r-- | sci-mathematics/gsl-shell/gsl-shell-2.2.0.ebuild | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/sci-mathematics/gsl-shell/gsl-shell-2.2.0.ebuild b/sci-mathematics/gsl-shell/gsl-shell-2.2.0.ebuild index c114d18a1093..632f6b3f12e5 100644 --- a/sci-mathematics/gsl-shell/gsl-shell-2.2.0.ebuild +++ b/sci-mathematics/gsl-shell/gsl-shell-2.2.0.ebuild @@ -1,19 +1,22 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gsl-shell/gsl-shell-2.2.0.ebuild,v 1.2 2013/02/01 12:09:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gsl-shell/gsl-shell-2.2.0.ebuild,v 1.3 2013/02/21 14:12:55 jlec Exp $ EAPI=4 -inherit eutils + +inherit eutils toolchain-funcs DESCRIPTION="Lua interactive shell for sci-libs/gsl" HOMEPAGE="http://www.nongnu.org/gsl-shell/" SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz" -LICENSE="GPL-3" + SLOT="0" +LICENSE="GPL-3" KEYWORDS="~amd64 ~x86" IUSE="doc fox" -DEPEND=">=sci-libs/gsl-1.14 +DEPEND=" + >=sci-libs/gsl-1.14 virtual/blas >=x11-libs/agg-2.5 >=media-libs/freetype-2.4.10 @@ -31,7 +34,7 @@ src_prepare() { } src_compile() { - local BLAS=`pkg-config --libs blas` + local BLAS=$($(tc-getPKG_CONFIG) --libs blas) if use fox; then local FOX_INCLUDES=`WANT_FOX=1.6 fox-config --cflags` |