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 6DE4A158069 for ; Fri, 10 Mar 2023 13:55:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1C80E085A; Fri, 10 Mar 2023 13:55:39 +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 47B90E0809 for ; Fri, 10 Mar 2023 13:55:39 +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 70894335D99 for ; Fri, 10 Mar 2023 13:55:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E80DD88F for ; Fri, 10 Mar 2023 13:55:36 +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: <1678456510.04dbfe60bb23a22b1521b632556efa81d34fa77e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fprobe/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/fprobe/fprobe-1.1-r5.ebuild net-analyzer/fprobe/fprobe-1.1-r6.ebuild X-VCS-Directories: net-analyzer/fprobe/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 04dbfe60bb23a22b1521b632556efa81d34fa77e X-VCS-Branch: master Date: Fri, 10 Mar 2023 13:55:36 +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: a2821f0e-262e-4f99-b6ed-763ef1993bbb X-Archives-Hash: 24c5decb654746058706f1629814b0f8 commit: 04dbfe60bb23a22b1521b632556efa81d34fa77e Author: Sam James gentoo org> AuthorDate: Fri Mar 10 13:39:10 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 10 13:55:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04dbfe60 net-analyzer/fprobe: fix configure w/ clang 16 Closes: https://bugs.gentoo.org/899924 Signed-off-by: Sam James gentoo.org> .../fprobe/{fprobe-1.1-r5.ebuild => fprobe-1.1-r6.ebuild} | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/net-analyzer/fprobe/fprobe-1.1-r5.ebuild b/net-analyzer/fprobe/fprobe-1.1-r6.ebuild similarity index 80% rename from net-analyzer/fprobe/fprobe-1.1-r5.ebuild rename to net-analyzer/fprobe/fprobe-1.1-r6.ebuild index 1aee1c4aa4f3..b873e1f9619b 100644 --- a/net-analyzer/fprobe/fprobe-1.1-r5.ebuild +++ b/net-analyzer/fprobe/fprobe-1.1-r6.ebuild @@ -1,10 +1,12 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit autotools + DESCRIPTION="libpcap-based tool to collect network traffic data and emit it as NetFlow flows" -HOMEPAGE="http://fprobe.sourceforge.net" +HOMEPAGE="https://fprobe.sourceforge.net" SRC_URI="mirror://sourceforge/fprobe/${P}.tar.bz2" LICENSE="GPL-2" @@ -20,6 +22,13 @@ PATCHES=( "${FILESDIR}"/fprobe-1.1-setgroups.patch ) +src_prepare() { + default + + # Clang 16, bug #899924 + eautoreconf +} + src_configure() { econf \ $(use_enable debug) \