From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 691D71382C5 for ; Fri, 11 Dec 2020 18:55:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 992BFE0895; Fri, 11 Dec 2020 18:55:12 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 831B3E0895 for ; Fri, 11 Dec 2020 18:55:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5DFE6340A9F for ; Fri, 11 Dec 2020 18:55:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D936E478 for ; Fri, 11 Dec 2020 18:55:09 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1607712904.38fa02c8cc33f0dfc7dc8fe9788b583e9dd22d3b.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-physics/atompaw/ X-VCS-Repository: proj/sci X-VCS-Files: sci-physics/atompaw/atompaw-4.0.0.14.ebuild X-VCS-Directories: sci-physics/atompaw/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 38fa02c8cc33f0dfc7dc8fe9788b583e9dd22d3b X-VCS-Branch: master Date: Fri, 11 Dec 2020 18:55:09 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 96a1813b-38f1-41bb-bcab-d48b05bbe91a X-Archives-Hash: 5ff181e72e66995ed41f658e39dcb70a commit: 38fa02c8cc33f0dfc7dc8fe9788b583e9dd22d3b Author: Aisha Tammy aisha cc> AuthorDate: Wed Dec 9 21:42:30 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Fri Dec 11 18:55:04 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=38fa02c8 sci-physics/atompaw: fix linking to blas Closes: https://bugs.gentoo.org/755818 Jan Macháček centrum.cz> Package-Manager: Portage-3.0.11, Repoman-3.0.2 Signed-off-by: Aisha Tammy aisha.cc> sci-physics/atompaw/atompaw-4.0.0.14.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-physics/atompaw/atompaw-4.0.0.14.ebuild b/sci-physics/atompaw/atompaw-4.0.0.14.ebuild index 1c272ace6..a1129718a 100644 --- a/sci-physics/atompaw/atompaw-4.0.0.14.ebuild +++ b/sci-physics/atompaw/atompaw-4.0.0.14.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -44,7 +44,7 @@ src_configure() { local myeconfargs=( $(use_enable libxc) --with-linalg-flavor=atlas - --with-linalg-libs="$($(tc-getPKG_CONFIG) --libs lapack)" + --with-linalg-libs="$($(tc-getPKG_CONFIG) --libs blas lapack)" --with-libxc-incs="-I/usr/include $($(tc-getPKG_CONFIG) --cflags libxc)" --with-libxc-libs="$($(tc-getPKG_CONFIG) --libs libxc)" FC="$(tc-getFC)" FCFLAGS="${FCFLAGS:- ${FFLAGS:- -O2}}"