ddae4e92d8
Most USES use a colon for build/run(/test) suffixes. Change kde.mk, qt.mk and pyqt.mk to do the same, and update all ports using that. Document in CHANGES. PR: 266034 Exp-run by: antoine Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D36349
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
PORTNAME= welle.io
|
|
DISTVERSION= 2.4
|
|
CATEGORIES= audio hamradio
|
|
|
|
MAINTAINER= nsonack@outlook.com
|
|
COMMENT= SDR DAB/DAB+ Receiver
|
|
WWW= https://www.welle.io/
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libasound.so:audio/alsa-lib \
|
|
libfaad.so:audio/faad \
|
|
libmp3lame.so:audio/lame \
|
|
libmpg123.so:audio/mpg123
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:audio/alsa-plugins
|
|
|
|
USES= cmake compiler:c++11-lang pkgconfig qt:5
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= AlbrechtL
|
|
GH_TAGNAME= 0aacf578d77d79212483cd6fce436fb66523f63f
|
|
USE_QT= charts core dbus declarative gui multimedia network \
|
|
quickcontrols2 widgets buildtools:build qmake:build
|
|
|
|
OPTIONS_DEFINE= AIRSPY CLI FFTW RTLSDR SOAPY
|
|
OPTIONS_DEFAULT= FFTW RTLSDR
|
|
|
|
AIRSPY_DESC= AirSpy support
|
|
CLI_DESC= Build the welle-cli tool
|
|
FFTW_DESC= Use FFTW3 instead of KISSFFT
|
|
RTLSDR_DESC= RTL-SDR support
|
|
SOAPY_DESC= SoapySDR support
|
|
|
|
AIRSPY_LIB_DEPENDS= libairspy.so:comms/airspy
|
|
AIRSPY_CMAKE_BOOL= AIRSPY
|
|
|
|
CLI_CMAKE_BOOL= BUILD_WELLE_CLI
|
|
CLI_PLIST_FILES= bin/welle-cli \
|
|
share/welle-io/html/index.html \
|
|
share/welle-io/html/index.js
|
|
|
|
FFTW_BUILD_DEPENDS= fftw3>=0:math/fftw3
|
|
FFTW_LIB_DEPENDS= libfftw3f.so:math/fftw3-float
|
|
FFTW_CMAKE_BOOL_OFF= KISS_FFT
|
|
|
|
RTLSDR_LIB_DEPENDS= librtlsdr.so:comms/rtl-sdr
|
|
RTLSDR_CMAKE_BOOL= RTLSDR
|
|
|
|
SOAPY_LIB_DEPENDS= libSoapySDR.so:misc/soapysdr
|
|
SOAPY_CMAKE_BOOL= SOAPYSDR
|
|
|
|
.include <bsd.port.mk>
|