svn commit: r379920 - in head/dns/ldns: . files
Mark Felder
feld at FreeBSD.org
Wed Feb 25 15:46:11 UTC 2015
On Wed, Feb 25, 2015, at 09:29, John Marino wrote:
> 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.
>
I'm not the maintainer; merely applied waiting maintainer-approved
patches. It sounds like we should open a PR to address these issues,
though.
Thanks for catching this.
More information about the svn-ports-head
mailing list