1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-07 06:40:06 +00:00
freebsd-ports/dns/dnstable/Makefile
Don Lewis d5188080a5 Update dns/dnstable port to version 0.11.0
dnstable, the encoding library with utilities for passive DNS
  data, version 0.11.0, was released. This release adds functionality
  enabling unaggregated query results, the skipping of query results,
  and date and rdata presentation options for JSON formatted entries.
  In detail:

   * Fix bug in raw rdata queries with rrtype specified.
   * Add functionality for unaggregated query results.
   * Add ability to skip query results.
   * Add options for date and rdata presentation in JSON formatted entries.
   * Treat RRTYPE "TYPE255" as an alias for "ANY", since 255 is the code
     for "ANY".

Insert a blank line into Makefile to pacify portlint.

Sponsored by:	Farsight Security, Inc.
2019-06-07 23:25:52 +00:00

30 lines
602 B
Makefile

# $FreeBSD$
PORTNAME= dnstable
PORTVERSION= 0.11.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
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>