mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
e631c689ee
* Summarize needs to never make two upstream queries * When adding O: to QPARAM_OPTS, it has to be removed from the other getopt options * Remove the strange deduplication logic that was never necy * Improve doc of relative form with explicit labels * Do not round upward for zone time durations, those are not sightings Sponsored by: Farsight Security, Inc.
31 lines
702 B
Makefile
31 lines
702 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= dnsdbq
|
|
PORTVERSION= 2.2.1
|
|
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]*$$
|
|
|
|
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.gz
|
|
|
|
.include <bsd.port.mk>
|