From owner-svn-ports-all@FreeBSD.ORG Mon Nov 4 11:23:12 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7C79E6B0; Mon, 4 Nov 2013 11:23:12 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A6A02ED4; Mon, 4 Nov 2013 11:23:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA4BNCx8040570; Mon, 4 Nov 2013 11:23:12 GMT (envelope-from erwin@svn.freebsd.org) Received: (from erwin@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA4BNBjR040567; Mon, 4 Nov 2013 11:23:11 GMT (envelope-from erwin@svn.freebsd.org) Message-Id: <201311041123.rA4BNBjR040567@svn.freebsd.org> From: Erwin Lansing Date: Mon, 4 Nov 2013 11:23:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332693 - in head/dns: bind96 bind98 bind99 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Nov 2013 11:23:12 -0000 Author: erwin Date: Mon Nov 4 11:23:11 2013 New Revision: 332693 URL: http://svnweb.freebsd.org/changeset/ports/332693 Log: Drop support for REPLACE_BIND option after BIND was removed from base, there's nothing to replace. Modified: head/dns/bind96/Makefile head/dns/bind98/Makefile head/dns/bind99/Makefile Modified: head/dns/bind96/Makefile ============================================================================== --- head/dns/bind96/Makefile Mon Nov 4 11:20:38 2013 (r332692) +++ head/dns/bind96/Makefile Mon Nov 4 11:23:11 2013 (r332693) @@ -35,7 +35,7 @@ OPTIONS_GROUP_DLZ= DLZ_POSTGRESQL DLZ_MY SSL_DESC= Build with OpenSSL (Required for DNSSEC) LINKS_DESC= Create conf file symlinks in ${PREFIX} XML_DESC= Support for xml statistics output -REPLACE_BASE_DESC= Replace base BIND with this version +REPLACE_BASE_DESC= Replace base BIND (FreeBSD 9.x and earlier) LARGE_FILE_DESC= 64-bit file support SIGCHASE_DESC= dig/host/nslookup will do DNSSEC validation FIXED_RRSET= Enable fixed rrset ordering @@ -134,6 +134,9 @@ CONFIGURE_ARGS+= --disable-threads .endif .if ${PORT_OPTIONS:MREPLACE_BASE} +.if ${OSVERSION} >= 1000500 +IGNORE= REPLACE_BASE option not supported on this release +.endif PKGNAMESUFFIX= -base PREFIX= /usr BIND_DESTETC= /etc/namedb Modified: head/dns/bind98/Makefile ============================================================================== --- head/dns/bind98/Makefile Mon Nov 4 11:20:38 2013 (r332692) +++ head/dns/bind98/Makefile Mon Nov 4 11:23:11 2013 (r332693) @@ -35,7 +35,7 @@ OPTIONS_GROUP_DLZ= DLZ_POSTGRESQL DLZ_MY SSL_DESC= Build with OpenSSL (Required for DNSSEC) LINKS_DESC= Create conf file symlinks in ${PREFIX} XML_DESC= Support for xml statistics output -REPLACE_BASE_DESC= Replace base BIND with this version +REPLACE_BASE_DESC= Replace base BIND (FreeBSD 9.x and earlier) LARGE_FILE_DESC= 64-bit file support SIGCHASE_DESC= dig/host/nslookup will do DNSSEC validation FIXED_RRSET_DESC= Enable fixed rrset ordering @@ -161,6 +161,9 @@ CONFIGURE_ARGS+= --without-gssapi .endif .if ${PORT_OPTIONS:MREPLACE_BASE} +.if ${OSVERSION} >= 1000500 +IGNORE= REPLACE_BASE option is not supported on this release +.endif PKGNAMESUFFIX= -base PREFIX= /usr BIND_DESTETC= /etc/namedb Modified: head/dns/bind99/Makefile ============================================================================== --- head/dns/bind99/Makefile Mon Nov 4 11:20:38 2013 (r332692) +++ head/dns/bind99/Makefile Mon Nov 4 11:23:11 2013 (r332693) @@ -37,7 +37,7 @@ OPTIONS_GROUP_DLZ= DLZ_POSTGRESQL DLZ_MY .endif # BIND_TOOLS_SLAVE SSL_DESC= Build with OpenSSL (Required for DNSSEC) -REPLACE_BASE_DESC= Replace base BIND with this version +REPLACE_BASE_DESC= Replace base BIND (FreeBSD 9.x and earlier) LARGE_FILE_DESC= 64-bit file support FIXED_RRSET_DESC= Enable fixed rrset ordering SIGCHASE_DESC= dig/host/nslookup will do DNSSEC validation @@ -169,6 +169,9 @@ CONFIGURE_ARGS+= --without-gssapi .endif .if ${PORT_OPTIONS:MREPLACE_BASE} +.if ${OSVERSION} >= 1000500 +IGNORE= REPLACE_BASE option is not supported on this release +.endif PKGNAMESUFFIX= -base PREFIX= /usr BIND_DESTETC= /etc/namedb