diff options
author | Andreas Sturmlechner <andreas.sturmlechner@gmail.com> | 2016-01-01 20:33:46 +0100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2016-01-05 05:42:01 +1100 |
commit | 0c4ee1490794daabb1a3bd59244f3a2a96b2b6cc (patch) | |
tree | 54eaa3521501e9a87e5cb0c889d3e2ae268a5269 /media-sound/kid3/files | |
parent | dev-lang/R: bump to 3.2.3 (diff) | |
download | gentoo-0c4ee1490794daabb1a3bd59244f3a2a96b2b6cc.tar.gz gentoo-0c4ee1490794daabb1a3bd59244f3a2a96b2b6cc.tar.bz2 gentoo-0c4ee1490794daabb1a3bd59244f3a2a96b2b6cc.zip |
media-sound/kid3: Fix configure with >=kdelibs-4.14.11
Package-Manager: portage-2.2.24
Diffstat (limited to 'media-sound/kid3/files')
-rw-r--r-- | media-sound/kid3/files/kid3-3.2.1-fix-cmake.patch | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/media-sound/kid3/files/kid3-3.2.1-fix-cmake.patch b/media-sound/kid3/files/kid3-3.2.1-fix-cmake.patch new file mode 100644 index 000000000000..06446900e2a7 --- /dev/null +++ b/media-sound/kid3/files/kid3-3.2.1-fix-cmake.patch @@ -0,0 +1,61 @@ +commit c126ad8142c51476c4a1b78ab9e6d7409656b312 +Author: Michael Palimaka <kensington@gentoo.org> +Date: Tue Aug 25 00:05:20 2015 +1000 + + Fix build with kdelibs-4.14.11. + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 3ab5d20..99cf392 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -473,6 +473,13 @@ else (UNIX AND NOT APPLE) + set(KID3_EXECUTABLE kid3) + endif (UNIX AND NOT APPLE) + ++if (BUILD_KDE_APP) ++ if (NOT HAVE_QT5) ++ find_package(KDE4 REQUIRED) ++ include (KDE4Defaults) ++ add_definitions(${KDE4_ENABLE_EXCEPTIONS}) ++ endif (NOT HAVE_QT5) ++endif (BUILD_KDE_APP) + + configure_file(config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h) + +diff --git a/doc/de/CMakeLists.txt b/doc/de/CMakeLists.txt +index 6f25b68..70f6793 100644 +--- a/doc/de/CMakeLists.txt ++++ b/doc/de/CMakeLists.txt +@@ -2,7 +2,6 @@ if (BUILD_KDE_APP) + if (HAVE_QT5) + kf5_create_handbook(index.docbook) + else (HAVE_QT5) +- find_package(KDE4 REQUIRED) + kde4_create_handbook(index.docbook INSTALL_DESTINATION ${HTML_INSTALL_DIR}/de SUBDIR kid3) + endif (HAVE_QT5) + endif (BUILD_KDE_APP) +diff --git a/doc/en/CMakeLists.txt b/doc/en/CMakeLists.txt +index b3751b3..7cff8e1 100644 +--- a/doc/en/CMakeLists.txt ++++ b/doc/en/CMakeLists.txt +@@ -2,7 +2,6 @@ if (BUILD_KDE_APP) + if (HAVE_QT5) + kf5_create_handbook(index.docbook) + else (HAVE_QT5) +- find_package(KDE4 REQUIRED) + kde4_create_handbook(index.docbook INSTALL_DESTINATION ${HTML_INSTALL_DIR}/en SUBDIR kid3) + endif (HAVE_QT5) + endif (BUILD_KDE_APP) +diff --git a/src/app/CMakeLists.txt b/src/app/CMakeLists.txt +index d19ebb5..516e3f9 100644 +--- a/src/app/CMakeLists.txt ++++ b/src/app/CMakeLists.txt +@@ -65,8 +65,6 @@ if (BUILD_KDE_APP) + ) + else (HAVE_QT5) + set(_cmakeInstallRpath "${CMAKE_INSTALL_RPATH}") +- find_package(KDE4 REQUIRED) +- include (KDE4Defaults) + + if (BUILD_SHARED_LIBS) + # FindKDE4Internal.cmake will overwrite our RPATH if LIB_INSTALL_DIR (which |