mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
46d54d9799
2.6.5: * remove RES_USEVC and RES_STAYOPEN, ignore non-TXT RRs in the answer section * add '-T qdetail' to annotate JSON results with the query that generated them (for batching) * initial cut at stsauver timeout and time display features * remove -o from set of options since it is enumerated below * Show qdetail transform in `$ ./dnsdbq -h' text * Update README - CentOS 8 steps also works for AlmaLinux & Rocky Linux 2.6.6: * add -C option to select a cookie jar file for libcurl * display millisecond-granularity timestamps in logging and debugging * Version 2.6.6, to restore sync between the tag's version and the version in globals.h 2.6.7: * fix printf format problem on machines with long tv_usec; version 2.6.7 Sponsored by: DomainTools LLC
29 lines
726 B
Makefile
29 lines
726 B
Makefile
PORTNAME= dnsdbq
|
|
PORTVERSION= 2.6.7
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= dns
|
|
|
|
MAINTAINER= truckman@FreeBSD.org
|
|
COMMENT= DNSDB API Client, C Version
|
|
WWW= https://github.com/dnsdb/dnsdbq
|
|
|
|
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>
|