11e2887006
- databases/pg-gvm: update to 22.6.1 - security/gsa: update to 22.7.1 - security/gsad: update to 22.6.0 - security/gvm-libs: update to 22.7.1 - security/gvmd: update to 22.9.0 - security/openvas: update to 22.7.5 - security/py-gvm-tools: update to 23.9.0 - security/py-notus-scanner: update to 22.6.0 - security/py-ospd-openvas: update to 22.6.0 - security/py-python-gvm: update to 23.5.1
55 lines
1.7 KiB
Makefile
55 lines
1.7 KiB
Makefile
PORTNAME= openvas
|
|
DISTVERSION= 22.7.5
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= acm@FreeBSD.org
|
|
COMMENT= Open vulnerability assessment scanner
|
|
WWW= https://github.com/greenbone/openvas
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
BUILD_DEPENDS= flex:textproc/flex
|
|
LIB_DEPENDS= libgvm_base.so:security/gvm-libs \
|
|
libgcrypt.so:security/libgcrypt \
|
|
libgpg-error.so:security/libgpg-error \
|
|
libpcap.so.1:net/libpcap \
|
|
libksba.so:security/libksba \
|
|
libgpgme.so:security/gpgme \
|
|
libssh.so:security/libssh \
|
|
libgnutls.so:security/gnutls \
|
|
libnetsnmp.so:net-mgmt/net-snmp \
|
|
libjson-glib-1.0.so:devel/json-glib
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}impacket>=0:net/py-impacket@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}greenbone-feed-sync>0:security/py-greenbone-feed-sync@${PY_FLAVOR} \
|
|
redis-server:databases/redis \
|
|
snmpget:net-mgmt/net-snmp \
|
|
rsync:net/rsync \
|
|
nmap:security/nmap
|
|
|
|
USES= bison cmake gnome pkgconfig python ssl
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= greenbone
|
|
GH_PROJECT= ${PORTNAME}-scanner
|
|
USE_GNOME= glib20
|
|
|
|
CMAKE_ARGS+= -DINSTALL_OLD_SYNC_SCRIPT=OFF
|
|
|
|
USERS= gvm
|
|
GROUPS= ${USERS}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400079 || ( ${OSVERSION} >= 1302505 && ${OSVERSION} < 1400000 ))
|
|
CFLAGS+= -Wno-error=strict-prototypes -Wno-error=unused-but-set-variable -Wno-error=invalid-utf8
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|#include <bsd/unistd.h>||g' ${WRKSRC}/src/attack.c ${WRKSRC}/src/nasl_plugins.c
|
|
@${REINPLACE_CMD} -e 's|#include <bsd/unistd.h>|#include <unistd.h>|g' ${WRKSRC}//src/pluginload.c
|
|
@${REINPLACE_CMD} -e 's|vendor_version_get ()|vendor_version_get (void)|g' ${WRKSRC}/misc/vendorversion.c
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}/var/run/ospd
|
|
|
|
.include <bsd.port.post.mk>
|