From owner-svn-ports-head@FreeBSD.ORG Tue Mar 18 14:59:24 2014 Return-Path: Delivered-To: svn-ports-head@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 ESMTPS id 1D9353A3; Tue, 18 Mar 2014 14:59:24 +0000 (UTC) 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 E4894C95; Tue, 18 Mar 2014 14:59:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2IExN1U095452; Tue, 18 Mar 2014 14:59:23 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2IExNm7095450; Tue, 18 Mar 2014 14:59:23 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201403181459.s2IExNm7095450@svn.freebsd.org> From: Emanuel Haupt Date: Tue, 18 Mar 2014 14:59:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r348566 - head/dns/autotrust X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2014 14:59:24 -0000 Author: ehaupt Date: Tue Mar 18 14:59:23 2014 New Revision: 348566 URL: http://svnweb.freebsd.org/changeset/ports/348566 QAT: https://qat.redports.org/buildarchive/r348566/ Log: - Support staging - New LIB_DEPENDS definition - Use WWW: with a single space Modified: head/dns/autotrust/Makefile head/dns/autotrust/pkg-descr Modified: head/dns/autotrust/Makefile ============================================================================== --- head/dns/autotrust/Makefile Tue Mar 18 14:58:23 2014 (r348565) +++ head/dns/autotrust/Makefile Tue Mar 18 14:59:23 2014 (r348566) @@ -10,20 +10,17 @@ MASTER_SITES= http://www.nlnetlabs.nl/do MAINTAINER= jaap@NLnetLabs.nl COMMENT= A tool to automatically update DNSSEC trust anchors -LIB_DEPENDS+= ldns:${PORTSDIR}/dns/ldns \ - unbound:${PORTSDIR}/dns/unbound +LIB_DEPENDS+= libldns.so:${PORTSDIR}/dns/ldns \ + libunbound.so:${PORTSDIR}/dns/unbound GNU_CONFIGURE= yes CFLAGS= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -pthread -MAN8= autotrust.8 - -PLIST_FILES= sbin/autotrust \ +PLIST_FILES= sbin/autotrust man/man8/autotrust.8.gz \ etc/autotrust/autotrust.conf.sample PLIST_DIRS= etc/autotrust -NO_STAGE= yes do-patch: ${REINPLACE_CMD} \ '45s!=!\?=!; \ @@ -31,9 +28,9 @@ do-patch: ${WRKSRC}/Makefile.in do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin - ${MKDIR} ${ETCDIR} - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf.sample ${ETCDIR} - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${PREFIX}/man/man8 + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin + @${MKDIR} ${STAGEDIR}${ETCDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf.sample ${STAGEDIR}${ETCDIR} + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MANPREFIX}/man/man8 .include Modified: head/dns/autotrust/pkg-descr ============================================================================== --- head/dns/autotrust/pkg-descr Tue Mar 18 14:58:23 2014 (r348565) +++ head/dns/autotrust/pkg-descr Tue Mar 18 14:59:23 2014 (r348566) @@ -2,4 +2,4 @@ Autotrust is a command line tool to auto trust anchors. It is intended to run from a cron job and can run next to any validating resolver. It makes use of ldns and libunbound. -WWW: http://www.nlnetlabs.nl/projects/autotrust/ +WWW: http://www.nlnetlabs.nl/projects/autotrust/