summaryrefslogtreecommitdiff
path: root/net-analyzer/zmap/zmap-4.3.2.ebuild
blob: b38620088d216edbaa74687df1fe1d3d95bca591 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake fcaps

DESCRIPTION="Fast network scanner designed for Internet-wide network surveys"
HOMEPAGE="https://zmap.io/"
SRC_URI="https://github.com/zmap/zmap/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="cpu_flags_x86_aes"

RDEPEND="
	dev-libs/gmp:=
	dev-libs/json-c:=
	dev-libs/judy
	dev-libs/libunistring:=
	net-libs/libpcap
"
DEPEND="${RDEPEND}"
BDEPEND="
	app-alternatives/lex
	dev-util/byacc
	dev-util/gengetopt
	virtual/pkgconfig
"

FILECAPS=( cap_net_raw=ep usr/sbin/zmap )

PATCHES=(
	"${FILESDIR}"/${PN}-4.3.2-pkgconfig.patch
	# Merged. To be removed at next version.
	"${FILESDIR}"/${PN}-4.3.2-cmake.patch
)

DOCS=( AUTHORS CHANGELOG.md README.md examples )

src_configure() {
	local mycmakeargs=(
		-DENABLE_DEVELOPMENT=OFF
		-DFORCE_CONF_INSTALL=ON
		-DWITH_AES_HW=$(usex cpu_flags_x86_aes)
		# no module in ::gentoo for now
		-DWITH_NETMAP=OFF
		-DWITH_WERROR=OFF
	)

	cmake_src_configure
}