1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00
freebsd-ports/dns/dnsdbq/Makefile
Don Lewis 706c703c5b dns/dnsdbq: Upgrade to version 2.6.0
* change DCE text, per molloy@fsi.io

 * for clarity, init LCV within loop

 * "-p minimal" option outputs only the owner name or rdata, one
   per line and deduplicated; for use by shell scripts.

 * some lint fixed

 * return results must be checked

 * this branch allows a comma-separated list of rrtypes anywhere a
   single rrtype was allowed before. this will result in multiple
   parallel fetches from the API server, which reduces transaction
   latency at the expense of higher instantaneous load. the new
   functionality and documentation has been tested and reviewed by
   joe st sauver.

 * man page corrections

 * detect duplicate or overrun in rrtype sets

 * Document MAX_FETCHES variable

Add post-release patch to fix build on i386 and others.

Sponsored by:	Farsight Security, Inc.
2021-11-20 17:16:22 -08:00

28 lines
688 B
Makefile

PORTNAME= dnsdbq
PORTVERSION= 2.6.0
DISTVERSIONPREFIX= v
CATEGORIES= dns
MAINTAINER= truckman@FreeBSD.org
COMMENT= DNSDB API Client, C Version
LICENSE= APACHE20
LICENSE_FILE_APACHE20= ${WRKSRC}/Apache-2.0
LIB_DEPENDS= libjansson.so:devel/jansson \
libcurl.so:ftp/curl
USES= compiler:c11 localbase
USE_GITHUB= yes
GH_ACCOUNT= dnsdb
PORTSCOUT= limit:^[0-9]*\.[0-9]*\.[0-9]*$$
PLIST_FILES= bin/${PORTNAME} share/man/man1/${PORTNAME}.1.gz
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
${MKDIR} ${STAGEDIR}${PREFIX}/share/man/man1/
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.man ${STAGEDIR}${PREFIX}/share/man/man1/${PORTNAME}.1
.include <bsd.port.mk>