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 B3F52139337 for ; Mon, 26 Jul 2021 23:28:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F28A4E0901; Mon, 26 Jul 2021 23:28:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 D829FE0901 for ; Mon, 26 Jul 2021 23:28:48 +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 AC5E1342BF5 for ; Mon, 26 Jul 2021 23:28:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6246D7AC for ; Mon, 26 Jul 2021 23:28:46 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1627342122.d731e99abfe60e51606dc5cf67193740fa659499.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/extrae/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-cluster/extrae/extrae-3.8.3-r7.ebuild sys-cluster/extrae/extrae-3.8.3-r8.ebuild X-VCS-Directories: sys-cluster/extrae/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: d731e99abfe60e51606dc5cf67193740fa659499 X-VCS-Branch: dev Date: Mon, 26 Jul 2021 23:28:46 +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: 0db5cbf5-2f8b-4556-bda0-10b3f9752a09 X-Archives-Hash: a33410d171750e90b4a52d2c07a77762 commit: d731e99abfe60e51606dc5cf67193740fa659499 Author: Alessandro Barbieri gmail com> AuthorDate: Mon Jul 26 22:25:37 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Mon Jul 26 23:28:42 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d731e99a sys-cluster/extrae: fix sionlib detection Signed-off-by: Alessandro Barbieri gmail.com> .../extrae/{extrae-3.8.3-r7.ebuild => extrae-3.8.3-r8.ebuild} | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sys-cluster/extrae/extrae-3.8.3-r7.ebuild b/sys-cluster/extrae/extrae-3.8.3-r8.ebuild similarity index 96% rename from sys-cluster/extrae/extrae-3.8.3-r7.ebuild rename to sys-cluster/extrae/extrae-3.8.3-r8.ebuild index 50f2ccc32..49144b4b8 100644 --- a/sys-cluster/extrae/extrae-3.8.3-r7.ebuild +++ b/sys-cluster/extrae/extrae-3.8.3-r8.ebuild @@ -47,7 +47,7 @@ CDEPEND=" memkind? ( dev-libs/memkind ) online? ( sys-cluster/synapse ) opencl? ( dev-util/opencl-headers ) - sionlib? ( sys-cluster/sionlib:=[-tools] ) + sionlib? ( sys-cluster/sionlib:= ) spectral? ( sci-libs/fftw sys-cluster/spectral @@ -178,6 +178,10 @@ src_configure() { else myconf+=( "--without-opencl" ) fi + if use sionlib; then + myconf+=( "--with-sionlib=${EPREFIX}/usr" ) + myconf+=( "--with-sionlib-headers=${EPREFIX}/usr/include/sionlib" ) + fi if use spectral; then myconf+=( "--with-fft=${EPREFIX}/usr" ) myconf+=( "--with-spectral=${EPREFIX}/usr" ) @@ -186,8 +190,6 @@ src_configure() { myconf+=( "--without-spectral" ) fi - use sionlib && myconf+=( "--with-sionlib=${EPREFIX}/usr" ) - econf "${myconf[@]}" }