diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2003-10-17 20:18:11 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2003-10-17 20:18:11 +0000 |
commit | 5791c1c68a4d5b0ebe2e1235a66d96cbe22a3c50 (patch) | |
tree | 1f99e7e90e04f270a42ca582b7d86535d4bd65f8 | |
parent | Per the author's website, only i386 is supported at this time. Informed (diff) |
Add dnsflood 1.08
DNS Flood Detector was developed to detect abusive usage levels
on high traffic nameservers and to enable quick response in
halting the use of one's nameserver to facilitate spam.
-rw-r--r-- | dns/Makefile | 1 | ||||
-rw-r--r-- | dns/dnsflood/Makefile | 40 | ||||
-rw-r--r-- | dns/dnsflood/distinfo | 1 | ||||
-rw-r--r-- | dns/dnsflood/pkg-descr | 5 | ||||
-rw-r--r-- | dns/dnsflood/pkg-plist | 3 |
5 files changed, 50 insertions, 0 deletions
diff --git a/dns/Makefile b/dns/Makefile index 44d928e04b7c..11d041b5a9e6 100644 --- a/dns/Makefile +++ b/dns/Makefile @@ -16,6 +16,7 @@ SUBDIR += dlint SUBDIR += dnrd SUBDIR += dns_balance + SUBDIR += dnsflood SUBDIR += dnsmasq SUBDIR += dnssecwalker SUBDIR += dnstop diff --git a/dns/dnsflood/Makefile b/dns/dnsflood/Makefile new file mode 100644 index 000000000000..e641221b0044 --- /dev/null +++ b/dns/dnsflood/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: dnsflood +# Date created: 17.10.2003 +# Whom: krion +# +# $FreeBSD$ +# + +PORTNAME= dnsflood +PORTVERSION= 1.08 +CATEGORIES= dns +MASTER_SITES= http://www.adotout.com/ +EXTRACT_SUFX= .tgz + +MAINTAINER= krion@FreeBSD.org +COMMENT= DNS flood detector + +USE_GETOPT_LONG= yes +USE_REINPLACE= yes + +WRKSRC= ${WRKDIR}/dns_flood_detector + +pre-patch: + ${CP} ${WRKSRC}/makefiles/Makefile-FreeBSD ${WRKSRC}/Makefile + +post-patch: + @${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g' \ + ${WRKSRC}/Makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/dns_flood_detector ${PREFIX}/sbin + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for i in README + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> diff --git a/dns/dnsflood/distinfo b/dns/dnsflood/distinfo new file mode 100644 index 000000000000..02377dd8e4b0 --- /dev/null +++ b/dns/dnsflood/distinfo @@ -0,0 +1 @@ +MD5 (dnsflood-1.08.tgz) = a7f80312839508eec1dbbbc0767d0001 diff --git a/dns/dnsflood/pkg-descr b/dns/dnsflood/pkg-descr new file mode 100644 index 000000000000..e9af90a2d2c6 --- /dev/null +++ b/dns/dnsflood/pkg-descr @@ -0,0 +1,5 @@ +DNS Flood Detector was developed to detect abusive usage levels +on high traffic nameservers and to enable quick response in +halting the use of one's nameserver to facilitate spam. + +WWW: http://www.adotout.com/ diff --git a/dns/dnsflood/pkg-plist b/dns/dnsflood/pkg-plist new file mode 100644 index 000000000000..4c871ae04fcb --- /dev/null +++ b/dns/dnsflood/pkg-plist @@ -0,0 +1,3 @@ +sbin/dns_flood_detector +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%@dirrm %%DOCSDIR%% |