From owner-svn-ports-all@FreeBSD.ORG Wed Feb 25 15:29:35 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E4FE1D0; Wed, 25 Feb 2015 15:29:35 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 136C27D9; Wed, 25 Feb 2015 15:29:34 +0000 (UTC) Received: from [192.168.1.23] (133.Red-83-58-4.dynamicIP.rima-tde.net [83.58.4.133]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id D943743BD3; Wed, 25 Feb 2015 09:29:32 -0600 (CST) Message-ID: <54EDEA5B.7090907@marino.st> Date: Wed, 25 Feb 2015 16:29:31 +0100 From: John Marino Reply-To: marino@freebsd.org, marino@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Mark Felder , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r379920 - in head/dns/ldns: . files References: <201502251444.t1PEig7Z044705@svn.freebsd.org> <54EDE96B.2080703@marino.st> In-Reply-To: <54EDE96B.2080703@marino.st> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 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: Wed, 25 Feb 2015 15:29:35 -0000 On 2/25/2015 16:25, John Marino wrote: > On 2/25/2015 15:44, Mark Felder wrote: >> Author: feld >> Date: Wed Feb 25 14:44:41 2015 >> New Revision: 379920 >> URL: https://svnweb.freebsd.org/changeset/ports/379920 >> QAT: https://qat.redports.org/buildarchive/r379920/ >> >> Log: >> Fix issues with LibreSSL >> >> PR: 191853 >> Approved by: maintainer >> >> Added: >> head/dns/ldns/files/ >> head/dns/ldns/files/patch-drill_Makefile.in (contents, props changed) >> head/dns/ldns/files/patch-examples_Makefile.in (contents, props changed) >> head/dns/ldns/files/patch-examples_configure.ac (contents, props changed) >> head/dns/ldns/files/patch-examples_ldns-signzone.c (contents, props changed) >> Modified: >> head/dns/ldns/Makefile >> >> Modified: head/dns/ldns/Makefile >> ============================================================================== >> --- head/dns/ldns/Makefile Wed Feb 25 14:35:07 2015 (r379919) >> +++ head/dns/ldns/Makefile Wed Feb 25 14:44:41 2015 (r379920) >> @@ -3,7 +3,7 @@ >> >> PORTNAME= ldns >> PORTVERSION= 1.6.17 >> -PORTREVISION= 3 >> +PORTREVISION= 4 >> CATEGORIES= dns >> MASTER_SITES= http://www.nlnetlabs.nl/downloads/ldns/ \ >> LOCAL/ehaupt >> @@ -80,6 +80,7 @@ INSTALL_TARGET+=install-manpages >> .if ${PORT_OPTIONS:MGOST} >> . if ${OSVERSION} < 1000015 >> BUILD_DEPENDS+= openssl>=1.0:${PORTSDIR}/security/openssl >> +CONFLICTS+= libressl-* >> . endif >> .else >> NO_GOST= --disable-gost >> >> Added: head/dns/ldns/files/patch-drill_Makefile.in >> ============================================================================== >> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >> +++ head/dns/ldns/files/patch-drill_Makefile.in Wed Feb 25 14:44:41 2015 (r379920) >> @@ -0,0 +1,11 @@ >> +--- drill/Makefile.in.orig 2014-01-10 21:04:41 UTC >> ++++ drill/Makefile.in >> +@@ -98,7 +98,7 @@ doc: >> + >> + install: all >> + $(INSTALL) -d $(DESTDIR)$(bindir) >> +- $(INSTALL) drill $(DESTDIR)$(bindir)/drill >> ++ $(INSTALL) -s drill $(DESTDIR)$(bindir)/drill >> + $(INSTALL) -m 644 drill.1 $(DESTDIR)$(mandir)/man1/drill.1 >> + >> + uninstall: > > If you are patching this file anyway, should not use use > BSD_INSTALL_MAN, BSD_INSTALL_SCRIPT, BSD_INSTALL_PROGRAM instead? > To be clear, unconditionally stripping the program is not correct. BSD_INSTALL_PROGRAM will work with "WITH_DEBUG=yes", this will not. John