mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
b2957fda57
* Handle corner case of NSEC3 hash field with length zero. * Preserve name case when parsing rdata strings. * Fix printing of bitmap entries for rrtypes larger than 255. Improve rrtype sorting. * Preserve character-string boundaries when formatting TXT rdata. * Add ./configure --with-coverage option to build with code coverage and make targets: clean-coverage to remove the coverage data and results and report-coverage to generate report (after running the code such as with "make check"). * Configure check for python which is used to generate some of the C code. * Lots of compiler warning cleanups. * Unit testing improvements and additional tests added. * Added library versioning API: wdns_get_version() and wdns_get_version_number() available at run-time and WDNS_LIBRARY_VERSION and WDNS_LIBRARY_VERSION_NUMBER for compile-time. Add python as a build dependency. Pet portlint (USES vs. USE ordering). Sponsored by: Farsight Security Inc.
28 lines
567 B
Makefile
28 lines
567 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= wdns
|
|
PORTVERSION= 0.10.0
|
|
CATEGORIES= dns
|
|
MASTER_SITES= FARSIGHT LOCAL/truckman/farsight
|
|
|
|
MAINTAINER= truckman@FreeBSD.org
|
|
COMMENT= Low-level DNS library
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
USES= gmake libtool pathfix pkgconfig python:build
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
INSTALL_TARGET= install-strip
|
|
TEST_TARGET= check
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
PORTEXAMPLES= *
|
|
|
|
do-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.[ch] ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|