summaryrefslogtreecommitdiff
path: root/comms/hackrf-devel/files
diff options
context:
space:
mode:
authorMichael Reifenberger <mr@FreeBSD.org>2021-01-24 23:12:47 +0000
committerMichael Reifenberger <mr@FreeBSD.org>2021-01-24 23:12:47 +0000
commit5e93e43928adb39e2ca7423f7869c9512bdd944d (patch)
tree9fcf36c633e768783022e0e6303aac7be877622a /comms/hackrf-devel/files
parentdevel/aphpunit: Upgrade from 1.9 to 2.0 (diff)
Readd hackrf-devel with missing files.
make index builds for me now. Copy hackrf to hackrf-devel and update to a current snapshot of hackrf
Diffstat (limited to 'comms/hackrf-devel/files')
-rw-r--r--comms/hackrf-devel/files/newVersion.sh22
-rw-r--r--comms/hackrf-devel/files/patch-host_hackrf-tools_CMakeLists.txt11
-rw-r--r--comms/hackrf-devel/files/patch-host_libhackrf_CMakeLists.txt11
3 files changed, 44 insertions, 0 deletions
diff --git a/comms/hackrf-devel/files/newVersion.sh b/comms/hackrf-devel/files/newVersion.sh
new file mode 100644
index 000000000000..f5fda28da77b
--- /dev/null
+++ b/comms/hackrf-devel/files/newVersion.sh
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+CURDIR=`pwd`
+WRKDIR=`pwd`/work
+#mkdir -p "${WRKDIR}"
+
+if [ \! -d "${CURDIR}/kicad-repo" ]; then
+ git clone https://github.com/mossmann/hackrf.git -b master "${CURDIR}/hackrf-repo";
+else
+ cd "${CURDIR}/hackrf-repo"
+ git pull https://github.com/mossmann/hackrf.git;
+fi
+
+cd "${CURDIR}/hackrf-repo"
+GIT_SRC_HASH=`git log -n 1 --pretty=format:"%H"`;
+GIT_SRC_DATE=`git log -n 1 --date=iso-local -n 1 --pretty=format:"%cd" | \
+ cut -c '1-10' | sed -e 's,-,.,g' `
+
+echo "$GIT_SRC_HASH, $GIT_SRC_DATE"
+echo "GIT_SRC_HASH= ${GIT_SRC_HASH}" > ${CURDIR}/Makefile.git_rev
+echo "GIT_SRC_DATE= ${GIT_SRC_DATE}" >> ${CURDIR}/Makefile.git_rev
+
diff --git a/comms/hackrf-devel/files/patch-host_hackrf-tools_CMakeLists.txt b/comms/hackrf-devel/files/patch-host_hackrf-tools_CMakeLists.txt
new file mode 100644
index 000000000000..74a62fe9f785
--- /dev/null
+++ b/comms/hackrf-devel/files/patch-host_hackrf-tools_CMakeLists.txt
@@ -0,0 +1,11 @@
+--- host/hackrf-tools/CMakeLists.txt.orig 2020-10-13 21:46:30 UTC
++++ host/hackrf-tools/CMakeLists.txt
+@@ -33,7 +33,7 @@ include_directories(getopt)
+ add_definitions(/D _CRT_SECURE_NO_WARNINGS)
+ else()
+ add_definitions(-Wall)
+-set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu90")
++set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
+ endif()
+
+ if(NOT libhackrf_SOURCE_DIR)
diff --git a/comms/hackrf-devel/files/patch-host_libhackrf_CMakeLists.txt b/comms/hackrf-devel/files/patch-host_libhackrf_CMakeLists.txt
new file mode 100644
index 000000000000..e5e5e4b3d782
--- /dev/null
+++ b/comms/hackrf-devel/files/patch-host_libhackrf_CMakeLists.txt
@@ -0,0 +1,11 @@
+--- host/libhackrf/CMakeLists.txt.orig 2020-10-13 21:46:30 UTC
++++ host/libhackrf/CMakeLists.txt
+@@ -37,7 +37,7 @@ if(MSVC)
+ set(THREADS_USE_PTHREADS_WIN32 true)
+ else()
+ add_definitions(-Wall)
+- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu90")
++ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
+
+ INCLUDE(TestBigEndian)
+ TEST_BIG_ENDIAN(BIGENDIAN)