1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00
freebsd-ports/devel/folly/Makefile
Yuri Victorovich d9656d0af2 devel/folly: Update 2020.08.24.00 -> 2020.08.31.00
Reported by:	portscout
2020-09-03 09:16:01 +00:00

47 lines
1.4 KiB
Makefile

# $FreeBSD$
PORTNAME= folly
DISTVERSIONPREFIX= v
DISTVERSION= 2020.08.31.00
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org
COMMENT= C++ library developed and used at Facebook
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_i386= error: use of undeclared identifier 'DCHECK': https://github.com/facebook/folly/issues/1168
BROKEN_FreeBSD_13= clang crashes: https://bugs.llvm.org/show_bug.cgi?id=42338
LIB_DEPENDS= libboost_atomic.so:devel/boost-libs \
libdouble-conversion.so:devel/double-conversion \
libevent.so:devel/libevent \
libfmt.so:devel/libfmt \
libgflags.so:devel/gflags \
libglog.so:devel/glog \
liblz4.so:archivers/liblz4 \
libsnappy.so:archivers/snappy \
libsodium.so:security/libsodium \
libunwind.so:devel/libunwind \
libzstd.so:archivers/zstd
TEST_DEPENDS= googletest>0:devel/googletest
USES= cmake compiler:c++17-lang ssl
USE_GITHUB= yes
GH_ACCOUNT= facebook
USE_LDCONFIG= yes
CMAKE_ON= BUILD_SHARED_LIBS
CMAKE_OFF= FREEBSD_BUILD_EXAMPLES FREEBSD_FOLLY_USE_SYMBOLIZER # enabling symbolizer causes undefined symbol _r_debug, see https://github.com/facebook/folly/issues/1373
CXXFLAGS+= -fPIC
do-test:
@cd ${BUILD_WRKSRC} && \
${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DBUILD_TESTS:BOOL=ON ${CMAKE_SOURCE_PATH} && \
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test
.include <bsd.port.mk>