1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-16 03:24:07 +00:00
freebsd-ports/comms/gnuradio/files/patch-gr-qtgui_CMakeLists.txt
Diane Bruce 64a1be3275 - Update to 3.7.4
- Important Bug Fixes and Additions
Fixed shutdown in message passing apps
Fixed PortAudio detection during configuration
Fixed QWT detection during configuration
Fixed gr::analog::agc3 volk kernel alignment
Fixed/improved support of audio on OSX
Improved performance on network-based sources and sinks
Fixed pfb_arb_resampler tag propagation
Fixed segfault in fast_atan2f
Updated codec2 support to latest standard and support all rates
New HDLC codec blocks in gr::digital
2014-09-01 00:42:49 +00:00

31 lines
890 B
Plaintext

--- gr-qtgui/CMakeLists.txt.orig 2014-08-02 15:09:03.000000000 -0400
+++ gr-qtgui/CMakeLists.txt 2014-08-02 15:11:16.000000000 -0400
@@ -128,17 +128,26 @@
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/gnuradio-qtgui.pc
- DESTINATION ${GR_LIBRARY_DIR}/pkgconfig
+ DESTINATION ${GR_PKGCONFIG_DIR}/pkgconfig
COMPONENT "qtgui_devel"
)
########################################################################
# Install the conf file
########################################################################
+if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
+install(
+ FILES ${CMAKE_CURRENT_SOURCE_DIR}/gr-qtgui.conf
+ DESTINATION ${GR_PREFSDIR}
+ RENAME "gr-qtgui.conf.sample"
+ COMPONENT "qtgui"
+)
+elseif()
install(
FILES ${CMAKE_CURRENT_SOURCE_DIR}/gr-qtgui.conf
DESTINATION ${GR_PREFSDIR}
COMPONENT "qtgui"
)
+endif()
endif(ENABLE_GR_QTGUI)