Index: head/devel/caf/files/patch-libcaf__io_src_io_network_ip__endpoint.cpp =================================================================== --- head/devel/caf/files/patch-libcaf__io_src_io_network_ip__endpoint.cpp (revision 528888) +++ head/devel/caf/files/patch-libcaf__io_src_io_network_ip__endpoint.cpp (nonexistent) @@ -1,10 +0,0 @@ ---- libcaf_io/src/io/network/ip_endpoint.cpp.orig 2019-12-27 13:50:38 UTC -+++ libcaf_io/src/io/network/ip_endpoint.cpp -@@ -30,6 +30,7 @@ - # include - # include - #else -+# include - # include - # include - # include Property changes on: head/devel/caf/files/patch-libcaf__io_src_io_network_ip__endpoint.cpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/caf/files/patch-libcaf__io_src_io_network_native__socket.cpp =================================================================== --- head/devel/caf/files/patch-libcaf__io_src_io_network_native__socket.cpp (revision 528888) +++ head/devel/caf/files/patch-libcaf__io_src_io_network_native__socket.cpp (nonexistent) @@ -1,10 +0,0 @@ ---- libcaf_io/src/io/network/native_socket.cpp.orig 2019-12-27 13:58:36 UTC -+++ libcaf_io/src/io/network/native_socket.cpp -@@ -47,6 +47,7 @@ - # include - # include - # include -+# include - # include - # include - # include Property changes on: head/devel/caf/files/patch-libcaf__io_src_io_network_native__socket.cpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/caf/files/patch-libcaf__io_src_io_network_default__multiplexer.cpp =================================================================== --- head/devel/caf/files/patch-libcaf__io_src_io_network_default__multiplexer.cpp (revision 528888) +++ head/devel/caf/files/patch-libcaf__io_src_io_network_default__multiplexer.cpp (nonexistent) @@ -1,15 +0,0 @@ ---- libcaf_io/src/io/network/default_multiplexer.cpp.orig 2019-12-27 13:41:05 UTC -+++ libcaf_io/src/io/network/default_multiplexer.cpp -@@ -63,11 +63,11 @@ - # include - # include - # include -+# include - # include - # include - # include - # include --# include - # include - # ifdef CAF_POLL_MULTIPLEXER - # include Property changes on: head/devel/caf/files/patch-libcaf__io_src_io_network_default__multiplexer.cpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/caf/Makefile =================================================================== --- head/devel/caf/Makefile (revision 528888) +++ head/devel/caf/Makefile (revision 528889) @@ -1,55 +1,56 @@ # Created by: vanilla@ # $FreeBSD$ PORTNAME= caf PORTVERSION= 0.17.4 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= leres@FreeBSD.org COMMENT= C++ actor framework LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake compiler:c++11-lang USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= actor-framework GH_PROJECT= ${GH_ACCOUNT} 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 +LOG_LEVEL_DEBUG_DESC= Use log level DEBUG for console output +LOG_LEVEL_ERROR_DESC= Use log level ERROR for console output +LOG_LEVEL_INFO_DESC= Use log level INFO for console output +LOG_LEVEL_TRACE_DESC= Use log level TRACE for console output +LOG_LEVEL_WARN_DESC= Use log level WARN for console output +STATIC_DESC= Additionally build static version of library +TEST_DESC= Build with unit tests TEST_TARGET= test CXXFLAGS+= -std=c++11 -Wextra -Wall -pedantic LDFLAGS+= -pthread # 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