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 69997138247 for ; Mon, 6 Jan 2014 19:27:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B5E2E0B6D; Mon, 6 Jan 2014 19:27:15 +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 B5446E0B6A for ; Mon, 6 Jan 2014 19:27:13 +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 BB2C133F76B for ; Mon, 6 Jan 2014 19:27:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 0EEE0E55B0 for ; Mon, 6 Jan 2014 19:27:11 +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: <1389036380.90d511bdd10f7bd823c85e4f64052941778c6f04.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/trilinos/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/trilinos/ChangeLog sci-libs/trilinos/trilinos-11.0.3.ebuild X-VCS-Directories: sci-libs/trilinos/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 90d511bdd10f7bd823c85e4f64052941778c6f04 X-VCS-Branch: master Date: Mon, 6 Jan 2014 19:27:11 +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: a3355c6c-5443-48cc-8b20-f20a5b540d8d X-Archives-Hash: c43631191cd27159deca41c34fae125d commit: 90d511bdd10f7bd823c85e4f64052941778c6f04 Author: Justin Lecher gentoo org> AuthorDate: Mon Jan 6 19:26:20 2014 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Jan 6 19:26:20 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=90d511bd sci-libs/trilinos: Don't use plain pkg-config Package-Manager: portage-2.2.8 --- sci-libs/trilinos/ChangeLog | 3 +++ sci-libs/trilinos/trilinos-11.0.3.ebuild | 11 ++++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/sci-libs/trilinos/ChangeLog b/sci-libs/trilinos/ChangeLog index 9ef8e1d..394f9fb 100644 --- a/sci-libs/trilinos/ChangeLog +++ b/sci-libs/trilinos/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 06 Jan 2014; Justin Lecher trilinos-11.0.3.ebuild: + Don't use plain pkg-config + 06 Jan 2014; Justin Lecher trilinos-11.4.2.ebuild, metadata.xml: Fix moced dep diff --git a/sci-libs/trilinos/trilinos-11.0.3.ebuild b/sci-libs/trilinos/trilinos-11.0.3.ebuild index 7ef814c..e50a2e1 100644 --- a/sci-libs/trilinos/trilinos-11.0.3.ebuild +++ b/sci-libs/trilinos/trilinos-11.0.3.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="5" -inherit cmake-utils +inherit cmake-utils toolchain-funcs DESCRIPTION="Scientific library collection for large scale problems" HOMEPAGE="http://trilinos.sandia.gov/" @@ -35,7 +35,8 @@ RDEPEND=" taucs? ( sci-libs/taucs ) tbb? ( dev-cpp/tbb ) umfpack? ( sci-libs/umfpack )" -DEPEND="${RDEPEND}" +DEPEND="${RDEPEND} + virtual/pkgconfig" S="${WORKDIR}/${P}-Source" @@ -48,7 +49,7 @@ pkg_nofetch() { function trilinos_alternatives { alt_dirs="" - for d in $(pkg-config --libs-only-L $1); do + for d in $($(tc-getPKG_CONFIG) --libs-only-L $1); do alt_dirs="${alt_dirs};${d:2}" done arg="-D${2}_LIBRARY_DIRS=${alt_dirs:1}" @@ -57,7 +58,7 @@ function trilinos_alternatives { ) alt_libs="" - for d in $(pkg-config --libs-only-l $1); do + for d in $($(tc-getPKG_CONFIG) --libs-only-l $1); do alt_libs="${alt_libs};${d:2}" done arg="-D${2}_LIBRARY_NAMES=${alt_libs:1}"