Diff gvm-21.4 with a gvm-22.4

/usr/portage/net-analyzer/gvm/gvm-22.4.ebuild 2023-10-09 14:52:33.316368447 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
inherit optfeature
6
inherit optfeature systemd
7 7

  
8 8
DESCRIPTION="Greenbone Vulnerability Management, previously named OpenVAS"
9 9
HOMEPAGE="https://www.greenbone.net"
......
11 11
SLOT="0"
12 12
LICENSE="AGPL-3+"
13 13
KEYWORDS="~amd64 ~x86"
14
IUSE="cli doc +gsa ldap ospd radius"
14
IUSE="cli doc +gsa ldap ospd snmp radius"
15 15

  
16 16
RDEPEND="
17 17
	>=net-analyzer/gvm-libs-${PV}[doc?,ldap?,radius?]
18 18
	>=net-analyzer/gvmd-${PV}[doc?]
19
	>=net-analyzer/openvas-scanner-${PV}[doc?]
19
	>=net-analyzer/openvas-scanner-${PV}[doc?,snmp?]
20
	>=net-analyzer/greenbone-feed-sync-23.6.0
20 21
	cli? ( >=net-analyzer/gvm-tools-21.10.0 )
21 22
	gsa? ( >=net-analyzer/gsad-${PV}[doc?] )
22 23
	ospd? ( >=net-analyzer/ospd-openvas-${PV}[doc?] )
23 24
"
24 25

  
26
src_unpack() {
27
	mkdir "${WORKDIR}/${P}"
28
}
29

  
30
src_install() {
31
	systemd_dounit "${FILESDIR}/${PN}.target"
32
	newinitd "${FILESDIR}/${PN}.init" "${PN}"
33
}
34

  
25 35
pkg_postinst() {
26 36
	optfeature "web server scanning and testing tool" net-analyzer/nikto
27
	optfeature "port scanner" net-analyzer/nmap
28 37
	optfeature "IPsec VPN scanning, fingerprinting and testing tool" net-analyzer/ike-scan
29
	optfeature "OVALdi — an OVAL Interpreter" app-forensics/ovaldi
38
	optfeature "port scanner" net-analyzer/nmap
39
	optfeature "create results from local security checks" net-analyzer/notus-scanner
30 40
}
Thank you!