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 35FFA198005 for ; Mon, 25 Feb 2013 02:39:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A06B3E039A; Mon, 25 Feb 2013 02:39:01 +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 0DAEFE0595 for ; Mon, 25 Feb 2013 02:39:00 +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 CE58933DCF9 for ; Mon, 25 Feb 2013 02:38:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 087C9E4075 for ; Mon, 25 Feb 2013 02:38:57 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1361756427.3b7788cbd1b3a0e79f1341449be1fcb4b555ef4c.bicatali@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/armadillo/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/armadillo/ChangeLog sci-libs/armadillo/armadillo-3.6.2-r1.ebuild sci-libs/armadillo/armadillo-3.6.3-r1.ebuild X-VCS-Directories: sci-libs/armadillo/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: 3b7788cbd1b3a0e79f1341449be1fcb4b555ef4c X-VCS-Branch: master Date: Mon, 25 Feb 2013 02:38:57 +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: 2c59649a-2a24-4641-be4c-999de846597f X-Archives-Hash: 969e96f782246e1300a0f55f945bc0c7 commit: 3b7788cbd1b3a0e79f1341449be1fcb4b555ef4c Author: Sébastien Fabbro gentoo org> AuthorDate: Mon Feb 25 01:40:27 2013 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Mon Feb 25 01:40:27 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=3b7788cb sci-libs/armadillo: Version bump. Respect libdir Package-Manager: portage-2.2.01.21688-prefix RepoMan-Options: --force --- sci-libs/armadillo/ChangeLog | 6 ++++++ ...o-3.6.2-r1.ebuild => armadillo-3.6.3-r1.ebuild} | 7 +++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/sci-libs/armadillo/ChangeLog b/sci-libs/armadillo/ChangeLog index ae5bb80..a5368dd 100644 --- a/sci-libs/armadillo/ChangeLog +++ b/sci-libs/armadillo/ChangeLog @@ -2,6 +2,12 @@ # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*armadillo-3.6.3-r1 (25 Feb 2013) + + 25 Feb 2013; Sébastien Fabbro + +armadillo-3.6.3-r1.ebuild, -armadillo-3.6.2-r1.ebuild: + sci-libs/armadillo: Version bump. Respect libdir + 22 Feb 2013; Justin Lecher armadillo-3.6.2-r1.ebuild, metadata.xml: Correct USE dependency for virtual/pkgconfig diff --git a/sci-libs/armadillo/armadillo-3.6.2-r1.ebuild b/sci-libs/armadillo/armadillo-3.6.3-r1.ebuild similarity index 91% rename from sci-libs/armadillo/armadillo-3.6.2-r1.ebuild rename to sci-libs/armadillo/armadillo-3.6.3-r1.ebuild index 0135614..b7bd289 100644 --- a/sci-libs/armadillo/armadillo-3.6.2-r1.ebuild +++ b/sci-libs/armadillo/armadillo-3.6.3-r1.ebuild @@ -6,7 +6,7 @@ EAPI=5 CMAKE_IN_SOURCE_BUILD=1 -inherit cmake-utils toolchain-funcs +inherit cmake-utils toolchain-funcs multilib DESCRIPTION="Streamlined C++ linear algebra library" HOMEPAGE="http://arma.sourceforge.net/" @@ -19,7 +19,7 @@ IUSE="atlas blas doc examples lapack" RDEPEND=" dev-libs/boost - atlas? ( sci-libs/atlas ) + atlas? ( sci-libs/atlas[lapack] ) blas? ( virtual/blas ) lapack? ( virtual/lapack )" DEPEND="${DEPEND} @@ -33,7 +33,7 @@ src_prepare() { } src_configure() { - local mycmakeargs=() + local mycmakeargs=( -DINSTALL_LIB_DIR="${EROOT}/usr/$(get_libdir)" ) if use blas; then mycmakeargs+=( -DBLAS_FOUND=ON @@ -51,7 +51,6 @@ src_configure() { $(tc-getPKG_CONFIG) --exists atlas-cblas-threads && c+=-threads $(tc-getPKG_CONFIG) --exists atlas-lapack-threads && l+=-threads mycmakeargs=( - -DARMA_USE_ATLAS=ON -DCBLAS_FOUND=ON -DCLAPACK_FOUND=ON -DATLAS_INCLUDE_DIR="$($(tc-getPKG_CONFIG) --cflags ${c} | sed 's/-I//')"