diff options
author | mat <mat@FreeBSD.org> | 2015-01-08 23:22:49 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2015-01-08 23:22:49 +0800 |
commit | 95fa63e8db69fbf9090961de626988695976bbb6 (patch) | |
tree | e44616f8d59817c786ce4aef56d68a75a26d930e /dns/bind910 | |
parent | 3a508eb105b9b62c30c21b5a6426e628812b0d66 (diff) | |
download | freebsd-ports-gnome-95fa63e8db69fbf9090961de626988695976bbb6.tar.gz freebsd-ports-gnome-95fa63e8db69fbf9090961de626988695976bbb6.tar.zst freebsd-ports-gnome-95fa63e8db69fbf9090961de626988695976bbb6.zip |
Fix a few problems bind-tools by not overwritting what's defined in it in
bind910's Makefile.
Sponsored by: Absolight
Diffstat (limited to 'dns/bind910')
-rw-r--r-- | dns/bind910/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/dns/bind910/Makefile b/dns/bind910/Makefile index e7300d8ae295..478d8695a344 100644 --- a/dns/bind910/Makefile +++ b/dns/bind910/Makefile @@ -4,7 +4,7 @@ PORTNAME= bind PORTVERSION= ${ISCVERSION:S/-P/P/} .if defined(BIND_TOOLS_SLAVE) # dns/bind-tools here -PORTREVISION= 0 +PORTREVISION= 1 .else # dns/bind910 here PORTREVISION= 1 @@ -15,7 +15,7 @@ PKGNAMESUFFIX?= 910 DISTNAME= ${PORTNAME}-${ISCVERSION} MAINTAINER= mat@FreeBSD.org -COMMENT= BIND DNS suite with updated DNSSEC and DNS64 +COMMENT?= BIND DNS suite with updated DNSSEC and DNS64 LICENSE= ISCL @@ -35,7 +35,7 @@ CPE_UPDATE= ${ISCVERSION:C/.*-//:tl} LIB_DEPENDS= libxml2.so:${PORTSDIR}/textproc/libxml2 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --localstatedir=/var --disable-linux-caps \ +CONFIGURE_ARGS+= --localstatedir=/var --disable-linux-caps \ --disable-symtable \ --with-randomdev=/dev/random \ --with-libxml2=${LOCALBASE} @@ -43,7 +43,9 @@ ETCDIR= ${PREFIX}/etc/namedb CONFLICTS+= bind9*-9.[456789].* bind9*-sdb-9.[456789].* +.if !defined(BIND_TOOLS_SLAVE) SUB_FILES= pkg-message +.endif OPTIONS_DEFAULT= IPV6 SSL THREADS SIGCHASE IDN GSSAPI_NONE OPTIONS_DEFINE= IDN LARGE_FILE GOST PYTHON \ |