gentoo-ebuilds/net-dns/dnscap/dnscap-2.5.0.ebuild
Nicolas PARLANT bc826224e1
net-dns/dnscap: add 2.5.0
release with bzip2 support
wire up tests
remove LICENSE file

Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr>
Part-of: https://github.com/gentoo/gentoo/pull/44445
Signed-off-by: Sam James <sam@gentoo.org>
2025-11-04 11:04:38 +00:00

60 lines
1.2 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Network capture utility designed specifically for DNS traffic"
HOMEPAGE="https://dnscap.dns-oarc.net/"
SRC_URI="https://www.dns-oarc.net/files/dnscap/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cryptopant seccomp"
RDEPEND="
app-arch/bzip2:=
app-arch/lz4:=
app-arch/xz-utils
app-arch/zstd:=
dev-libs/openssl:0=
dev-perl/YAML
net-libs/ldns:=
net-libs/libpcap
virtual/zlib:=
cryptopant? ( app-crypt/cryptopant:= )
seccomp? ( sys-libs/libseccomp )
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_prepare() {
default
# avoid automagic and building a fake plugin, cryptopant/cryptopant.c:161:
# "no cryptopANT support built in, can't encrypt IP addresses"
if ! use cryptopant; then
sed -e 's:cryptopant::' -i plugins/Makefile.am || die
fi
eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_enable seccomp)
)
econf "${myeconfargs[@]}"
}
src_test() {
emake test
}
src_install() {
default
rm "${ED}"/usr/share/doc/${PF}/LICENSE || die
find "${D}" -name '*.la' -delete || die
}