In this version, libgpgme-pthread.so has been removed in favor of just using libgpgme.so as the thread-safe library. PORTREVISION has been bumped on all ports depending on security/gpgme so that any that may have linked to -lgpgme-pthread will link to -lgpgme instead. The Python module provided by security/py-gpgme has been renamed upstream from pyme3 to gpg. This removes the conflict with security/py-pyme, although security/py-gpgme is still the direct replacement of that module.
38 lines
931 B
Makefile
38 lines
931 B
Makefile
# Created by: Tomoyuki Sakurai <cherry@trombik.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= openvas-libraries
|
|
PORTVERSION= 8.0.7
|
|
PORTREVISION= 2
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://wald.intevation.org/frs/download.php/2291/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= OpenVAS libraries
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING.GPLv2
|
|
|
|
LIB_DEPENDS= libhiredis.so:databases/hiredis \
|
|
libuuid.so:misc/e2fsprogs-libuuid \
|
|
libnetsnmp.so:net-mgmt/net-snmp \
|
|
libgnutls.so:security/gnutls \
|
|
libgpgme.so:security/gpgme \
|
|
libgcrypt.so:security/libgcrypt \
|
|
libksba.so:security/libksba \
|
|
libssh.so:security/libssh
|
|
|
|
USES= bison cmake:outsource gnome pkgconfig
|
|
USE_LDCONFIG= yes
|
|
USE_GNOME= glib20
|
|
|
|
OPTIONS_DEFINE= LDAP RADIUS
|
|
OPTIONS_DEFAULT=LDAP
|
|
|
|
LDAP_CMAKE_OFF= -DBUILD_WITHOUT_LDAP=1
|
|
LDAP_USE= OPENLDAP=yes
|
|
|
|
RADIUS_CMAKE_ON=-DBUILD_WITH_RADIUS=1
|
|
RADIUS_LIB_DEPENDS= libfreeradius-client.so:net/freeradius-client
|
|
|
|
.include <bsd.port.mk>
|