forked from Lainports/freebsd-ports
[ Henry Stern ]
* New "query timeout" feature which allows for a configurable timeout on the
execution of certain types of queries. Introduces new function
dnstable_query_set_timeout() and new result code dnstable_res_timeout
(#8).
* New "time fencing" feature which filters based on 'time_first' and
'time_last' values. Introduces new enum dnstable_filter_parameter_type and
new function dnstable_query_set_filter_parameter() (#9).
* Performance enhancement for some IP range and prefix searches (#11).
* Fix unhandled IPv4/IPv6 address overflow for IP range/prefix queries
(#14).
[ Robert Edmonds ]
* dnstable_convert: Assert vendor 'SIE' and message type 'dnsdedupe' so that
the following cast of the return value of nmsg_message_get_payload() is
safe (#10).
* Use CLOCK_MONOTONIC_COARSE rather than CLOCK_MONOTONIC_RAW for query
timeouts (#12).
* query_iter_next_ip(): Fix zero fill condition (#15).
Sponsored by: Farsight Security, Inc.
34 lines
865 B
Makefile
34 lines
865 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= dnstable
|
|
PORTVERSION= 0.9.0
|
|
CATEGORIES= dns
|
|
MASTER_SITES= FARSIGHT LOCAL/truckman/farsight
|
|
|
|
MAINTAINER= truckman@FreeBSD.org
|
|
COMMENT= Encoding format, library, and utilities for passive DNS data
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
BUILD_DEPENDS= sie-nmsg>0:${PORTSDIR}/net/sie-nmsg
|
|
LIB_DEPENDS= libmtbl.so:${PORTSDIR}/devel/mtbl \
|
|
libyajl.so:${PORTSDIR}/devel/yajl \
|
|
libwdns.so:${PORTSDIR}/dns/wdns \
|
|
libnmsg.so:${PORTSDIR}/net/nmsg
|
|
RUN_DEPENDS= sie-nmsg>0:${PORTSDIR}/net/sie-nmsg
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USES= gmake libtool pathfix pkgconfig
|
|
INSTALL_TARGET= install-strip
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/yajl
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
post-install:
|
|
.for i in 1 3 5 7
|
|
${INSTALL_MAN} ${WRKSRC}/man/*.${i} ${STAGEDIR}/${PREFIX}/man/man${i}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|