commit: e9fb7f7e000317ee86c05e60615020416f72188b Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Fri Jul 26 15:46:58 2024 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Sun Aug 25 23:53:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9fb7f7e
net-analyzer/netdiscover: add 0.10 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/37733 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> net-analyzer/netdiscover/Manifest | 1 + net-analyzer/netdiscover/netdiscover-0.10.ebuild | 34 ++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/net-analyzer/netdiscover/Manifest b/net-analyzer/netdiscover/Manifest index a65e20bdc67f..cc541437f51d 100644 --- a/net-analyzer/netdiscover/Manifest +++ b/net-analyzer/netdiscover/Manifest @@ -1 +1,2 @@ +DIST netdiscover-0.10.tar.gz 403310 BLAKE2B 87de2dd647bb2f047cb8655a97f3b44c0d69e127bb6b67030f789e64345692c54a70ff799a866669b5cbbf174176f415057a7e642e5703dc8e5f5e9c95633dff SHA512 a04a3ecb9cb76f22edc761b1a661e6e0f5c620763ca5a059923ce2d080e0d15bc0e0861ae354efc28ba2cea09b642128d8ee022106402f82041180c22e8becc9 DIST netdiscover-0.7.tar.gz 356514 BLAKE2B de880e124d1ee52c5466cf843ad3fc7077c9a673867f117f255791da9fcc8444599bf703515ef04eaa0f3fbc8ed50951bbd6cb147b1eb18020e06d35a90ccee4 SHA512 e526c1560c4054c6a2761d392997629b301c50db2c408719e84a820f9ad206825b9a4620e6721dcdebbb5c7479cd239e85de2d0657f97015b103805e8f9c05b4 diff --git a/net-analyzer/netdiscover/netdiscover-0.10.ebuild b/net-analyzer/netdiscover/netdiscover-0.10.ebuild new file mode 100644 index 000000000000..0471f737666e --- /dev/null +++ b/net-analyzer/netdiscover/netdiscover-0.10.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools flag-o-matic + +DESCRIPTION="Active/passive address reconnaissance tool" +HOMEPAGE="https://github.com/netdiscover-scanner/netdiscover" +SRC_URI=" + https://github.com/${PN}-scanner/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz +" +S="${WORKDIR}/${P/_/-}" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86 ~amd64-linux ~x86-linux" + +DEPEND=" + >=net-libs/libpcap-0.8.3-r1 +" +RDEPEND=" + ${DEPEND} +" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + append-cflags -fcommon + default +}