diff options
author | Bernhard Froehlich <decke@FreeBSD.org> | 2012-10-24 08:01:21 +0000 |
---|---|---|
committer | Bernhard Froehlich <decke@FreeBSD.org> | 2012-10-24 08:01:21 +0000 |
commit | 19ef8747dba9d1b3fe81fca0cd9443952b302b23 (patch) | |
tree | 6e6133d39aa18b37e0ba7b37bd2906afb79983ee /dns/maradns/Makefile | |
parent | 2f4a960db6e6c49df33d86368642377b2f0fb597 (diff) |
Notes
Diffstat (limited to 'dns/maradns/Makefile')
-rw-r--r-- | dns/maradns/Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/dns/maradns/Makefile b/dns/maradns/Makefile index 970707a0cdb2..a6d3ab1c7a55 100644 --- a/dns/maradns/Makefile +++ b/dns/maradns/Makefile @@ -1,16 +1,12 @@ -# New ports collection makefile for: maradns -# Date created: 26 May 2001 -# Whom: Anders Nordby <anders@fix.no> -# +# Created by: Anders Nordby <anders@fix.no> # $FreeBSD$ -# PORTNAME= maradns PORTVERSION= 1.4.12 CATEGORIES= dns MASTER_SITES= http://www.maradns.org/download/1.4/ -MAINTAINER= decke@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= DNS server with focus on security and simplicity LICENSE= BSD @@ -29,6 +25,8 @@ MAN1= askmara.1 getzone.1 fetchzone.1 MAN5= mararc.5 csv1.5 csv2.5 csv2_txt.5 MAN8= maradns.8 zoneserver.8 duende.8 +.include <bsd.port.options.mk> + post-patch: @${FIND} ${WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} -e \ 's|/etc/maradns|${ETCDIR}|g; s|/etc/mararc|${ETCDIR}|g' @@ -62,11 +60,11 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/doc/en/examples/example_csv2 ${ETCDIR}/example_csv2 ${MKDIR} ${ETCDIR}/logger -.ifndef(NOPORTEXAMPLES) +.if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${EXAMPLESDIR}/ ${INSTALL_DATA} ${WRKSRC}/doc/en/examples/* ${EXAMPLESDIR}/ .endif -.ifndef(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR}/en ${INSTALL_DATA} ${WRKSRC}/doc/en/*.* ${DOCSDIR}/en ${INSTALL_DATA} ${WRKSRC}/doc/en/QuickStart ${DOCSDIR}/en |