openbsd-ports/net/pdnsd/Makefile
sthen 91faa22c52 Where a program with an rc script _requires_ a certain command line
parameter to daemonize, move the parameter from daemon to daemon_flags,
so that the user cannot inadvertently prevent it from daemonizing by
adjusting the flags.

Discussed with ajacoutot and schwarze, this method was suggested
by schwarze@ as a simpler alternative to my diff. ok aja@
2011-12-17 22:01:12 +00:00

41 lines
1020 B
Makefile

# $OpenBSD: Makefile,v 1.22 2011/12/17 22:01:13 sthen Exp $
COMMENT= threaded DNS daemon, optimized for caching
DISTNAME= pdnsd-1.2.8-par
PKGNAME= ${DISTNAME:S/-par//}
REVISION= 3
CATEGORIES= net
MASTER_SITES= ${HOMEPAGE}/releases/
HOMEPAGE= http://www.phys.uu.nl/~rombouts/pdnsd/
WRKDIST= ${WRKDIR}/${DISTNAME:S/-par//}
# GPLv3+
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB += c pthread
USE_GMAKE= yes
USE_GROFF= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --enable-ipv6 \
--enable-strict-rfc2181 \
--with-cachedir="/var/pdnsd" \
--with-default-id=_pdnsd \
--with-random-device=arc4random \
--with-target=BSD
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/pdnsd
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/pdnsd
${INSTALL_DATA} ${WRKSRC}/doc/txt/*.txt ${PREFIX}/share/doc/pdnsd
${INSTALL_DATA} ${WRKINST}${SYSCONFDIR}/pdnsd.conf.sample \
${PREFIX}/share/examples/pdnsd/pdnsd.conf
.include <bsd.port.mk>