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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 44385158094 for ; Fri, 2 Sep 2022 09:24:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38981E095C; Fri, 2 Sep 2022 09:24:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2005AE095C for ; Fri, 2 Sep 2022 09:24:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F10A534107B for ; Fri, 2 Sep 2022 09:24:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64DF5574 for ; Fri, 2 Sep 2022 09:24:47 +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: <1662110647.6fd0e1971a4a01a866f4a0d8101d21f08469f09d.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-physics/rivet/ X-VCS-Repository: proj/sci X-VCS-Files: sci-physics/rivet/rivet-3.1.5.ebuild sci-physics/rivet/rivet-3.1.6.ebuild X-VCS-Directories: sci-physics/rivet/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 6fd0e1971a4a01a866f4a0d8101d21f08469f09d X-VCS-Branch: master Date: Fri, 2 Sep 2022 09:24:47 +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: d15d10b5-1000-4373-9c31-e4320fce9ee4 X-Archives-Hash: feeedf0359a47ee296ee2b721becd0fb commit: 6fd0e1971a4a01a866f4a0d8101d21f08469f09d Author: Alexander Puck Neuwirth neuwirth-informatik de> AuthorDate: Fri Sep 2 04:29:50 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri Sep 2 09:24:07 2022 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6fd0e197 sci-physics/rivet: ESYSROOT and bracketed vars Signed-off-by: Alexander Puck Neuwirth neuwirth-informatik.de> Closes: https://github.com/gentoo/sci/pull/1170 Signed-off-by: Andrew Ammerlaan gentoo.org> sci-physics/rivet/rivet-3.1.5.ebuild | 8 ++++---- sci-physics/rivet/rivet-3.1.6.ebuild | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sci-physics/rivet/rivet-3.1.5.ebuild b/sci-physics/rivet/rivet-3.1.5.ebuild index 5470ea5a7..4cc7c6018 100644 --- a/sci-physics/rivet/rivet-3.1.5.ebuild +++ b/sci-physics/rivet/rivet-3.1.5.ebuild @@ -62,10 +62,10 @@ src_configure() { PREFIX_YODA=$(yoda-config --prefix) || die PREFIX_FJ=$(fastjet-config --prefix) || die econf \ - $(usex hepmc2 "--with-hepmc=/usr" "") \ - $(usex hepmc3 "--with-hepmc3=/usr" "") \ - --with-yoda=$PREFIX_YODA \ - --with-fastjet=$PREFIX_FJ + $(usex hepmc2 "--with-hepmc=${ESYSROOT}/usr" "") \ + $(usex hepmc3 "--with-hepmc3=${ESYSROOT}/usr" "") \ + --with-yoda=${PREFIX_YODA} \ + --with-fastjet=${PREFIX_FJ} } src_install() { diff --git a/sci-physics/rivet/rivet-3.1.6.ebuild b/sci-physics/rivet/rivet-3.1.6.ebuild index 89a2a09ba..3a83f7136 100644 --- a/sci-physics/rivet/rivet-3.1.6.ebuild +++ b/sci-physics/rivet/rivet-3.1.6.ebuild @@ -62,10 +62,10 @@ src_configure() { PREFIX_YODA=$(yoda-config --prefix) || die PREFIX_FJ=$(fastjet-config --prefix) || die econf \ - $(usex hepmc2 "--with-hepmc=/usr" "") \ - $(usex hepmc3 "--with-hepmc3=/usr" "") \ - --with-yoda=$PREFIX_YODA \ - --with-fastjet=$PREFIX_FJ + $(usex hepmc2 "--with-hepmc=${ESYSROOT}/usr" "") \ + $(usex hepmc3 "--with-hepmc3=${ESYSROOT}/usr" "") \ + --with-yoda=${PREFIX_YODA} \ + --with-fastjet=${PREFIX_FJ} } src_install() {