8ba58380a9
Requires newer GCC: integer.c:287: error: #pragma GCC diagnostic not allowed inside functions Approved by: mentors (implicit approval)
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= babeltrace
|
|
PORTVERSION= 1.5.7
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= pizzamig@FreeBSD.org
|
|
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
|
|
|
|
USES= autoreconf:build bison compiler:c11 gmake gnome libtool \
|
|
pathfix pkgconfig
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= efficios
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-debug-info
|
|
CONFIGURE_ENV= YACC="bison -y"
|
|
USE_GNOME= glib20
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= ChangeLog std-ext-lib.txt API.txt lttng-live.txt
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|LICENSE mit-license.txt gpl-2.0.txt||' \
|
|
${WRKSRC}/Makefile.am
|
|
@${REINPLACE_CMD} -e 's|machine\/endian|sys\/endian|' \
|
|
${WRKSRC}/include/babeltrace/endian.h
|
|
|
|
pre-configure:
|
|
(cd ${WRKSRC}; ./bootstrap )
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libbabeltrace*so.1.0.0
|
|
|
|
.include <bsd.port.mk>
|