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 1CED213934E for ; Tue, 27 Jul 2021 19:57:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6991FE086E; Tue, 27 Jul 2021 19:57:24 +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 51AF5E086E for ; Tue, 27 Jul 2021 19:57:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 69056342C29 for ; Tue, 27 Jul 2021 19:57:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D455C84D for ; Tue, 27 Jul 2021 19:57:20 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1627342122.19d5ef12cd48b585f2a2bc06abb5178beea9dc89.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master 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: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 19d5ef12cd48b585f2a2bc06abb5178beea9dc89 X-VCS-Branch: master Date: Tue, 27 Jul 2021 19:57:20 +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: 0ab9784b-902b-4ee3-a0ff-bb3ad833e23c X-Archives-Hash: d984fa44f23e18eec5d421f41fb90cfc commit: 19d5ef12cd48b585f2a2bc06abb5178beea9dc89 Author: Alessandro Barbieri gmail com> AuthorDate: Mon Jul 26 22:32:18 2021 +0000 Commit: Andrew Ammerlaan gentoo org> 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[@]}" }