diff options
Diffstat (limited to 'www/mod_gnutls/Makefile')
-rw-r--r-- | www/mod_gnutls/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/www/mod_gnutls/Makefile b/www/mod_gnutls/Makefile new file mode 100644 index 000000000000..c1bce5c79f01 --- /dev/null +++ b/www/mod_gnutls/Makefile @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= mod_gnutls +PORTVERSION= 0.8.2 +CATEGORIES= www security +MASTER_SITES= https://mod.gnutls.org/downloads/ +PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX} + +MAINTAINER= ports@FreeBSD.org +COMMENT= Extension for Apache httpd using GnuTLS library to provide HTTPS + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libgnutls.so:security/gnutls + +GNU_CONFIGURE= yes +USES= libtool pkgconfig tar:bzip2 +USE_APACHE= 24 + +DBDIR= ${PREFIX}/var/db/${PORTNAME} +PLIST_SUB= SED="${SED}" WWWGRP=${WWWGRP} WWWOWN=${WWWOWN} +SUB_FILES= pkg-message +SUB_LIST= DBDIR="${DBDIR}" + +CFLAGS+= -Wno-deprecated-declarations +CONFIGURE_ARGS= --with-apxs="${APXS}" + +post-install: + ${MKDIR} "${STAGEDIR}${DBDIR}" + +.include <bsd.port.mk> |