mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-31 10:46:16 +00:00
d576258263
* add positivity check for -l * avoid EPIPE from sort * catch the case where /bailiwick is specified for - * display usage errors without help text; instead, tell the user about the -h option * notice with -c is used without -A or -B * replace last remaining fgets with getline * correct and improve option-incompatibility testing * add -a for alternative server api prefixes, and -u for alternative server api syntax * remove some debugging code * remove layering violation in the 404 handling * allow error-body to span several tcp segments (writer_func calls) Sponsored by: Farsight Security, Inc.
31 lines
701 B
Makefile
31 lines
701 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= dnsdbq
|
|
PORTVERSION= 1.0.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= dns
|
|
|
|
MAINTAINER= truckman@FreeBSD.org
|
|
COMMENT= DNSDB API Client, C Version
|
|
|
|
LICENSE= APACHE20 ISCL
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_APACHE20= ${WRKSRC}/Apache-2.0
|
|
LICENSE_FILE_ISCL= ${WRKSRC}/ISC
|
|
|
|
LIB_DEPENDS= libjansson.so:devel/jansson \
|
|
libcurl.so:ftp/curl
|
|
|
|
USES= localbase
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= dnsdb
|
|
|
|
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
|
|
|
|
PLIST_FILES= bin/${PORTNAME} share/man/man1/${PORTNAME}.1
|
|
|
|
.include <bsd.port.mk>
|