mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
bd0fc6b05d
dnstable (0.10.1) * Check for endian.h headers. * Add sys/socket.h include. * Expunge protobuf-c references. * Correct libyajl include path. dnstable (0.10.0) * Remove dnstable_convert into a separate repo to simplify dependencies. https://github.com/farsightsec/dnstable-convert/ * Add generated man pages to source. * Document dnstable_entry_set_iszone(). * Improve dnstable_reader(3) documentation. * Add JSON output (-j option) to dnstable_lookup. * Add test cases based on dnstable_lookup. * Only encode RDATA so the hostname is at the beginning for NS, CNAME, DNAME, PTR, MX, and SRV record types. * Fix byteorder macros for macOS. Sponsored by: Farsight Security, Inc.
29 lines
601 B
Makefile
29 lines
601 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= dnstable
|
|
PORTVERSION= 0.10.1
|
|
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
|
|
|
|
LIB_DEPENDS= libmtbl.so:devel/mtbl \
|
|
libyajl.so:devel/yajl \
|
|
libwdns.so:dns/wdns
|
|
|
|
USES= gmake libtool pathfix pkgconfig
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
post-install:
|
|
.for i in 1 3 5 7
|
|
${INSTALL_MAN} ${WRKSRC}/man/*.${i} ${STAGEDIR}/${PREFIX}/man/man${i}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|