diff -urN comms/limesuite.orig/Makefile comms/limesuite/Makefile --- comms/limesuite.orig/Makefile 1970-01-01 01:00:00.000000000 +0100 +++ comms/limesuite/Makefile 2020-12-29 00:30:09.992847000 +0100 @@ -0,0 +1,90 @@ +# $FreeBSD$ + +PORTNAME= limesuite +DISTVERSIONPREFIX= v +DISTVERSION= 20.10.0 +PORTREVISION= 0 +CATEGORIES= comms astro hamradio + +MAINTAINER= tomek@cedro.info +COMMENT= Software Defined Radio Software Suite from Lime Microsystems + +LICENSE= APACHE20 + +BUILD_DEPENDS= gnuplot:math/gnuplot +RUN_DEPENDS= sqlite3:databases/sqlite3 + +USES= cmake +USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= myriadrf +GH_PROJECT= LimeSuite + +# DESKTOP IS LINUX ONLY. +# SPI IS LINUX ONLY. +# STREAM UNITE BROKEN UPSTREAM +CMAKE_OFF= ENABLE_DESKTOP \ + ENABLE_SPI \ + ENABLE_STREAM \ + ENABLE_STREAM_UNITE + +CMAKE_ON= ENABLE_LIBRARY \ + ENABLE_LIME_UTIL \ + ENABLE_EXAMPLES \ + ENABLE_LIMERFE \ + ENABLE_EVB7COM + +OPTIONS_DEFINE= DOCS GUI QUICKTEST OCTAVE REMOTE SOAPYSDR +OPTIONS_DEFAULT= GUI QUICKTEST SOAPYSDR +OPTIONS_UNSET= DOCS +OPTIONS_SUB= yes +QUICKTEST_DESC= Build QuickTest Self-Test suite +OCTAVE_DESC= Enable Octave integration +SOAPSDR_DESC= Enable SoapSDR integration +REMOTE_DESC= Enable remote testing operations +SOAPYSDR_DESC= Build LMS7 SoapySDR bindings + +PLIST_SUB= PORTVERSION=${PORTVERSION} + +DOCS_CMAKE_BOOL= ENABLE_API_DOXYGEN +DOCS_BUILD_DEPENDS= doxygen:devel/doxygen + +GUI_CMAKE_BOOL= ENABLE_GUI + +QUICKTEST_CMAKE_BOOL= ENABLE_QUICKTEST +QUICKTEST_LIB_DEPENDS= libfltk.so:x11-toolkits/fltk + +OCTAVE_CMAKE_BOOL= ENABLE_OCTAVE +OCTAVE_BUILD_DEPENDS= octave:math/octave +PLIST_SUB+= OCTAVE_VERSION=${OCTAVE_VERSION} + +REMOTE_CMAKE_BOOL= ENABLE_REMOTE + +SOAPYSDR_CMAKE_BOOL= ENABLE_SOAPY_LMS7 +SOAPYSDR_LIB_DEPENDS= libSoapySDR.so:misc/soapysdr + +.include + +.if ${PORT_OPTIONS:MGUI} +USES+= gl xorg +USE_GL= glu +USE_WX= 3.1 +WX_COMPS= wx:lib +.endif + +post-build: + (cd ${BUILD_WRKSRC}/bin && ${COPYTREE_BIN} . ${STAGEDIR}${PREFIX}/bin) +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) +.endif +.if ${PORT_OPTIONS:MGUI} + ${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps + ${MKDIR} ${STAGEDIR}${PREFIX}/share/applications + (cd ${WRKSRC}/Desktop && ${CP} *.png ${STAGEDIR}${PREFIX}/share/pixmaps/) + (cd ${WRKSRC}/Desktop && ${CP} lime-suite.desktop ${STAGEDIR}${PREFIX}/share/applications/) +.endif + +.include "../../math/octave/Makefile.version" +.include diff -urN comms/limesuite.orig/distinfo comms/limesuite/distinfo --- comms/limesuite.orig/distinfo 1970-01-01 01:00:00.000000000 +0100 +++ comms/limesuite/distinfo 2020-12-20 04:28:36.749195000 +0100 @@ -0,0 +1,3 @@ +TIMESTAMP = 1608434916 +SHA256 (myriadrf-LimeSuite-v20.10.0_GH0.tar.gz) = f6d79dc67cb52a5aea839d1dc00e65f85367cb2c275d77f149833d32cf79b467 +SIZE (myriadrf-LimeSuite-v20.10.0_GH0.tar.gz) = 5421065 diff -urN comms/limesuite.orig/files/patch-CMakeLists.txt comms/limesuite/files/patch-CMakeLists.txt --- comms/limesuite.orig/files/patch-CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ comms/limesuite/files/patch-CMakeLists.txt 2020-12-22 01:39:52.840775000 +0100 @@ -0,0 +1,14 @@ +--- CMakeLists.txt.orig 2020-10-29 09:52:56 UTC ++++ CMakeLists.txt +@@ -171,6 +171,11 @@ if (ENABLE_NEW_GAIN_BEHAVIOUR) + add_definitions(-DNEW_GAIN_BEHAVIOUR) + endif() + ++if (CMAKE_SYSTEM_NAME MATCHES "BSD") ++ include_directories("/usr/local/include") ++ add_definitions(-D__unix__=1) #we use this for unix detection, but clang does not define it ++endif() ++ + ######################################################################## + # rpath setup - http://www.cmake.org/Wiki/CMake_RPATH_handling + ######################################################################## diff -urN comms/limesuite.orig/files/patch-Desktop_CMakeLists.txt comms/limesuite/files/patch-Desktop_CMakeLists.txt --- comms/limesuite.orig/files/patch-Desktop_CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ comms/limesuite/files/patch-Desktop_CMakeLists.txt 2020-12-22 01:39:52.845259000 +0100 @@ -0,0 +1,19 @@ +--- Desktop/CMakeLists.txt.orig 2020-10-29 09:52:56 UTC ++++ Desktop/CMakeLists.txt +@@ -1,13 +1,13 @@ + ######################################################################## + ## Feature registration + ######################################################################## +-if(CMAKE_SYSTEM_NAME STREQUAL "Linux") +- set(LINUX TRUE) ++if(CMAKE_SYSTEM_NAME STREQUAL "Linux" OR "FreeBSD") ++ set(UNIX TRUE) + endif() + + include(FeatureSummary) + include(CMakeDependentOption) +-cmake_dependent_option(ENABLE_DESKTOP "Enable LimeSuite launcher and icons" ON "ENABLE_GUI;LINUX" OFF) ++cmake_dependent_option(ENABLE_DESKTOP "Enable LimeSuite launcher and icons" ON "ENABLE_GUI;UNIX" OFF) + add_feature_info(LimeSuiteDesktop ENABLE_DESKTOP "LimeSuite freedesktop integration") + if (NOT ENABLE_DESKTOP) + return() diff -urN comms/limesuite.orig/files/patch-src_ConnectionRemote_ConnectionRemote.cpp comms/limesuite/files/patch-src_ConnectionRemote_ConnectionRemote.cpp --- comms/limesuite.orig/files/patch-src_ConnectionRemote_ConnectionRemote.cpp 1970-01-01 01:00:00.000000000 +0100 +++ comms/limesuite/files/patch-src_ConnectionRemote_ConnectionRemote.cpp 2020-12-22 01:39:52.849732000 +0100 @@ -0,0 +1,13 @@ +--- src/ConnectionRemote/ConnectionRemote.cpp.orig 2020-10-29 09:52:56 UTC ++++ src/ConnectionRemote/ConnectionRemote.cpp +@@ -31,6 +31,10 @@ + #include + #endif // LINUX + ++#if defined(__FreeBSD__) ++#include ++#endif ++ + using namespace std; + using namespace lime; + diff -urN comms/limesuite.orig/files/patch-src_ConnectionSTREAM__UNITE_ConnectionSTREAM__UNITE.cpp comms/limesuite/files/patch-src_ConnectionSTREAM__UNITE_ConnectionSTREAM__UNITE.cpp --- comms/limesuite.orig/files/patch-src_ConnectionSTREAM__UNITE_ConnectionSTREAM__UNITE.cpp 1970-01-01 01:00:00.000000000 +0100 +++ comms/limesuite/files/patch-src_ConnectionSTREAM__UNITE_ConnectionSTREAM__UNITE.cpp 2020-12-22 01:39:52.854113000 +0100 @@ -0,0 +1,10 @@ +--- src/ConnectionSTREAM_UNITE/ConnectionSTREAM_UNITE.cpp.orig 2020-10-29 09:52:56 UTC ++++ src/ConnectionSTREAM_UNITE/ConnectionSTREAM_UNITE.cpp +@@ -5,7 +5,6 @@ + */ + + #include "ConnectionSTREAM_UNITE.h" +-#include "ErrorReporting.h" + using namespace std; + namespace lime + { diff -urN comms/limesuite.orig/files/patch-src_ConnectionSTREAM__UNITE_ConnectionSTREAM__UNITEEntry.cpp comms/limesuite/files/patch-src_ConnectionSTREAM__UNITE_ConnectionSTREAM__UNITEEntry.cpp --- comms/limesuite.orig/files/patch-src_ConnectionSTREAM__UNITE_ConnectionSTREAM__UNITEEntry.cpp 1970-01-01 01:00:00.000000000 +0100 +++ comms/limesuite/files/patch-src_ConnectionSTREAM__UNITE_ConnectionSTREAM__UNITEEntry.cpp 2020-12-22 01:39:52.858688000 +0100 @@ -0,0 +1,11 @@ +--- src/ConnectionSTREAM_UNITE/ConnectionSTREAM_UNITEEntry.cpp.orig 2020-10-29 09:52:56 UTC ++++ src/ConnectionSTREAM_UNITE/ConnectionSTREAM_UNITEEntry.cpp +@@ -16,7 +16,7 @@ static ConnectionSTREAM_UNITEEntry STREAM_UNITEEntry; + } + + ConnectionSTREAM_UNITEEntry::ConnectionSTREAM_UNITEEntry(void): +- ConnectionFX3Entry("STREAM+UNITE") ++ ConnectionFX3Entry() + { + + } diff -urN comms/limesuite.orig/files/patch-src_FPGAcontrols__wxgui_FPGAcontrols__wxgui.cpp comms/limesuite/files/patch-src_FPGAcontrols__wxgui_FPGAcontrols__wxgui.cpp --- comms/limesuite.orig/files/patch-src_FPGAcontrols__wxgui_FPGAcontrols__wxgui.cpp 1970-01-01 01:00:00.000000000 +0100 +++ comms/limesuite/files/patch-src_FPGAcontrols__wxgui_FPGAcontrols__wxgui.cpp 2020-12-22 01:39:52.863245000 +0100 @@ -0,0 +1,11 @@ +--- src/FPGAcontrols_wxgui/FPGAcontrols_wxgui.cpp.orig 2020-10-29 09:52:56 UTC ++++ src/FPGAcontrols_wxgui/FPGAcontrols_wxgui.cpp +@@ -166,7 +166,7 @@ int ReadWFM(const wxString filename, std::vector