1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

- Add OPTION (default to off) to install diagnostic tool(s)

- Do not bump PORTREVISION as this is a noop

PR:		215937
Requested by:	pi@
This commit is contained in:
Ryan Steinmetz 2017-01-10 13:34:42 +00:00
parent faef516b4c
commit 64f793fa71
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=431082

View File

@ -21,7 +21,7 @@ LIB_DEPENDS= libexpat.so:textproc/expat2 \
libldns.so:dns/ldns \
libunbound.so:dns/unbound
USES= libtool pathfix
USES= libtool pathfix ssl
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-libidn=${LOCALBASE} --docdir=${DOCSDIR} \
@ -31,8 +31,9 @@ PLIST_SUB+= PORTVERSION="${PORTVERSION}"
SUB_FILES+= pkg-message
OPTIONS_SUB= yes
OPTIONS_DEFINE= EXAMPLES DOCS LIBEV LIBUV LIBEVENT
OPTIONS_DEFINE= DOCS DIAGS EXAMPLES LIBEV LIBUV LIBEVENT
DIAGS_DESC= Build diagnostic tools
LIBEV_DESC= Build with libev extension
LIBUV_DESC= Build with libuv extension
LIBEVENT_DESC= Build with libevent extension
@ -43,6 +44,13 @@ LIBUV_LIB_DEPENDS= libuv.so:devel/libuv
LIBUV_CONFIGURE_WITH= libuv
LIBEVENT_LIB_DEPENDS= libevent.so:devel/libevent2
LIBEVENT_CONFIGURE_WITH=libevent
DIAGS_VARS= PLIST_FILES+=bin/${PORTNAME}_query
do-build-DIAGS-on:
(cd ${WRKSRC}/src/test && ${MAKE})
do-install-DIAGS-on:
(cd ${WRKSRC}/src/test && ${MAKE} DESTDIR=${STAGEDIR} install)
post-patch:
${REINPLACE_CMD} -Ee 's,^(sharedoc = ).*,\1${WRKDIR}/doc,' \
@ -51,6 +59,9 @@ post-patch:
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgetdns.so.*
post-install-DIAGS-on:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/getdns_query
post-install-EXAMPLES-on:
(cd ${WRKSRC}/spec/example && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/)