cc3c2817fe
DSC (originally developed by The Measurement Factory and now developed by DNS-OARC) is a system for collecting and exploring statistics from busy DNS servers. It uses a distributed architecture with collectors running on or near nameservers sending their data to one or more central presenters for display and archiving. Collectors use pcap to sniff network traffic. They transmit aggregated data to the presenter as XML data. dsc is configurable to allow the administrator to capture any kind of data that he or she chooses. WWW: https://www.dns-oarc.net/dsc/ PR: 226631 Submitted by: Leo Vandewoestijne <freebsd@dns.company>
28 lines
656 B
Makefile
28 lines
656 B
Makefile
# Created by: Leo Vandewoestijne <freebsd@dns.company>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dsc
|
|
PORTVERSION= 2.6.1
|
|
CATEGORIES= dns
|
|
MASTER_SITES= https://www.dns-oarc.net/files/dsc/ \
|
|
https://dns.company/files/dsc/
|
|
|
|
MAINTAINER= freebsd@dns.company
|
|
COMMENT= Tool used for collecting and exploring statistics from DNS servers
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
RUN_DEPENDS= libpcap>=1.8.1:net/libpcap \
|
|
GeoIP>=1.6.12:net/GeoIP \
|
|
p5-Proc-PID-File>=1.28:devel/p5-Proc-PID-File \
|
|
p5-XML-Simple>=2.24:textproc/p5-XML-Simple \
|
|
dsp>=2.0.0:dns/dsp
|
|
|
|
BUILD_DEPENDS:= ${RUN_DEPENDS}
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake perl5 shebangfix
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
.include <bsd.port.mk>
|