1.1.0: * Multiple performance improvements to JSON formatting. * Multiple performance and concurrency improvements in nmsg_io loop. * Add new dnsobs message type for raw passive DNS observations. * Format DNS messages as JSON in base:dnsqr, base:dnstap, and base:dnsobs. * Format base:encode payload in human readable form in JSON output. * Replace yajl with json-c for JSON parsing. * nmsgtool: exit with nonzero status when interrupted by signal. * Correct container size calculation when sequencing. * Address doxygen deprecations. Build fails with JSON_C option turned off, mark BROKEN. Reported upstream. Bump PORTREVISION of dependent ports MFH: 2023Q3 Sponsored by: DomainTools LLC
32 lines
867 B
Makefile
32 lines
867 B
Makefile
PORTNAME= dnstable-convert
|
|
PORTVERSION= 0.12.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= dns
|
|
MASTER_SITES= FARSIGHT LOCAL/truckman/farsight
|
|
|
|
MAINTAINER= truckman@FreeBSD.org
|
|
COMMENT= Conversion utility for passive DNS data in dnstable format
|
|
WWW= https://github.com/farsightsec/dnstable-convert
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
BUILD_DEPENDS= sie-nmsg>0:net/sie-nmsg
|
|
LIB_DEPENDS= libdnstable.so:dns/dnstable \
|
|
libmtbl.so:devel/mtbl \
|
|
libnmsg.so:net/nmsg \
|
|
libwdns.so:dns/wdns
|
|
RUN_DEPENDS= sie-nmsg>0:net/sie-nmsg
|
|
|
|
USES= gmake libtool pathfix pkgconfig
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
PLIST_FILES= bin/dnstable_convert bin/dnstable_unconvert \
|
|
man/man1/dnstable_convert.1.gz \
|
|
man/man1/dnstable_unconvert.1.gz
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/man/*.1 ${STAGEDIR}/${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|