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 C41D5158020 for ; Tue, 29 Nov 2022 00:00:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA575E0843; Tue, 29 Nov 2022 00:00:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 C66ADE0843 for ; Tue, 29 Nov 2022 00:00:01 +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 A4DE8340E92 for ; Tue, 29 Nov 2022 00:00:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2193275 for ; Mon, 28 Nov 2022 23:59:59 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1669679974.d7b3bf2ee1c173f694d93bf46155576349fbcf4c.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/synscan/, net-analyzer/synscan/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/synscan/files/synscan-5.02-lld.patch net-analyzer/synscan/synscan-5.02.ebuild X-VCS-Directories: net-analyzer/synscan/files/ net-analyzer/synscan/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: d7b3bf2ee1c173f694d93bf46155576349fbcf4c X-VCS-Branch: master Date: Mon, 28 Nov 2022 23:59:59 +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: f2e2eded-714a-402a-a0aa-0a7dbc24b222 X-Archives-Hash: 57bb1d51c7196e81af1a08606d312f60 commit: d7b3bf2ee1c173f694d93bf46155576349fbcf4c Author: Ionen Wolkens gentoo org> AuthorDate: Mon Nov 28 23:44:53 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Mon Nov 28 23:59:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7b3bf2e net-analyzer/synscan: EAPI7->8, fix w/ lld Closes: https://bugs.gentoo.org/875017 Signed-off-by: Ionen Wolkens gentoo.org> net-analyzer/synscan/files/synscan-5.02-lld.patch | 9 +++++++++ net-analyzer/synscan/synscan-5.02.ebuild | 10 +++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/net-analyzer/synscan/files/synscan-5.02-lld.patch b/net-analyzer/synscan/files/synscan-5.02-lld.patch new file mode 100644 index 000000000000..612e91599984 --- /dev/null +++ b/net-analyzer/synscan/files/synscan-5.02-lld.patch @@ -0,0 +1,9 @@ +lld does not ignore erroneous libdirs (ideally should use pkg-config) +https://bugs.gentoo.org/875017 +--- a/configure.in ++++ b/configure.in +@@ -60,3 +60,3 @@ + CFLAGS="$CFLAGS -I${prefix}/include" +- LIBS="$LIBS -L${prefix}/lib -lpcap" ++ LIBS="$LIBS -lpcap" + elif test -f /usr/include/pcap/pcap.h; then diff --git a/net-analyzer/synscan/synscan-5.02.ebuild b/net-analyzer/synscan/synscan-5.02.ebuild index d8b2dba2efc9..5d38f8710526 100644 --- a/net-analyzer/synscan/synscan-5.02.ebuild +++ b/net-analyzer/synscan/synscan-5.02.ebuild @@ -1,15 +1,15 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools -DESCRIPTION="A fast asynchronous half-open TCP portscanner" +DESCRIPTION="Fast asynchronous half-open TCP portscanner" HOMEPAGE="http://www.digit-labs.org/files/tools/synscan/" -SRC_URI="http://www.digit-labs.org/files/tools/${PN}/releases/${P}.tar.gz" +SRC_URI="http://www.digit-labs.org/files/tools/synscan/releases/${P}.tar.gz" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="amd64 x86 ~x64-macos" @@ -18,12 +18,12 @@ DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${P}-destdir.patch + "${FILESDIR}"/${P}-lld.patch ) src_prepare() { default - mv configure.{in,ac} || die eautoreconf }