blob: 03151fdb55a9e4be58f4a18e49e4a36c0cadb494 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake toolchain-funcs
DESCRIPTION="Greenbone Vulnerability Management (GVM) libraries"
HOMEPAGE="https://www.greenbone.net https://github.com/greenbone/gvm-libs/"
SRC_URI="https://github.com/greenbone/gvm-libs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc ldap test radius"
RESTRICT="!test? ( test )"
DEPEND="
acct-user/gvm
>=app-crypt/gpgme-1.7.0:=
>=dev-libs/glib-2.42:2
>=dev-libs/hiredis-1.1.0:=
dev-libs/libgcrypt:=
dev-libs/libgpg-error
>=dev-libs/cJSON-1.7.14
>=dev-libs/libxml2-2.0:2=
>=net-libs/gnutls-3.2.15:=
net-libs/libnet:1.1
net-libs/libpcap
>=net-libs/libssh-0.6.0:=
>=sys-apps/util-linux-2.25.0
sys-libs/libxcrypt:=
>=virtual/zlib-1.2.8:=
net-libs/paho-mqtt-c:1.3
>=net-misc/curl-7.83.0
ldap? ( net-nds/openldap:= )
radius? ( net-dialup/freeradius-client )
"
RDEPEND="${DEPEND}"
BDEPEND="
dev-vcs/git
app-alternatives/yacc
app-alternatives/lex
virtual/pkgconfig
doc? (
app-text/doxygen[dot]
app-text/xmltoman
app-text/htmldoc
dev-perl/CGI
dev-perl/SQL-Translator
)
test? ( dev-libs/cgreen )
"
PATCHES=(
# Remove tests that don't work in the network sandbox
"${FILESDIR}/${P}-remove-unworking-tests.patch"
# Issue: https://github.com/greenbone/gvm-libs/issues/960
"${FILESDIR}/${P}-add-missing-link-to-cjson.patch"
)
pkg_setup() {
if tc-is-clang; then
local clang_major_version=$(clang-major-version);
if ! has_version "llvm-runtimes/compiler-rt-sanitizers:${clang_major_version}[profile]"; then
eerror "Compiling this package with clang requires llvm-runtimes/compiler-rt-sanitizers to be built with 'profile' USE flag enabled"
die "Clang detected, but llvm-runtimes/compiler-rt-sanitizers not build with 'profile' USE flag enabled"
fi
fi
if tc-is-gcc; then
local gcc_major_version=$(gcc-major-version);
if ! has_version "sys-devel/gcc:${gcc_major_version}[sanitize]"; then
eerror "Compiling this package with gcc requires sys-devel/gcc to be built with 'sanitize' USE flag enabled"
die "Gcc detected, but sys-devel/gcc not build with 'sanitize' USE flag enabled"
fi
fi
}
src_prepare() {
cmake_src_prepare
# QA-Fix | Remove -Werror compiler flag | Bug: #909558
sed -i -e "s/-Werror//" "${S}"/CMakeLists.txt || die
# QA-Fix | Remove doxygen warnings for !CLANG
if use doc; then
if ! tc-is-clang; then
local f
for f in doc/*.in; do
sed -i \
-e "s*CLANG_ASSISTED_PARSING = NO*#CLANG_ASSISTED_PARSING = NO*g" \
-e "s*CLANG_OPTIONS*#CLANG_OPTIONS*g" \
"${f}" || die "couldn't disable CLANG parsing"
done
fi
fi
}
src_configure() {
local mycmakeargs=(
"-DLOCALSTATEDIR=${EPREFIX}/var"
"-DSYSCONFDIR=${EPREFIX}/etc"
"-DGVM_RUN_DIR=${EPREFIX}/var/lib/gvm"
"-DBUILD_TESTS=$(usex test)"
"-DBUILD_WITH_RADIUS=$(usex radius)"
"-DBUILD_WITH_LDAP=$(usex ldap)"
)
cmake_src_configure
}
src_compile() {
cmake_src_compile
if use doc; then
cmake_build -C "${BUILD_DIR}" doc
cmake_build doc-full -C "${BUILD_DIR}" doc
fi
cmake_build rebuild_cache
if use test; then
cmake_build tests
fi
}
src_install() {
if use doc; then
local HTML_DOCS=( "${BUILD_DIR}"/doc/generated/html/. )
fi
cmake_src_install
# Set proper permissions on required files/directories
keepdir /var/lib/gvm
if ! use prefix; then
fowners -R gvm:gvm /var/lib/gvm
fi
}
|