b0d72c9b38
* t/: Fix format specifiers for size_t in some tests. * Add README.md. * Don't install the compiled example programs. Optionally install source code for example programs under ${EXAMPLESDIR}. Define TEST_TARGET. Sponsored by: Farsight Security, Inc.
29 lines
579 B
Makefile
29 lines
579 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= wdns
|
|
PORTVERSION= 0.9.1
|
|
CATEGORIES= dns
|
|
MASTER_SITES= FARSIGHT LOCAL/truckman/farsight
|
|
|
|
MAINTAINER= truckman@FreeBSD.org
|
|
COMMENT= Low-level DNS library
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USES= gmake libtool pathfix pkgconfig
|
|
INSTALL_TARGET= install-strip
|
|
TEST_TARGET= check
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
OPTIONS_DEFAULT= EXAMPLES
|
|
PORTEXAMPLES= *
|
|
|
|
do-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.[ch] ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|