1b6717f8ce
- Convert to USES=execinfo PR: 197254 [1] Submitted by: lightside@gmx.com [1] Approved by: maintainer timeout
39 lines
990 B
Makefile
39 lines
990 B
Makefile
# Created by: Leo Vandewoestijne <freebsd@dns-lab.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dnscrypt-proxy
|
|
PORTVERSION= 1.4.3
|
|
CATEGORIES= dns
|
|
MASTER_SITES= http://download.dnscrypt.org/dnscrypt-proxy/ \
|
|
http://www.dns-lab.com/downloads/dnscrypt-proxy/
|
|
|
|
MAINTAINER= freebsd@dns-lab.com
|
|
COMMENT= Boost privacy and security of DNS
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libsodium.so:${PORTSDIR}/security/libsodium
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= execinfo gmake
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
USERS= _dnscrypt-proxy
|
|
|
|
PORTDOCS= AUTHORS ChangeLog INSTALL NEWS README \
|
|
README-PLUGINS.markdown README-WINDOWS.markdown \
|
|
README.markdown TECHNOTES THANKS
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/man/dnscrypt-proxy.8 ${STAGEDIR}${MAN8PREFIX}/man/man8
|
|
${INSTALL_MAN} ${WRKSRC}/man/hostip.8 ${STAGEDIR}${MAN8PREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|