mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
c716f66aa0
- use ${ETCDIR} - don't install RPM spec and debian packege spec - they are no use on FreeBSD - install example zone file with default permissions (readable to all users) there is no need to limit access to examples PR: 214426 Changes: http://www.corpit.ru/mjt/rbldnsd/NEWS Submitted by: Anton Yuzhaninov <citrin+pr@citrin.ru> Approved by: Alexey Degtyarev <alexey@renatasystems.org> (maintainer)
37 lines
971 B
Makefile
37 lines
971 B
Makefile
# Created by: Paul Chvostek <paul@it.ca>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rbldnsd
|
|
PORTVERSION= 0.998
|
|
CATEGORIES= dns
|
|
MASTER_SITES= http://www.corpit.ru/mjt/rbldnsd/ \
|
|
ftp://ftp.renatasystems.org/pub/FreeBSD/ports/distfiles/
|
|
|
|
MAINTAINER= alexey@renatasystems.org
|
|
COMMENT= Small and fast DNS daemon especially for DNSBL zones
|
|
|
|
LICENSE= GPLv2
|
|
|
|
HAS_CONFIGURE= yes
|
|
USE_RC_SUBR= rbldnsd
|
|
USERS= rbldns
|
|
GROUPS= ${USERS}
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
SUB_FILES= pkg-message
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${ETCDIR}
|
|
${INSTALL_DATA} ${FILESDIR}/example ${STAGEDIR}${ETCDIR}/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rbldnsd ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/rbldnsd.8 ${STAGEDIR}${PREFIX}/man/man8
|
|
|
|
do-install-DOCS-on:
|
|
${INSTALL} -d ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/CHANGES-0.81 ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/TODO ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/NEWS ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|