summaryrefslogtreecommitdiff
blob: 2e661641aa78b90f498c3617635eb8d79f82e922 (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
31
32
33
34
35
36
37
38
39
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
inherit perl-module

DESCRIPTION="Tool for running Nmap scans and diff'ing the results"
HOMEPAGE="https://pbnj.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/pbnj/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"

DEPEND="
	dev-perl/DBD-SQLite
	dev-perl/DBI
	dev-perl/File-HomeDir
	dev-perl/File-Which
	dev-perl/Nmap-Parser
	dev-perl/Shell
	dev-perl/Text-CSV_XS
	dev-perl/XML-Twig
	dev-perl/YAML
"
RDEPEND="
	${DEPEND}
	net-analyzer/nmap
"
PATCHES=(
	"${FILESDIR}"/${PN}-2.04-ipv4_sort.patch
)

src_prepare() {
	default

	mv t/04change.t{,his-test-fails} || die
	mv t/05output.t{,his-test-fails} || die
}