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 3BDFD198006 for ; Thu, 21 Feb 2013 22:56:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B311AE0458; Thu, 21 Feb 2013 22:56:55 +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 F2A1EE044C for ; Thu, 21 Feb 2013 22:56:54 +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 DBE5133DEF6 for ; Thu, 21 Feb 2013 22:56:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 78058E4073 for ; Thu, 21 Feb 2013 22:56:52 +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: <1361484925.edcc2c3994fa87e67d786effe13a8f993fc65705.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/hpl/ X-VCS-Repository: proj/sci X-VCS-Files: sys-cluster/hpl/ChangeLog sys-cluster/hpl/hpl-2.0-r1.ebuild sys-cluster/hpl/metadata.xml X-VCS-Directories: sys-cluster/hpl/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: edcc2c3994fa87e67d786effe13a8f993fc65705 X-VCS-Branch: master Date: Thu, 21 Feb 2013 22:56:52 +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: a6177a30-53af-4cfd-b1f7-dbdacfd02542 X-Archives-Hash: ea285604a9fdad1f6e48d7770808b437 commit: edcc2c3994fa87e67d786effe13a8f993fc65705 Author: Justin Lecher gentoo org> AuthorDate: Thu Feb 21 22:15:25 2013 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Feb 21 22:15:25 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=edcc2c39 sys-cluster/hpl: Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of plain pkg-config; add missing dep on virtual/pkgconfig Package-Manager: portage-2.2.0_alpha163 --- sys-cluster/hpl/ChangeLog | 6 +++++- sys-cluster/hpl/hpl-2.0-r1.ebuild | 20 ++++++++++++-------- sys-cluster/hpl/metadata.xml | 12 ++++++------ 3 files changed, 23 insertions(+), 15 deletions(-) diff --git a/sys-cluster/hpl/ChangeLog b/sys-cluster/hpl/ChangeLog index fdac651..e04d23e 100644 --- a/sys-cluster/hpl/ChangeLog +++ b/sys-cluster/hpl/ChangeLog @@ -1,7 +1,11 @@ # ChangeLog for sys-cluster/hpl -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 21 Feb 2013; Justin Lecher hpl-2.0-r1.ebuild, metadata.xml: + Use tc-getPKG_CONFIG from toolchain-funcs.eclass instead of plain pkg-config; + add missing dep on virtual/pkgconfig + 01 Feb 2011; Justin Bronder hpl-2.0-r1.ebuild: Bump EAPI thanks to scarabeus. diff --git a/sys-cluster/hpl/hpl-2.0-r1.ebuild b/sys-cluster/hpl/hpl-2.0-r1.ebuild index bec5092..2db9213 100644 --- a/sys-cluster/hpl/hpl-2.0-r1.ebuild +++ b/sys-cluster/hpl/hpl-2.0-r1.ebuild @@ -1,22 +1,26 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-cluster/hpl/hpl-1.0-r2.ebuild,v 1.1 2005/09/01 11:59:18 pbienst Exp $ EAPI=4 -inherit eutils mpi -DESCRIPTION="Portable Implementation of the High-Performance Linpack Benchmark for Distributed-Memory Computers" +inherit eutils mpi toolchain-funcs + +DESCRIPTION="High-Performance Linpack Benchmark for Distributed-Memory Computers" HOMEPAGE="http://www.netlib.org/benchmark/hpl/" SRC_URI="http://www.netlib.org/benchmark/hpl/hpl-${PV}.tar.gz" + LICENSE="HPL" SLOT="0" KEYWORDS="~x86 ~amd64" - IUSE="doc" -DEPEND="$(mpi_pkg_deplist) + +DEPEND=" + $(mpi_pkg_deplist) virtual/blas virtual/lapack" -RDEPEND="${DEPEND}" +RDEPEND="${DEPEND} + virtual/pkgconfig" src_prepare() { local mpicc_path="$(mpi_pkg_cc)" @@ -28,10 +32,10 @@ src_prepare() { -e '/^ARCH\>/s,= .*,= gentoo_hpl_fblas_x86,' \ -e '/^MPdir\>/s,= .*,=,' \ -e '/^MPlib\>/s,= .*,=,' \ - -e "/^LAlib\>/s,= .*,= $(pkg-config --libs-only-l blas lapack)," \ + -e "/^LAlib\>/s,= .*,= $($(tc-getPKG_CONFIG) --libs-only-l blas lapack)," \ -e "/^LINKER\>/s,= .*,= ${mpicc_path}," \ -e "/^CC\>/s,= .*,= ${mpicc_path}," \ - -e "/^LINKFLAGS\>/s|= .*|= ${LDFLAGS} $(pkg-config --libs-only-L blas lapack)|" \ + -e "/^LINKFLAGS\>/s|= .*|= ${LDFLAGS} $($(tc-getPKG_CONFIG) --libs-only-L blas lapack)|" \ Make.gentoo_hpl_fblas_x86 || die } diff --git a/sys-cluster/hpl/metadata.xml b/sys-cluster/hpl/metadata.xml index db933d7..c4c0f8c 100644 --- a/sys-cluster/hpl/metadata.xml +++ b/sys-cluster/hpl/metadata.xml @@ -1,10 +1,10 @@ -cluster - - tantive@gentoo.org - Michael Imhof - Release manager, patch manager - + cluster + + tantive@gentoo.org + Michael Imhof + Release manager, patch manager +