mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
33 lines
761 B
Makefile
33 lines
761 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= mod_gnutls
|
|
PORTVERSION= 0.8.4
|
|
PORTREVISION= 2
|
|
CATEGORIES= www security
|
|
MASTER_SITES= https://mod.gnutls.org/downloads/
|
|
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= joneum@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= apache:2.4 compiler:c++11-lang libtool pkgconfig tar:bzip2
|
|
|
|
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>
|