freebsd-ports/net/nmsg/Makefile
Gerald Pfeifer 15945f8122 Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.

Part II, Bump PORTREVISIONs.

PR:		192025
Tested by:	antoine (-exp runs)
Approved by:	portmgr (implicit)
2014-09-10 20:50:31 +00:00

62 lines
1.8 KiB
Makefile

# $FreeBSD$
PORTNAME= nmsg
PORTVERSION= 0.9.0
# DISTNAME= ${PORTNAME}-${PORTVERSION}
PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= https://dl.farsightsecurity.com/dist/nmsg/ \
http://dl.farsightsecurity.com/dist/nmsg/
MAINTAINER= truckman@FreeBSD.org
COMMENT= Network message encapsulation system
LICENSE= APACHE20
OPTIONS_DEFINE= DOCS EXAMPLES
OPTIONS_SUB= yes
.include <bsd.port.options.mk>
LIB_DEPENDS+= libprotobuf-c.so:${PORTSDIR}/devel/protobuf-c \
libxs.so:${PORTSDIR}/devel/libxs \
libwdns.so:${PORTSDIR}/dns/wdns
DOCBOOK_XML= ${LOCALBASE}/share/xml/docbook/4.2
DOCBOOK_XSL_NS= ${LOCALBASE}/share/doc/docbook-xsl-ns/html/docbook.css.source.html
BUILD_DEPENDS+= xsltproc:${PORTSDIR}/textproc/libxslt \
${DOCBOOK_XML}:${PORTSDIR}/textproc/docbook-xml \
${DOCBOOK_XSL_NS}:${PORTSDIR}/textproc/docbook-xsl-ns
# The version of binutils in base does not understand the crc32
# instructions used in this code on amd64. Use gcc from ports
# to get a more capable version of binutils.
.if (${OSVERSION} < 900000 && ${ARCH} == amd64)
USE_GCC= yes
.endif
ALL_TARGET= all
.if ${PORT_OPTIONS:MDOCS}
BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen
ALL_TARGET+= html-local
.endif
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
USES= gmake libtool pathfix pkgconfig
CONFIGURE_ARGS+= --with-pkgconfigdir='$${exec_prefix}/libdata/pkgconfig'
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libnmsg.so.6.0.0
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/nmsg/nmsg_msg9_base.so
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}${DOCSDIR}/html
${INSTALL_DATA} ${WRKSRC}/doc/doxygen/html/* ${STAGEDIR}${DOCSDIR}/html
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/*.c ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/*.py ${STAGEDIR}${EXAMPLESDIR}
.endif
.include <bsd.port.mk>