Since commit
fcd9c85475b65c6e8f22d5f9b4ac7c7ecb93dc6a, gr-qtgui has
been removed because this Qt GUI was based on Qt4 which was no longer
supported by Buildroot.
However, gnuradio 3.8 brings a Qt5-based GUI, and therefore the option
BR2_PACKAGE_GNURADIO_QTGUI can be re-introduced.
Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
The python-pyqt package was removed. Consider python-pyqt5
instead.
-config BR2_PACKAGE_GNURADIO_QTGUI
- bool "gnuradio gr-qtgui option removed"
- select BR2_LEGACY
- help
- The gr-qtgui option was removed.
-
config BR2_PACKAGE_LUACRYPTO
bool "luacrypto package removed"
select BR2_LEGACY
help
FLEX pager decoder implementation blocks
+config BR2_PACKAGE_GNURADIO_QTGUI
+ bool "gr-qtgui"
+ depends on BR2_PACKAGE_GNURADIO_PYTHON
+ depends on BR2_PACKAGE_QT5
+ select BR2_PACKAGE_GNURADIO_FFT
+ select BR2_PACKAGE_GNURADIO_FILTER
+ select BR2_PACKAGE_PYTHON_PYQT5
+ select BR2_PACKAGE_QT5BASE
+ select BR2_PACKAGE_QT5BASE_FONTCONFIG # runtime
+ select BR2_PACKAGE_QT5BASE_GUI # runtime
+ select BR2_PACKAGE_QT5BASE_WIDGETS # runtime
+ select BR2_PACKAGE_QWT
+ help
+ GNU Radio Qt scopes
+
config BR2_PACKAGE_GNURADIO_TRELLIS
bool "gr-trellis support"
select BR2_PACKAGE_GNURADIO_DIGITAL
-DENABLE_VOLK=ON \
-DENABLE_GNURADIO_RUNTIME=ON \
-DENABLE_TESTING=OFF \
- -DENABLE_GR_QTGUI=OFF \
-DXMLTO_EXECUTABLE=NOTFOUND
# For third-party blocks, the gnuradio libraries are mandatory at
GNURADIO_CONF_OPTS += -DENABLE_GR_PAGER=OFF
endif
+ifeq ($(BR2_PACKAGE_GNURADIO_QTGUI),y)
+GNURADIO_DEPENDENCIES += qt5base python-pyqt5 qwt
+GNURADIO_CONF_OPTS += -DENABLE_GR_QTGUI=ON
+else
+GNURADIO_CONF_OPTS += -DENABLE_GR_QTGUI=OFF
+endif
+
ifeq ($(BR2_PACKAGE_GNURADIO_TRELLIS),y)
GNURADIO_CONF_OPTS += -DENABLE_GR_TRELLIS=ON
else