mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
6099a49a87
PR: 202943 Submitted by: maintainer
65 lines
2.0 KiB
Makefile
65 lines
2.0 KiB
Makefile
# Created by: vanilla@
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= actor-framework
|
|
PORTVERSION= 0.14.1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= vallentin@icir.org
|
|
COMMENT= C++ actor framework
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
CXXFLAGS+= -std=c++11 -Wextra -Wall -pedantic
|
|
LDFLAGS+= -pthread
|
|
USES= cmake:outsource compiler:c++11-lang
|
|
USE_LDCONFIG= yes
|
|
USE_GITHUB= yes
|
|
BROKEN_FreeBSD_8= "undefined reference to `iswalpha_l'"
|
|
|
|
OPTIONS_DEFINE= DEBUG TEST STATIC
|
|
OPTIONS_RADIO= LOG_LEVEL
|
|
OPTIONS_RADIO_LOG_LEVEL= LOG_LEVEL_ERROR LOG_LEVEL_WARN LOG_LEVEL_INFO LOG_LEVEL_DEBUG LOG_LEVEL_TRACE
|
|
OPTIONS_DEFAULT= TEST
|
|
OPTIONS_SUB= yes
|
|
PLIST_SUB+= PORTVERSION=${PORTVERSION}
|
|
|
|
TEST_DESC= Build with unit tests
|
|
STATIC_DESC= Additionally build static version of library
|
|
LOG_LEVEL_ERROR= Use log level ERROR for console output
|
|
LOG_LEVEL_WARN= Use log level WARN for console output
|
|
LOG_LEVEL_INFO= Use log level INFO for console output
|
|
LOG_LEVEL_DEBUG= Use log level DEBUG for console output
|
|
LOG_LEVEL_TRACE= Use log level TRACE for console output
|
|
|
|
# Until we cannot automatically disentangle examples from other binaries, we do
|
|
# not support an EXAMPLES option. We also disable a few components that are
|
|
# still quite experimental.
|
|
CMAKE_ARGS+= -DCAF_NO_EXAMPLES:BOOL=yes -DCAF_NO_OPENCL:BOOL=yes
|
|
|
|
DEBUG_CMAKE_ON= -DCAF_ENABLE_RUNTIME_CHECKS:BOOL=yes
|
|
STATIC_CMAKE_ON= -DCAF_BUILD_STATIC:BOOL=yes
|
|
TEST_CMAKE_OFF= -DCAF_NO_UNIT_TESTS:BOOL=yes
|
|
LOG_LEVEL_ERROR_CMAKE_ON= -DCAF_LOG_LEVEL:STRING=0
|
|
LOG_LEVEL_WARN_CMAKE_ON= -DCAF_LOG_LEVEL:STRING=1
|
|
LOG_LEVEL_INFO_CMAKE_ON= -DCAF_LOG_LEVEL:STRING=2
|
|
LOG_LEVEL_DEBUG_CMAKE_ON= -DCAF_LOG_LEVEL:STRING=3
|
|
LOG_LEVEL_TRACE_CMAKE_ON= -DCAF_LOG_LEVEL:STRING=4
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MTEST}
|
|
regression-test: build
|
|
@cd ${BUILD_WRKSRC} && ${MAKE} test
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 1001000
|
|
# require clang & libc++
|
|
BUILD_DEPENDS+= ${LOCALBASE}/bin/clang34:${PORTSDIR}/lang/clang34 \
|
|
${LOCALBASE}/lib/c++/libstdc++.so:${PORTSDIR}/devel/libc++
|
|
CXXFLAGS+= -stdlib=libc++ -I${LOCALBASE}/include/c++/v1 -L${LOCALBASE}/lib
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|