mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 10:26:28 -04:00
* 1.0.7: - nroff typo fix; was getting ---mode in output - Sync with a dnsdbq change: require API key passed in $DNSDB_API_KEY environment variable if not in the config file as APIKEY or DNSDB_API_KEY. Allow DNSDB_API_KEY in config file instead of APIKEY - sync latest dnsdbq changes to dnsdbflex: curl timeout option - Remove extra space in debug message - sync with dnsdbq Sponsored by: DomainTools LLC
29 lines
771 B
Makefile
29 lines
771 B
Makefile
PORTNAME= dnsdbflex
|
|
PORTVERSION= 1.0.7
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= dns
|
|
|
|
MAINTAINER= truckman@FreeBSD.org
|
|
COMMENT= Tool to use the DNSDB Flexible Search API extensions
|
|
WWW= https://github.com/farsightsec/dnsdbflex
|
|
|
|
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= farsightsec
|
|
|
|
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>
|