mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
GUI functions (e.g. waterfall) for libsdr, a simple software defined radio
(SDR) library. WWW: https://github.com/hmatuschek/libsdr-gui PR: 207380 Submitted by: Jeffrey Baitis <baitisj@pcbsd.org>
This commit is contained in:
parent
518a50b30b
commit
db3e77e4fa
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=409847
6 changed files with 58 additions and 0 deletions
|
@ -88,6 +88,7 @@
|
|||
SUBDIR += libmodbus
|
||||
SUBDIR += librs232
|
||||
SUBDIR += libsdr
|
||||
SUBDIR += libsdr-gui
|
||||
SUBDIR += libticables2
|
||||
SUBDIR += libticalcs2
|
||||
SUBDIR += libusbmuxd
|
||||
|
|
32
comms/libsdr-gui/Makefile
Normal file
32
comms/libsdr-gui/Makefile
Normal file
|
@ -0,0 +1,32 @@
|
|||
# Created by: Jeffrey Baitis <baitisj@pcbsd.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= libsdr-gui
|
||||
PORTVERSION= 0.1.0
|
||||
CATEGORIES= comms hamradio
|
||||
|
||||
MAINTAINER= baitisj@pcbsd.org
|
||||
COMMENT= GUI functions (e.g. waterfall) for libsdr library
|
||||
|
||||
LICENSE= GPLv2
|
||||
|
||||
LIB_DEPENDS= libfftw3.so:${PORTSDIR}/math/fftw3 \
|
||||
libfftw3f.so:${PORTSDIR}/math/fftw3-float \
|
||||
libsdr.so:${PORTSDIR}/comms/libsdr
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= hmatuschek
|
||||
GH_PROJECT= libsdr-gui
|
||||
GH_TAGNAME= 96846d1
|
||||
|
||||
USE_QT5= core buildtools_build qmake widgets
|
||||
USES= cmake pkgconfig
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
|
||||
USE_GCC= yes
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
2
comms/libsdr-gui/distinfo
Normal file
2
comms/libsdr-gui/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (hmatuschek-libsdr-gui-0.1.0-96846d1_GH0.tar.gz) = cd9a74ce5ad9c16ffced16b01c56457d1e46e6ce052fbba0d66cd09336fe4a65
|
||||
SIZE (hmatuschek-libsdr-gui-0.1.0-96846d1_GH0.tar.gz) = 35731
|
13
comms/libsdr-gui/files/patch-CMakeLists.txt
Normal file
13
comms/libsdr-gui/files/patch-CMakeLists.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
--- CMakeLists.txt.orig 2015-03-30 13:19:15 UTC
|
||||
+++ CMakeLists.txt
|
||||
@@ -35,6 +35,10 @@ set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX
|
||||
SET(LIBS ${FFTW_LIBRARIES} ${FFTWSingle_LIBRARIES} ${Qt5Core_LIBRARIES} ${Qt5Widgets_LIBRARIES}
|
||||
${LIBSDR_LIBRARIES})
|
||||
|
||||
+Message (STATUS "CFLAGS = " ${CFLAGS} )
|
||||
+Message (STATUS "CMAKE_CXX_FLAGS = " ${CMAKE_CXX_FLAGS})
|
||||
+Message (STATUS "CXX_FLAGS = " ${CXX_FLAGS})
|
||||
+
|
||||
#
|
||||
# Get default install directories under Linux
|
||||
#
|
4
comms/libsdr-gui/pkg-descr
Normal file
4
comms/libsdr-gui/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
GUI functions (e.g. waterfall) for libsdr, a simple software defined radio
|
||||
(SDR) library.
|
||||
|
||||
WWW: https://github.com/hmatuschek/libsdr-gui
|
6
comms/libsdr-gui/pkg-plist
Normal file
6
comms/libsdr-gui/pkg-plist
Normal file
|
@ -0,0 +1,6 @@
|
|||
include/libsdr/gui/gui.hh
|
||||
include/libsdr/gui/spectrum.hh
|
||||
include/libsdr/gui/spectrumview.hh
|
||||
include/libsdr/gui/waterfallview.hh
|
||||
lib/libsdr-gui.so
|
||||
lib/libsdr-gui.so.0.1.0
|
Loading…
Add table
Reference in a new issue