blob: 234adbf762b36dac22265c0ede8ee9437671f409 (
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake systemd tmpfiles toolchain-funcs readme.gentoo-r1 optfeature
MY_DN="openvas"
DESCRIPTION="Open Vulnerability Assessment Scanner"
HOMEPAGE="https://www.greenbone.net https://github.com/greenbone/openvas-scanner/"
SRC_URI="
https://github.com/greenbone/openvas-scanner/archive/v${PV}.tar.gz -> ${P}.tar.gz
"
SLOT="0"
LICENSE="GPL-2 GPL-2+"
KEYWORDS="amd64 ~x86"
IUSE="doc snmp test"
RESTRICT="!test? ( test )"
DEPEND="
acct-user/gvm
app-crypt/gpgme:=
>=dev-db/redis-5.0.3
>=dev-libs/glib-2.42:2
>=dev-libs/libgcrypt-1.6:=
dev-libs/libgpg-error
>=dev-libs/libksba-1.0.7
dev-libs/libbsd
>=net-libs/libssh-0.6.0:=
>=dev-libs/json-glib-1.4.4
>=net-analyzer/gvm-libs-22.4
>=net-libs/gnutls-3.6.4:=
net-libs/libpcap
>=net-misc/curl-7.74.0[ssl]
snmp? ( net-analyzer/net-snmp:= )
"
RDEPEND="${DEPEND}"
BDEPEND="
>=sys-devel/bison-2.5
app-alternatives/lex
virtual/pkgconfig
doc? (
app-text/doxygen[dot]
app-text/xmltoman
app-text/htmldoc
dev-perl/CGI
dev-perl/SQL-Translator
virtual/pandoc
)
test? ( dev-libs/cgreen )
"
PATCHES=(
# See https://github.com/greenbone/openvas-scanner/pull/1611
"${FILESDIR}"/openvas-scanner-23.0.1-link-pcap.patch
)
src_prepare() {
cmake_src_prepare
# QA-Fix | Remove -Werror compiler flag
sed -i -e "s/-Werror//" "${S}"/CMakeLists.txt || die #909560
# QA-Fix | Remove !CLANG doxygen warnings for 7.0.0
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
#Remove tests that doesn't work in the network sandbox
if use test; then
sed -i 's/add_test (pcap-test pcap-test)/ /g' misc/CMakeLists.txt || die
fi
}
src_configure() {
local mycmakeargs=(
"-DLOCALSTATEDIR=${EPREFIX}/var"
"-DSYSCONFDIR=${EPREFIX}/etc"
"-DSBINDIR=${EPREFIX}/usr/bin"
"-DOPENVAS_FEED_LOCK_PATH=${EPREFIX}/var/lib/openvas/feed-update.lock"
"-DOPENVAS_RUN_DIR=/run/ospd"
"-DBUILD_WITH_NETSNMP=$(usex snmp)"
)
cmake_src_configure
}
src_compile() {
cmake_src_compile
if use doc; then
cmake_build -C "${BUILD_DIR}" doxygen-full manual
fi
cmake_build rebuild_cache
if use test; then
cmake_build tests
fi
}
src_install() {
if use doc; then
mv "${BUILD_DIR}"/doc/html "${BUILD_DIR}"/doc/html-manual || die
local HTML_DOCS=(
"${BUILD_DIR}"/doc/generated/html/.
"${BUILD_DIR}"/doc/html-manual
)
fi
cmake_src_install
insinto /etc/logrotate.d
newins "${FILESDIR}/${MY_DN}.logrotate" "${MY_DN}"
# Set proper permissions on required files/directories
keepdir /var/log/gvm
if ! use prefix; then
fowners gvm:gvm /var/log/gvm
fi
keepdir /var/lib/openvas/{gnupg,plugins}
if ! use prefix; then
fowners -R gvm:gvm /var/lib/openvas
fi
insinto /etc/openvas
newins "${FILESDIR}/openvas.conf-22" openvas.conf
systemd_newunit "${FILESDIR}/redis-openvas.service" redis-openvas.service
newtmpfiles "${FILESDIR}/redis-openvas.tmpfiles" redis-openvas.conf
insinto /etc/gvm
doins config/redis-openvas.conf
if ! use prefix; then
fowners -R gvm:gvm /etc/gvm /etc/gvm/redis-openvas.conf
fi
fperms 0750 /etc/gvm
fperms 0640 /etc/gvm/redis-openvas.conf
newconfd "${FILESDIR}/redis-openvas.confd" redis-openvas
newinitd "${FILESDIR}/redis-openvas.initd" redis-openvas
if use prefix; then
diropts -m0750
else
diropts -m0750 -o gvm -g gvm
fi
keepdir /var/lib/openvas/redis
readme.gentoo_create_doc
}
pkg_postinst() {
tmpfiles_process redis-openvas.conf
optfeature "port scanner" net-analyzer/nmap
readme.gentoo_print_elog
}
|