mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
970b82e67b
* clarify dnsdb is dnsdb2 and when to use dnsdb1 (#177) * clarify relationship of -c to -A/-B, in both main text and examples (#181) * dedup the PDNS JSON presentation (lookup vs. summarize) (#180) * add -0 option to test countoff() * shelter callers of countoff() from its recursive innards; change counted->nlabel * change counted->nlabel from size_t to int * if there are no alnums, cons up a "." string, in sortable_dnsname() * gcc-11 caught an if statement that needed curly brackets * cleanups Sponsored by: Farsight Security, Inc.
28 lines
688 B
Makefile
28 lines
688 B
Makefile
PORTNAME= dnsdbq
|
|
PORTVERSION= 2.5.5
|
|
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>
|