diff options
author | Doug Barton <dougb@FreeBSD.org> | 2006-08-28 06:03:13 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2006-08-28 06:03:13 +0000 |
commit | f7b8b9e6a376ecf0c349bb960d3f63338d475bda (patch) | |
tree | 5dd8b87e81158687554508e441199cdb7d62eddc /dns/bind8 | |
parent | - Update to 4.0.3 (diff) |
Add OPTIONS to the rest of my ports that need them.
Add CONFLICTS to the bind* ports.
Notes
Notes:
svn path=/head/; revision=171498
Diffstat (limited to 'dns/bind8')
-rw-r--r-- | dns/bind8/Makefile | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/dns/bind8/Makefile b/dns/bind8/Makefile index 72497326f109..bf2ac2cbbca3 100644 --- a/dns/bind8/Makefile +++ b/dns/bind8/Makefile @@ -24,8 +24,15 @@ EXTRACT_ONLY= bind-src.tar.gz bind-doc.tar.gz MAINTAINER?= DougB@FreeBSD.org COMMENT= The Berkeley Internet Name Domain, an implementation of DNS -.if defined(PORT_REPLACES_BASE_BIND8_INCLUDES) -PORT_REPLACES_BASE_BIND8= yes +CONFLICTS= bind84-8.* bind9* host-* zh-bind-8.* + +OPTIONS= REPLACE_BASE "Replace base BIND with this version" off \ + REPLACE_BASE_INCLUDES "Replace includes as well as binaries" off + +.include <bsd.port.pre.mk> + +.if defined(WITH_REPLACE_BASE_INCLUDES) +WITH_REPLACE_BASE= yes INCLUDE_PATH= include PLIST_SUB+= INCLUDE_PATH=${INCLUDE_PATH} .else @@ -33,7 +40,7 @@ INCLUDE_PATH= include/bind PLIST_SUB+= INCLUDE_PATH=${INCLUDE_PATH} .endif -.if defined(PORT_REPLACES_BASE_BIND8) +.if defined(WITH_REPLACE_BASE) PKGNAMESUFFIX= -base PREFIX= /usr BIND_DESTETC= /etc/namedb @@ -80,7 +87,7 @@ post-patch: @${MV} ${WRKSRC}/port/freebsd/Makefile.set.sed \ ${WRKSRC}/port/freebsd/Makefile.set -.if defined(PORT_REPLACES_BASE_BIND8) +.if defined(WITH_REPLACE_BASE) .for dir in nslookup nsupdate @${SED} -e "s#{DESTBIN}#{DESTSBIN}#g" \ ${WRKSRC}/bin/${dir}/Makefile > ${WRKSRC}/bin/${dir}/Makefile.sed @@ -113,4 +120,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |