pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/ham/gnuradio-core



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun Mar  5 21:53:00 UTC 2023

Modified Files:
        pkgsrc/ham/gnuradio-core: distinfo
Added Files:
        pkgsrc/ham/gnuradio-core/patches:
            patch-gr-qtgui_examples_c++_CMakeLists.txt

Log Message:
gnuradio-core: add missing library to fix build of qtgui subpackage


To generate a diff of this commit:
cvs rdiff -u -r1.51 -r1.52 pkgsrc/ham/gnuradio-core/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/ham/gnuradio-core/patches/patch-gr-qtgui_examples_c++_CMakeLists.txt

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/ham/gnuradio-core/distinfo
diff -u pkgsrc/ham/gnuradio-core/distinfo:1.51 pkgsrc/ham/gnuradio-core/distinfo:1.52
--- pkgsrc/ham/gnuradio-core/distinfo:1.51      Sun Jan 29 11:19:37 2023
+++ pkgsrc/ham/gnuradio-core/distinfo   Sun Mar  5 21:53:00 2023
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.51 2023/01/29 11:19:37 adam Exp $
+$NetBSD: distinfo,v 1.52 2023/03/05 21:53:00 wiz Exp $
 
 BLAKE2s (gnuradio-3.10.5.1.tar.gz) = 1885da4ef42a9441ede29ea8689619a16b6468c30ffe59826c761ca12ff5155c
 SHA512 (gnuradio-3.10.5.1.tar.gz) = 37b8101baa7e6adbb60b55aedf2c951e75b14ef97091d967ab717eae699e014bd91c18fe7bf32117bbc5c0a3e0e44015be1c8d83177f9a3751893b49fb860df6
@@ -10,3 +10,4 @@ SHA1 (patch-gnuradio-runtime_lib_constan
 SHA1 (patch-gnuradio-runtime_lib_thread_thread__group.cc) = 868809d5253b6465595dcade7f094844ff79f21c
 SHA1 (patch-gr-audio_lib_CMakeLists.txt) = d5acab47fdb007c50bb544af436102f0d38317aa
 SHA1 (patch-gr-audio_lib_alsa_alsa__impl_h) = cfa9b629e5cf21198cfd53cf27a908b5874866f4
+SHA1 (patch-gr-qtgui_examples_c++_CMakeLists.txt) = 06a5885b5e661667cf4bfe936ff45723d0801c22

Added files:

Index: pkgsrc/ham/gnuradio-core/patches/patch-gr-qtgui_examples_c++_CMakeLists.txt
diff -u /dev/null pkgsrc/ham/gnuradio-core/patches/patch-gr-qtgui_examples_c++_CMakeLists.txt:1.1
--- /dev/null   Sun Mar  5 21:53:00 2023
+++ pkgsrc/ham/gnuradio-core/patches/patch-gr-qtgui_examples_c++_CMakeLists.txt Sun Mar  5 21:53:00 2023
@@ -0,0 +1,14 @@
+$NetBSD: patch-gr-qtgui_examples_c++_CMakeLists.txt,v 1.1 2023/03/05 21:53:00 wiz Exp $
+
+Add missing library - fails to link due to missing symbols from libqwt otherwise.
+
+--- gr-qtgui/examples/c++/CMakeLists.txt.orig  2023-01-25 11:50:45.000000000 +0000
++++ gr-qtgui/examples/c++/CMakeLists.txt
+@@ -28,6 +28,6 @@ list(
+ qt5_wrap_cpp(qtgui_moc_sources display_qt.h)
+ 
+ add_executable(display_qt display_qt.cc ${qtgui_moc_sources})
+-target_link_libraries(display_qt ${QTGUI_LIBRARIES})
++target_link_libraries(display_qt ${QTGUI_LIBRARIES} -lqwt)
+ 
+ install(TARGETS display_qt DESTINATION ${GR_PKG_QTGUI_EXAMPLES_DIR})



Home | Main Index | Thread Index | Old Index