From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3FFDB198005 for ; Fri, 22 Feb 2013 10:16:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BAB5821C0D1; Fri, 22 Feb 2013 10:15:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 00C8821C0CF for ; Fri, 22 Feb 2013 10:15:49 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DB1AE33E0B7 for ; Fri, 22 Feb 2013 10:15:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id F41C6E4083 for ; Fri, 22 Feb 2013 10:15:45 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1361528067.c232e0bdae9e7d17e3697d927f2af1b9f1721ff2.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-astronomy/zebra/ X-VCS-Repository: proj/sci X-VCS-Files: sci-astronomy/zebra/ChangeLog sci-astronomy/zebra/metadata.xml sci-astronomy/zebra/zebra-1.01.ebuild X-VCS-Directories: sci-astronomy/zebra/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: c232e0bdae9e7d17e3697d927f2af1b9f1721ff2 X-VCS-Branch: master Date: Fri, 22 Feb 2013 10:15:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2e57bfc5-3c78-4b6d-b7bb-e5a1cfd33cd1 X-Archives-Hash: 2fde504e5355a67c64fad56be64eecc7 commit: c232e0bdae9e7d17e3697d927f2af1b9f1721ff2 Author: Justin Lecher gentoo org> AuthorDate: Fri Feb 22 10:14:27 2013 +0000 Commit: Justin Lecher gentoo org> CommitDate: Fri Feb 22 10:14:27 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c232e0bd sci-astronomy/zebra: Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of plain pkg-config Package-Manager: portage-2.2.0_alpha163 --- sci-astronomy/zebra/ChangeLog | 5 ++++- sci-astronomy/zebra/metadata.xml | 4 ++-- sci-astronomy/zebra/zebra-1.01.ebuild | 16 ++++++++-------- 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/sci-astronomy/zebra/ChangeLog b/sci-astronomy/zebra/ChangeLog index 72dc7db..d4e0f1a 100644 --- a/sci-astronomy/zebra/ChangeLog +++ b/sci-astronomy/zebra/ChangeLog @@ -1,7 +1,10 @@ # ChangeLog for sci-astronomy/zebra -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 22 Feb 2013; Justin Lecher zebra-1.01.ebuild, metadata.xml: + Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of plain pkg-config + *zebra-1.01 (17 May 2012) 17 May 2012; Sébastien Fabbro +metadata.xml, diff --git a/sci-astronomy/zebra/metadata.xml b/sci-astronomy/zebra/metadata.xml index b8ef7bb..1edf84d 100644 --- a/sci-astronomy/zebra/metadata.xml +++ b/sci-astronomy/zebra/metadata.xml @@ -1,8 +1,8 @@ -sci-astronomy - + sci-astronomy + The Zurich Extragalactic Bayesian Redshift Analyzer is a software to compute and analyze photometric redshifts of galaxies. ZEBRA combines and extends several of the classical approaches to diff --git a/sci-astronomy/zebra/zebra-1.01.ebuild b/sci-astronomy/zebra/zebra-1.01.ebuild index 7463821..d4f2e76 100644 --- a/sci-astronomy/zebra/zebra-1.01.ebuild +++ b/sci-astronomy/zebra/zebra-1.01.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI=4 +EAPI=5 -inherit autotools-utils +inherit autotools-utils toolchain-funcs DESCRIPTION="Galaxy redhift Bayesian analyzer" HOMEPAGE="http://www.astro.phys.ethz.ch/exgal_ocosm/zebra/index.html" @@ -15,20 +15,20 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc examples" -RDEPEND="sci-libs/gsl +RDEPEND=" + sci-libs/gsl sci-libs/lapackpp virtual/blas virtual/cblas virtual/lapack" - DEPEND="${RDEPEND} virtual/pkgconfig" src_configure() { myeconfargs+=( - --with-blas="$(pkg-config --libs blas)" - --with-cblas="$(pkg-config --libs cblas)" - --with-lapack="$(pkg-config --libs lapack)" + --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" + --with-cblas="$($(tc-getPKG_CONFIG) --libs cblas)" + --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)" ) autotools-utils_src_configure }