diff options
author | wg <wg@FreeBSD.org> | 2013-08-21 20:57:50 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-08-21 20:57:50 +0800 |
commit | c0bd259bbefc89c500018553fb4f514423f8e1f1 (patch) | |
tree | ec79c6e9927035f065efc2e8ece291ea493ce9fb /dns/dnscrypt-proxy/Makefile | |
parent | 31a82a765651774d0b17bdc2bb3b39ec99ed439d (diff) | |
download | freebsd-ports-gnome-c0bd259bbefc89c500018553fb4f514423f8e1f1.tar.gz freebsd-ports-gnome-c0bd259bbefc89c500018553fb4f514423f8e1f1.tar.zst freebsd-ports-gnome-c0bd259bbefc89c500018553fb4f514423f8e1f1.zip |
dns/dnscrypt-proxy: update to 1.3.2
- Update to 1.3.2 [1]
- USES gmake
- Unmute install commands
- Add DOCS to options
- Convert to new LIB_DEPENDS format
PR: ports/180898 [1]
Submitted by: csosstudy <csosstudy gmail.com>
Approved by: maintainer (timeout)
Diffstat (limited to 'dns/dnscrypt-proxy/Makefile')
-rw-r--r-- | dns/dnscrypt-proxy/Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/dns/dnscrypt-proxy/Makefile b/dns/dnscrypt-proxy/Makefile index 6626415e0ac4..8d4021490cdc 100644 --- a/dns/dnscrypt-proxy/Makefile +++ b/dns/dnscrypt-proxy/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dnscrypt-proxy -PORTVERSION= 1.3.1 +PORTVERSION= 1.3.2 CATEGORIES= dns MASTER_SITES= http://download.dnscrypt.org/dnscrypt-proxy/ \ http://www.dns-lab.com/downloads/dnscrypt-proxy/ @@ -10,11 +10,11 @@ MASTER_SITES= http://download.dnscrypt.org/dnscrypt-proxy/ \ MAINTAINER= freebsd@dns-lab.com COMMENT= Boost privacy and security of DNS -LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo \ - sodium:${PORTSDIR}/security/libsodium +LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo \ + libsodium.so:${PORTSDIR}/security/libsodium GNU_CONFIGURE= yes -USE_GMAKE= yes +USES= gmake SUB_FILES= pkg-message @@ -26,16 +26,18 @@ PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README \ README-PLUGINS.markdown README-WINDOWS.markdown \ README.markdown TECHNOTES THANKS +OPTIONS_DEFINE= DOCS + .include <bsd.port.options.mk> pre-install: - @${INSTALL_MAN} ${WRKSRC}/man/dnscrypt-proxy.8 ${MAN8PREFIX}/man/man8/ - @${INSTALL_MAN} ${WRKSRC}/man/hostip.8 ${MAN8PREFIX}/man/man8/ + ${INSTALL_MAN} ${WRKSRC}/man/dnscrypt-proxy.8 ${MAN8PREFIX}/man/man8/ + ${INSTALL_MAN} ${WRKSRC}/man/hostip.8 ${MAN8PREFIX}/man/man8/ post-install: .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ .endif @${CAT} ${WRKDIR}/pkg-message |