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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 49E811581F3 for ; Mon, 25 Nov 2024 21:56:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 95675E07FA; Mon, 25 Nov 2024 21:56:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3D16DE07F1 for ; Mon, 25 Nov 2024 21:56:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CF61F340BEA for ; Mon, 25 Nov 2024 21:56:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C5DB1A26 for ; Mon, 25 Nov 2024 21:56:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1732571594.18d02c7487b2e450ec468a57a2657f5dc252760b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nfdump/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/nfdump/nfdump-1.7.4.ebuild X-VCS-Directories: net-analyzer/nfdump/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 18d02c7487b2e450ec468a57a2657f5dc252760b X-VCS-Branch: master Date: Mon, 25 Nov 2024 21:56:42 +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: 7bcdb0cb-da3f-43dc-b064-c6945b7b6530 X-Archives-Hash: 880ad35b86c64c5882c74f7e45e660fe commit: 18d02c7487b2e450ec468a57a2657f5dc252760b Author: Cristian Othón Martínez Vera cfuga mx> AuthorDate: Mon Nov 25 18:30:34 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Nov 25 21:53:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18d02c74 net-analyzer/nfdump: eprexify paths for configure script Signed-off-by: Cristian Othón Martínez Vera cfuga.mx> Closes: https://github.com/gentoo/gentoo/pull/39401 Signed-off-by: Sam James gentoo.org> net-analyzer/nfdump/nfdump-1.7.4.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-analyzer/nfdump/nfdump-1.7.4.ebuild b/net-analyzer/nfdump/nfdump-1.7.4.ebuild index 9ba85b7fd6b2..ef05ba0e4b6a 100644 --- a/net-analyzer/nfdump/nfdump-1.7.4.ebuild +++ b/net-analyzer/nfdump/nfdump-1.7.4.ebuild @@ -67,7 +67,7 @@ src_configure() { # --without-ftconf is not handled well, bug #322201 local myeconfargs=( - $(usex ftconv "--enable-ftconv --with-ftpath=/usr") + $(usex ftconv "--enable-ftconv --with-ftpath=${EPREFIX}/usr") $(usex nfpcapd --enable-nfpcapd) $(usex nfprofile --enable-nfprofile) $(usex nftrack --enable-nftrack) @@ -76,7 +76,7 @@ src_configure() { $(use_enable nsel) $(use_enable readpcap) $(use_enable sflow) - $(use_with zstd "zstdpath=/usr") + $(use_with zstd "zstdpath=${EPREFIX}/usr") ) econf "${myeconfargs[@]}" }