summaryrefslogtreecommitdiff
path: root/dev-perl/Net-Pcap/Net-Pcap-0.210.0.ebuild
blob: 3920401a5b09c00bd571972baa9a8139dc104627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DIST_AUTHOR=CORION
DIST_VERSION=0.21
DIST_EXAMPLES=( "eg/*" )
inherit perl-module

DESCRIPTION="Interface to the pcap(3) LBL packet capture library"

SLOT="0"
KEYWORDS="~alpha amd64 ppc x86"

RDEPEND="
	net-libs/libpcap
	dev-perl/IO-Interface
"
DEPEND="${RDEPEND}"

src_test() {
	if [[ ${EUID} != 0 ]]; then
		elog "Comprehensive testing of this module requires root permissions."
		elog "For details, see:"
		elog "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/${CATEGORY}/${PN}"
	fi
	perl_rm_files t/pod{,cover,spell}.t t/distchk.t t/portfs.t
	perl-module_src_test
}