1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/dns/pdnsd/Makefile
Ashish SHUKLA f7fabd7b2b - Switch to @sample
- Modernize vardir handling

PR:		203197
Submitted by:	amdmi3
2015-09-21 07:34:40 +00:00

44 lines
1.0 KiB
Makefile

# Created by: Roman Shterenzon <roman@xpert.com>
# $FreeBSD$
PORTNAME= pdnsd
PORTVERSION= 1.2.9a
CATEGORIES= dns ipv6
MASTER_SITES= http://members.home.nl/p.a.rombouts/pdnsd/releases/ \
http://distfiles.pirateparty.in/ashish/
DISTNAME= ${PORTNAME}-${PORTVERSION}-par
MAINTAINER= ashish@FreeBSD.org
COMMENT= Caching (permanently, writes to disk on exit) DNS proxy-server
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/COPYING
GNU_CONFIGURE= yes
USES= gmake
USE_RC_SUBR= pdnsd
CONFIGURE_ARGS= --with-cachedir=${PDNSDB} \
--disable-src-addr-disc
OPTIONS_DEFINE= IPV6 DOCS
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
PDNSDB= /var/db/pdnsd
DOCSRCDIR= ${WRKSRC}/doc
DOC_FILES= html/dl.html html/doc.html html/faq.html html/index.html
DOC_FILES+= txt/faq.txt txt/intro.txt txt/manual.txt
CFLAGS+= -pthread
IPV6_CONFIGURE_ENABLE= ipv6
post-install:
@${RM} ${STAGEDIR}${PDNSDB}/pdnsd.cache
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
@${INSTALL_DATA} ${DOC_FILES:S@^@${DOCSRCDIR}/@} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>