Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Apr 2014 19:43:33 +0000 (UTC)
From:      Sergey Matveychuk <sem@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r351128 - in head/dns/unbound: . files
Message-ID:  <201404121943.s3CJhXLw009059@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sem
Date: Sat Apr 12 19:43:33 2014
New Revision: 351128
URL: http://svnweb.freebsd.org/changeset/ports/351128
QAT: https://qat.redports.org/buildarchive/r351128/

Log:
  - Really fix unbound_anchorflags
  - New LIB_DEPENDS format
  - Strip binaries

Modified:
  head/dns/unbound/Makefile
  head/dns/unbound/files/unbound.in

Modified: head/dns/unbound/Makefile
==============================================================================
--- head/dns/unbound/Makefile	Sat Apr 12 19:43:17 2014	(r351127)
+++ head/dns/unbound/Makefile	Sat Apr 12 19:43:33 2014	(r351128)
@@ -3,17 +3,17 @@
 
 PORTNAME=	unbound
 PORTVERSION=	1.4.22
-PORTREVISION=	0
+PORTREVISION=	1
 CATEGORIES=	dns
 MASTER_SITES=	http://unbound.net/downloads/
 
 MAINTAINER=	sem@FreeBSD.org
 COMMENT=	A validating, recursive, and caching DNS resolver
 
-LICENSE=	BSD
+LICENSE=	BSD4CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USE_GMAKE=	yes
+USES+=		gmake
 USE_OPENSSL=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS+=--with-ssl=${OPENSSLBASE} --with-libexpat=${LOCALBASE}
@@ -44,8 +44,11 @@ MUNIN_DESC=	Install Munin plugin
 
 .include <bsd.port.options.mk>
 
-LIB_DEPENDS+=	expat:${PORTSDIR}/textproc/expat2 \
-		ldns:${PORTSDIR}/dns/ldns
+LIB_DEPENDS+=	libexpat.so:${PORTSDIR}/textproc/expat2 \
+		libldns.so:${PORTSDIR}/dns/ldns
+
+STRIP_FILES=	.libs/libunbound.so.4 unbound-checkconf unbound \
+		unbound-control .libs/unbound-host .libs/unbound-anchor
 
 .if ${PORT_OPTIONS:MPYTHON}
 USE_PYTHON=	yes
@@ -81,10 +84,10 @@ MUNIN=		"@comment "
 .endif
 
 .if ${PORT_OPTIONS:MLIBEVENT14}
-LIB_DEPENDS+=	event-1:${PORTSDIR}/devel/libevent
+LIB_DEPENDS+=	libevent-1.4:${PORTSDIR}/devel/libevent
 CONFIGURE_ARGS+=--with-libevent=${LOCALBASE}
 .elif ${PORT_OPTIONS:MLIBEVENT20}
-LIB_DEPENDS+=	event-2:${PORTSDIR}/devel/libevent2
+LIB_DEPENDS+=	libevent-2.0.so:${PORTSDIR}/devel/libevent2
 USES+=		pkgconfig
 CONFIGURE_ARGS+=--with-libevent=${NONEXISTENT}
 CONFIGURE_ENV+=	found_libevent=yes
@@ -102,6 +105,9 @@ post-patch:
 	@${MKDIR} ${WRKSRC}/balancer
 	@${RM} ${WRKSRC}/util/configlexer.c
 
+post-build:
+	@for s in ${STRIP_FILES}; do ${STRIP_CMD} ${WRKSRC}/$$s; done
+
 post-install:
 .if ${PORT_OPTIONS:MMUNIN}
 	@${MKDIR} ${STAGEDIR}${PREFIX}/share/munin/plugins

Modified: head/dns/unbound/files/unbound.in
==============================================================================
--- head/dns/unbound/files/unbound.in	Sat Apr 12 19:43:17 2014	(r351127)
+++ head/dns/unbound/files/unbound.in	Sat Apr 12 19:43:33 2014	(r351128)
@@ -35,7 +35,11 @@ start_precmd()
 {
 	%%PREFIX%%/sbin/unbound-checkconf > /dev/null && \
 	echo -n "Obtaining a trust anchor:" && \
-	su -m unbound -c "%%PREFIX%%/sbin/unbound-anchor ${unbound_anchorflags}" && \
+	if [ "${unbound_anchorflags}T" = "T" ]; then \
+		su -m unbound -c %%PREFIX%%/sbin/unbound-anchor; \
+	else
+		su -m unbound -c "%%PREFIX%%/sbin/unbound-anchor ${unbound_anchorflags}"; \
+	fi &&
 	echo .
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404121943.s3CJhXLw009059>