From owner-svn-ports-all@FreeBSD.ORG Sun Nov 24 09:37:36 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 290BA2AC; Sun, 24 Nov 2013 09:37:36 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F228028C0; Sun, 24 Nov 2013 09:37:35 +0000 (UTC) Received: from [192.168.0.21] (unknown [130.255.26.50]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 47F8B435C7; Sun, 24 Nov 2013 03:37:17 -0600 (CST) Message-ID: <5291C8BD.3070109@marino.st> Date: Sun, 24 Nov 2013 10:37:01 +0100 From: John Marino User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130509 Thunderbird/17.0.6 MIME-Version: 1.0 To: Erwin Lansing Subject: Re: svn commit: r334593 - in head/dns: bind96 bind96/files bind98 bind98/files bind99 bind99/files References: <201311221341.rAMDfY3g002148@svn.freebsd.org> <01490d316b5dd7f01f1c843871542666@secure.marino.st> <2DEEB271-4795-4DF0-8F85-30316BA3070F@FreeBSD.org> In-Reply-To: <2DEEB271-4795-4DF0-8F85-30316BA3070F@FreeBSD.org> X-Enigmail-Version: 1.6 Content-Type: multipart/mixed; boundary="------------080705050105090900010207" Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, owner-ports-committers@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list Reply-To: marino@freebsd.org List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Nov 2013 09:37:36 -0000 This is a multi-part message in MIME format. --------------080705050105090900010207 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 11/22/2013 15:23, Erwin Lansing wrote: > > On 22 Nov 2013, at 15:18, John Marino (FreeBSD) > wrote: > >> On 2013-11-22 14:41, Erwin Lansing wrote: >>> Author: erwin Date: Fri Nov 22 13:41:34 2013 New Revision: >>> 334593 URL: http://svnweb.freebsd.org/changeset/ports/334593 >>> Log: Fix startup script. PR: 184159 [1] Submitted by: Pawel >>> Biernacki [1], Trond Endrestoel >>> (private email) Modified: >>> head/dns/bind96/Makefile head/dns/bind96/files/named >>> head/dns/bind98/Makefile head/dns/bind98/files/named >>> head/dns/bind99/Makefile head/dns/bind99/files/named >> >> Hi Erwin, > > Hi John, > >> I was hoping you would have also combined OSVERSION with OPSYS == >> FreeBSD as we talked about on IRC last week. Are you still >> planning on doing that? > > I'm still fighting off jetlag after returning from the ICANN48 > conference in Buenos Aires. Committing a working rc script was > clearly higher on my todo list, as I'm sure you'll understand. > Please send me a prefab patch for testing, that will make things > easier for me and certainly will speed things up. I do not have > anything against adding those on principle, just haven't had the time > yet, so any help is much appreciated. > > Cheers, Erwin Hi Erwin, I have attached a diff with the proposed changes covering all three ports. It's pretty straight-forward. John --------------080705050105090900010207 Content-Type: text/plain; charset=windows-1252; name="fix-bind.diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="fix-bind.diff.txt" Index: dns/bind96/Makefile =================================================================== --- dns/bind96/Makefile (revision 334713) +++ dns/bind96/Makefile (working copy) @@ -135,7 +135,7 @@ .endif .if ${PORT_OPTIONS:MREPLACE_BASE} -.if ${OSVERSION} >= 1000500 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000500 IGNORE= REPLACE_BASE option not supported on this release .endif PKGNAMESUFFIX= -base @@ -142,7 +142,7 @@ PREFIX= /usr BIND_DESTETC= /etc/namedb .else -.if ${OSVERSION} >= 1000500 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000500 BIND_DESTETC= ${PREFIX}/etc/namedb .else BIND_DESTETC= ${PREFIX}/etc @@ -153,7 +153,7 @@ --sysconfdir=${BIND_DESTETC} PLIST_SUB+= BIND_DESTETC="${BIND_DESTETC}" -.if ${OSVERSION} >= 1000500 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000500 PLIST_SUB+= NOBASE="" .else PLIST_SUB+= NOBASE="@comment " @@ -221,7 +221,7 @@ ${CP} ${WRKSRC}/CHANGES ${WRKSRC}/COPYRIGHT ${WRKSRC}/FAQ \ ${WRKSRC}/NSEC3-NOTES ${WRKSRC}/README* ${DOCSDIR}/ .endif -.if ${OSVERSION} >= 1000500 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000500 .for FILE in named named.conf ${SED} -e 's#%%PREFIX%%#${PREFIX}#g' \ -e 's#%%BIND_DESTETC%%#${BIND_DESTETC}#g' \ Index: dns/bind98/Makefile =================================================================== --- dns/bind98/Makefile (revision 334713) +++ dns/bind98/Makefile (working copy) @@ -162,7 +162,7 @@ .endif .if ${PORT_OPTIONS:MREPLACE_BASE} -.if ${OSVERSION} >= 1000500 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000500 IGNORE= REPLACE_BASE option is not supported on this release .endif PKGNAMESUFFIX= -base @@ -169,7 +169,7 @@ PREFIX= /usr BIND_DESTETC= /etc/namedb .else -.if ${OSVERSION} >= 1000500 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000500 BIND_DESTETC= ${PREFIX}/etc/namedb .else BIND_DESTETC= ${PREFIX}/etc @@ -180,7 +180,7 @@ --sysconfdir=${BIND_DESTETC} PLIST_SUB+= BIND_DESTETC="${BIND_DESTETC}" -.if ${OSVERSION} >= 1000500 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000500 PLIST_SUB+= NOBASE="" .else PLIST_SUB+= NOBASE="@comment " @@ -257,7 +257,7 @@ ${CP} ${WRKSRC}/CHANGES ${WRKSRC}/COPYRIGHT ${WRKSRC}/FAQ \ ${WRKSRC}/HISTORY ${WRKSRC}/README ${DOCSDIR}/ .endif -.if ${OSVERSION} >= 1000500 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000500 .for FILE in named named.conf ${SED} -e 's#%%PREFIX%%#${PREFIX}#g' \ -e 's#%%BIND_DESTETC%%#${BIND_DESTETC}#g' \ Index: dns/bind99/Makefile =================================================================== --- dns/bind99/Makefile (revision 334713) +++ dns/bind99/Makefile (working copy) @@ -169,7 +169,7 @@ .endif .if ${PORT_OPTIONS:MREPLACE_BASE} -.if ${OSVERSION} >= 1000500 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000500 IGNORE= REPLACE_BASE option is not supported on this release .endif PKGNAMESUFFIX= -base @@ -176,7 +176,7 @@ PREFIX= /usr BIND_DESTETC= /etc/namedb .else -.if ${OSVERSION} >= 1000500 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000500 BIND_DESTETC= ${PREFIX}/etc/namedb .else BIND_DESTETC= ${PREFIX}/etc @@ -187,7 +187,7 @@ --sysconfdir=${BIND_DESTETC} PLIST_SUB+= BIND_DESTETC="${BIND_DESTETC}" -.if ${OSVERSION} >= 1000500 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000500 PLIST_SUB+= NOBASE="" .else PLIST_SUB+= NOBASE="@comment " @@ -268,7 +268,7 @@ ${CP} ${WRKSRC}/CHANGES ${WRKSRC}/COPYRIGHT ${WRKSRC}/FAQ \ ${WRKSRC}/HISTORY ${WRKSRC}/README ${DOCSDIR}/ .endif -.if ${OSVERSION} >= 1000500 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000500 .for FILE in named named.conf ${SED} -e 's#%%PREFIX%%#${PREFIX}#g' \ -e 's#%%BIND_DESTETC%%#${BIND_DESTETC}#g' \ --------------080705050105090900010207--