mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
b66056ffed
Based on the timeout of 3+ months (2018-03-23-now) on bug#226885 for net/ucarp Also, looking at the subversion log, there were timeouts on: * bug#224169 r465659 | ygy | 2018-03-26 19:51:12 * bug#224768 r459066 | swills | 2018-01-15 07:16:28 * bug#224755 r459058 | swills | 2018-01-15 06:55:08 The last approval from alexey@renatasystems.org was over a year ago: bug#218563 r438885 | lifanov | 2017-04-19 08:30:28 (devel/py-colorama)
36 lines
930 B
Makefile
36 lines
930 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= ports@FreeBSD.org
|
|
COMMENT= Small and fast DNS daemon especially for DNSBL zones
|
|
|
|
LICENSE= GPLv2
|
|
|
|
HAS_CONFIGURE= yes
|
|
USE_RC_SUBR= rbldnsd
|
|
USERS= rbldns
|
|
GROUPS= ${USERS}
|
|
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>
|