05c46e1de5
converter. A plugin can be created for any trace format to allow its conversion to/from another trace format. The main format expected to be converted to/from is the Common Trace Format (CTF). The latest version of the CTF specification can be found at git://git.efficios.com/ctf.git gitweb: http://git.efficios.com/?p=ctf.git The CE Workgroup of the Linux Foundation, Ericsson, and EfficiOS have sponsored this work. WWW: http://www.efficios.com/babeltrace PR: 211574 Submitted by: luca.pizzamiglio@gmail.com
65 lines
1.7 KiB
Makefile
65 lines
1.7 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= babeltrace
|
|
PORTVERSION= 1.4.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= luca.pizzamiglio@gmail.com
|
|
COMMENT= Tool and library to read, write and convert execution traces
|
|
|
|
# license is complicated
|
|
LICENSE= MIT GPLv2 LGPL21
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_MIT= ${WRKSRC}/mit-license.txt
|
|
LICENSE_FILE_GPLv2= ${WRKSRC}/gpl-2.0.txt
|
|
LICENSE_FILE_LGPL21= ${WRKSRC}/lgpl-2.1.txt
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libpopt.so:devel/popt \
|
|
libuuid.so:misc/e2fsprogs-libuuid
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= efficios
|
|
|
|
USES= autoreconf:build bison gettext-runtime gmake libtool pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-debug-info
|
|
USE_GNOME= glib20
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= ChangeLog std-ext-lib.txt API.txt lttng-live.txt
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# FreeBSD 9.x and earlier do not have an updated flex
|
|
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000033
|
|
BUILD_DEPENDS+= flex>=2.5.35:textproc/flex
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|LICENSE mit-license.txt gpl-2.0.txt||' \
|
|
${WRKSRC}/Makefile.am
|
|
@${REINPLACE_CMD} -e 's|/pkgconfig|/../libdata/pkgconfig|' \
|
|
${WRKSRC}/Makefile.am
|
|
@${REINPLACE_CMD} -e 's|machine\/endian|sys\/endian|' \
|
|
${WRKSRC}/include/babeltrace/endian.h
|
|
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000033
|
|
@${REINPLACE_CMD} -e 's|\[FLEX\],\[flex\]|\[FLEX\],\[flex\],\[\/usr\/bin\/flex\],${LOCALBASE}/bin:${PATH}|' \
|
|
${WRKSRC}/configure.ac
|
|
.endif
|
|
|
|
pre-configure:
|
|
(cd ${WRKSRC}; ./bootstrap )
|
|
|
|
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000033
|
|
pre-build:
|
|
@${REINPLACE_CMD} -e 's|(LEX)|(FLEX)|' \
|
|
${WRKSRC}/formats/ctf/metadata/Makefile
|
|
.endif
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libbabeltrace*so.1.0.0
|
|
|
|
.include <bsd.port.post.mk>
|