1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00
freebsd-ports/dns/dnsdbq/Makefile
Don Lewis d0664ff412 dns/dnsdbq: Upgrade to version 2.6.4
* 2.6.1
  - use 'zu' format string in deduper_dump() (#196)

  - ctype.h functions require int arguments. cygwin gcc enforces this.
    Update version to 2.6.1

 * 2.6.2
  - fix three memory leaks revealed by valgrind (#202)

  - see if we can remove the need for res_rcode() by changing the error
    path (#200)

  - use strtok_r() in preference to strsep(), for consistency and
    modernity (#203)

  - based on PR 204, refactor and comment for clarity (#205)

* 2.6.3
  - replace strtok_r() by new tokstr library

  - tokstr_h was a typo, thanks to codereview.stackexchange.com for
    finding it

  - attempt to work around gcc11 structure size checks (#207)

  - tokstr regions (#208)

  - Revised fix for issue 209: "error: unknown type ssize_t; did you
    mean _ssize_t?" (#211)

  - Can now build on Apple M1 processors by following the instructions
    (#212)

  - Clarify that not all macOS M1 machines have homebrew in the new
    /opt/homebrew location

  - Document again the HTTPS_PROXY environment variable

 * 2.6.4
   - Issue 214: batch option parsing bug in tokstr library changes.
     (#215)

Sponsored by:	DomainTools
2022-09-15 15:35:56 -07:00

29 lines
726 B
Makefile

PORTNAME= dnsdbq
PORTVERSION= 2.6.4
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>