diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-03-18 22:59:23 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-03-18 22:59:23 +0800 |
commit | 1cdff114e2974c3eff124bc9d0f4bf91ff3c0a77 (patch) | |
tree | 2c580acf6831f27130c7e76d7890a6e96d2006f7 /dns | |
parent | 4febe3babb3976f3fdbb4be3d761cf5fe90ca851 (diff) | |
download | freebsd-ports-gnome-1cdff114e2974c3eff124bc9d0f4bf91ff3c0a77.tar.gz freebsd-ports-gnome-1cdff114e2974c3eff124bc9d0f4bf91ff3c0a77.tar.zst freebsd-ports-gnome-1cdff114e2974c3eff124bc9d0f4bf91ff3c0a77.zip |
- Support staging
- New LIB_DEPENDS definition
- Use WWW: with a single space
Diffstat (limited to 'dns')
-rw-r--r-- | dns/autotrust/Makefile | 17 | ||||
-rw-r--r-- | dns/autotrust/pkg-descr | 2 |
2 files changed, 8 insertions, 11 deletions
diff --git a/dns/autotrust/Makefile b/dns/autotrust/Makefile index babff839e89a..3180e1caa768 100644 --- a/dns/autotrust/Makefile +++ b/dns/autotrust/Makefile @@ -10,20 +10,17 @@ MASTER_SITES= http://www.nlnetlabs.nl/downloads/autotrust/ 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 <bsd.port.mk> diff --git a/dns/autotrust/pkg-descr b/dns/autotrust/pkg-descr index 1ab330644759..6a1b747c43ac 100644 --- a/dns/autotrust/pkg-descr +++ b/dns/autotrust/pkg-descr @@ -2,4 +2,4 @@ Autotrust is a command line tool to automatically update your DNSSEC 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/ |