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 BA6471387AB for ; Sat, 8 Feb 2014 14:36:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C77AE0A8C; Sat, 8 Feb 2014 14:36:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 25C00E0A8C for ; Sat, 8 Feb 2014 14:36:55 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 522B133F9C7 for ; Sat, 8 Feb 2014 14:36:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 5773818278 for ; Sat, 8 Feb 2014 14:36:52 +0000 (UTC) From: "Reinis Danne" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Reinis Danne" Message-ID: <1391870027.526e6ac0e2f64891b69bc3e0cd47b792f0d044a9.rei4dan@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.930.0.ebuild X-VCS-Directories: sci-libs/armadillo/ X-VCS-Committer: rei4dan X-VCS-Committer-Name: Reinis Danne X-VCS-Revision: 526e6ac0e2f64891b69bc3e0cd47b792f0d044a9 X-VCS-Branch: master Date: Sat, 8 Feb 2014 14:36: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: ea6c0824-8eb9-4fce-98c4-61f1761a41ff X-Archives-Hash: e8a1242533f8645d8e22019467662e05 commit: 526e6ac0e2f64891b69bc3e0cd47b792f0d044a9 Author: Reinis Danne gmail com> AuthorDate: Sat Feb 8 14:33:47 2014 +0000 Commit: Reinis Danne gmail com> CommitDate: Sat Feb 8 14:33:47 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=526e6ac0 sci-libs/armadillo: Fix cblas, clapack include dir --- sci-libs/armadillo/ChangeLog | 5 ++++- sci-libs/armadillo/armadillo-3.930.0.ebuild | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sci-libs/armadillo/ChangeLog b/sci-libs/armadillo/ChangeLog index f8b3e97..98a692c 100644 --- a/sci-libs/armadillo/ChangeLog +++ b/sci-libs/armadillo/ChangeLog @@ -1,7 +1,10 @@ # ChangeLog for sci-libs/armadillo -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 08 Feb 2014; Reinis Danne armadillo-3.930.0.ebuild: + Fix cblas, clapack include dir. + *armadillo-3.930.0 (07 Dec 2013) 07 Dec 2013; Sébastien Fabbro +armadillo-3.930.0.ebuild, diff --git a/sci-libs/armadillo/armadillo-3.930.0.ebuild b/sci-libs/armadillo/armadillo-3.930.0.ebuild index ea09daa..59be372 100644 --- a/sci-libs/armadillo/armadillo-3.930.0.ebuild +++ b/sci-libs/armadillo/armadillo-3.930.0.ebuild @@ -63,7 +63,8 @@ src_configure() { mycmakeargs+=( -DCBLAS_FOUND=ON -DCLAPACK_FOUND=ON - -DATLAS_INCLUDE_DIR="$($(tc-getPKG_CONFIG) --cflags ${c} | sed 's/-I//')" + -DCBLAS_INCLUDE_DIR="$($(tc-getPKG_CONFIG) --cflags-only-I ${c} | sed 's/-I//')" + -DCLAPACK_INCLUDE_DIR="$($(tc-getPKG_CONFIG) --cflags-only-I ${l} | sed 's/-I//')" -DCBLAS_LIBRARIES="$($(tc-getPKG_CONFIG) --libs ${c})" -DCLAPACK_LIBRARIES="$($(tc-getPKG_CONFIG) --libs ${l})" )