blob: e783d5d8bbcf3e19a33b624509983259f826b80f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# $FreeBSD$
PORTNAME= nmsg
PORTVERSION= 0.9.0
# DISTNAME= ${PORTNAME}-${PORTVERSION}
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>
|