Files
guvcview/fix-pkgconfig-path.patch
Takashi Iwai 3b685afe0b - Switch to cmake
- Drop multibuild; use a wrapper script instead
- Use %ldconfig_scriptlets
- Update to version 2.2.1
  * Fix encoder video timestamps
  * Fix encoder video codec defaults
  * Move from qt5 to qt6
  * Change build system from autoconf to cmake
  * Add support for yuv420p pixel format for MJPG decoding
- Drop patches (not longer needed):
  * 0001-Fix-build-with-GCC-14.patch
  * guvcview-SUSE.patch
  * guvcview-qt5-nolibs_qt5names.patch
  * 0001-Fix-build-with-GCC-14.patch
- Add patches:
  * 0001-fix-deprecation-warning-with-ffpmeg-7.1-add-Wall-to-.patch
  * 0002-Fix-desktop-file-for-cmake.patch
  * fix-linking.patch
  * fix-pkgconfig-path.patch

OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/guvcview?expand=0&rev=26
2025-11-10 14:18:52 +00:00

53 lines
1.7 KiB
Diff

diff --git a/gview_audio/CMakeLists.txt b/gview_audio/CMakeLists.txt
index 9714745..3bea235 100644
--- a/gview_audio/CMakeLists.txt
+++ b/gview_audio/CMakeLists.txt
@@ -42,7 +42,7 @@ if(INSTALL_DEVKIT)
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/gviewaudio.h TYPE INCLUDE)
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/libgviewaudio.pc
- DESTINATION ${CMAKE_INSTALL_FULL_DATADIR}/pkgconfig
+ DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR}/pkgconfig
)
endif()
diff --git a/gview_encoder/CMakeLists.txt b/gview_encoder/CMakeLists.txt
index a39fdaf..dae9b1f 100644
--- a/gview_encoder/CMakeLists.txt
+++ b/gview_encoder/CMakeLists.txt
@@ -36,7 +36,7 @@ if(INSTALL_DEVKIT)
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/libgviewencoder.pc
- DESTINATION ${CMAKE_INSTALL_FULL_DATADIR}/pkgconfig
+ DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR}/pkgconfig
)
endif()
diff --git a/gview_render/CMakeLists.txt b/gview_render/CMakeLists.txt
index e63ba39..8cc3e7d 100644
--- a/gview_render/CMakeLists.txt
+++ b/gview_render/CMakeLists.txt
@@ -53,7 +53,7 @@ if(INSTALL_DEVKIT)
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/libgviewrender.pc
- DESTINATION ${CMAKE_INSTALL_FULL_DATADIR}/pkgconfig
+ DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR}/pkgconfig
)
endif()
diff --git a/gview_v4l2core/CMakeLists.txt b/gview_v4l2core/CMakeLists.txt
index e204238..8eed292 100644
--- a/gview_v4l2core/CMakeLists.txt
+++ b/gview_v4l2core/CMakeLists.txt
@@ -44,7 +44,7 @@ if(INSTALL_DEVKIT)
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/gviewv4l2core.h TYPE INCLUDE)
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/libgviewv4l2core.pc
- DESTINATION ${CMAKE_INSTALL_FULL_DATADIR}/pkgconfig
+ DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR}/pkgconfig
)
endif()