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 26C30139337 for ; Mon, 26 Jul 2021 23:28:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BA64E0917; Mon, 26 Jul 2021 23:28:49 +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 3276AE0917 for ; Mon, 26 Jul 2021 23:28:49 +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 C28C0342DF1 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 75640823 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.19d5ef12cd48b585f2a2bc06abb5178beea9dc89.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/otf2/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-cluster/otf2/metadata.xml sys-cluster/otf2/otf2-2.3-r1.ebuild sys-cluster/otf2/otf2-2.3.ebuild X-VCS-Directories: sys-cluster/otf2/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 19d5ef12cd48b585f2a2bc06abb5178beea9dc89 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: fe779c53-4678-4a25-93f3-c7d446c1fee6 X-Archives-Hash: 0fe01d4689d39e2485eee3a77d9ed828 commit: 19d5ef12cd48b585f2a2bc06abb5178beea9dc89 Author: Alessandro Barbieri gmail com> AuthorDate: Mon Jul 26 22:32:18 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=19d5ef12 sys-cluster/otf2: fix sionlib detection Signed-off-by: Alessandro Barbieri gmail.com> sys-cluster/otf2/metadata.xml | 2 +- sys-cluster/otf2/{otf2-2.3.ebuild => otf2-2.3-r1.ebuild} | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/sys-cluster/otf2/metadata.xml b/sys-cluster/otf2/metadata.xml index 0c04defae..2edcd3ced 100644 --- a/sys-cluster/otf2/metadata.xml +++ b/sys-cluster/otf2/metadata.xml @@ -6,6 +6,6 @@ Alessandro Barbieri - Enable sys-cluster/sionlib support + Enable sys-cluster/sionlibl support diff --git a/sys-cluster/otf2/otf2-2.3.ebuild b/sys-cluster/otf2/otf2-2.3-r1.ebuild similarity index 76% rename from sys-cluster/otf2/otf2-2.3.ebuild rename to sys-cluster/otf2/otf2-2.3-r1.ebuild index 078fda868..35a693294 100644 --- a/sys-cluster/otf2/otf2-2.3.ebuild +++ b/sys-cluster/otf2/otf2-2.3-r1.ebuild @@ -20,7 +20,7 @@ RDEPEND=" ${PYTHON_DEPS} $(python_gen_cond_dep 'dev-python/six[${PYTHON_USEDEP}]') - sionlib? ( sys-cluster/sionlib[tools] ) + sionlib? ( sys-cluster/sionlibl:= ) " DEPEND="${RDEPEND}" @@ -36,9 +36,15 @@ src_configure() { $(use_enable test backend-test-runs) $(use_enable debug) - $(use_with sionlib) ) + if use sionlib; then + myconf+=( "--with-sionlib=${EPREFIX}/usr" ) + myconf+=( "--with-sionlib-headers=${EPREFIX}/usr/include/sionlibl" ) + else + myconf+=( "--without-sionlib" ) + fi + econf "${myconf[@]}" }