summaryrefslogtreecommitdiff
path: root/x11/kde4-runtime/files
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2018-02-22 19:03:17 +0000
committerTobias C. Berner <tcberner@FreeBSD.org>2018-02-22 19:03:17 +0000
commita4a7daf069cba3ae4b90d832aa9df7624b4626a3 (patch)
tree3aad51132f546ad79059b32784badc3f6a42c8ff /x11/kde4-runtime/files
parentmultimedia/kodi: Disabled LIBBLURAY by default because every other port has i... (diff)
Give the KDE SC4 applications ports a -kde4 suffix
In order to make room for the up-to-date version of the KDE Desktop and its applications move the KDE Application ports based on Qt4. PR: 225992 Exp-run by: antoine Reviewed by: rakuco, adridg Differential Revision: https://reviews.freebsd.org/D14413
Notes
Notes: svn path=/head/; revision=462619
Diffstat (limited to 'x11/kde4-runtime/files')
-rw-r--r--x11/kde4-runtime/files/patch-kdesu_kdesu_kdesu.cpp27
-rw-r--r--x11/kde4-runtime/files/patch-khelpcenter_searchhandlers-khc_mansearch.pl11
-rw-r--r--x11/kde4-runtime/files/patch-kimgio__CMakeLists.txt11
-rw-r--r--x11/kde4-runtime/files/patch-phonon_kcm_CMakeLists.txt19
4 files changed, 0 insertions, 68 deletions
diff --git a/x11/kde4-runtime/files/patch-kdesu_kdesu_kdesu.cpp b/x11/kde4-runtime/files/patch-kdesu_kdesu_kdesu.cpp
deleted file mode 100644
index 2b0b1754bedc..000000000000
--- a/x11/kde4-runtime/files/patch-kdesu_kdesu_kdesu.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-Fix for https://www.kde.org/info/security/advisory-20160930-1.txt
---- kdesu/kdesu/kdesu.cpp.orig 2014-10-30 23:50:20 UTC
-+++ kdesu/kdesu/kdesu.cpp
-@@ -141,6 +141,10 @@ int main(int argc, char *argv[])
- {
- KMessageBox::sorry(0, i18n("Cannot execute command '%1'.", QString::fromLocal8Bit(command)));
- }
-+ if (result == -2)
-+ {
-+ KMessageBox::sorry(0, i18n("Cannot execute command '%1'. It contains invalid characters.", QString::fromLocal8Bit(command)));
-+ }
-
- return result;
- }
-@@ -367,6 +371,12 @@ static int startApp()
- kDebug() << "Don't need password!!\n";
- }
-
-+ for (const QChar character : QString::fromLocal8Bit(command)) {
-+ if (!character.isPrint() && character.category() != QChar::Other_Surrogate) {
-+ return -2;
-+ }
-+ }
-+
- // Start the dialog
- QString password;
- if (needpw)
diff --git a/x11/kde4-runtime/files/patch-khelpcenter_searchhandlers-khc_mansearch.pl b/x11/kde4-runtime/files/patch-khelpcenter_searchhandlers-khc_mansearch.pl
deleted file mode 100644
index c52c60e287b1..000000000000
--- a/x11/kde4-runtime/files/patch-khelpcenter_searchhandlers-khc_mansearch.pl
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./khelpcenter/searchhandlers/khc_mansearch.pl.orig 2008-08-02 17:06:48.000000000 +0200
-+++ ./khelpcenter/searchhandlers/khc_mansearch.pl 2008-08-02 17:07:03.000000000 +0200
-@@ -55,7 +55,7 @@
- while( <MAN> ) {
- # print "RAW:$_";
- chop;
-- /^([^\s]+)\s+\((.*)\)\s+-\s+(.*)$/;
-+ /^([^\s]+)\((.*)\)\s+-\s+(.*)$/;
- my $page = $1;
- my $section = $2;
- my $description = $3;
diff --git a/x11/kde4-runtime/files/patch-kimgio__CMakeLists.txt b/x11/kde4-runtime/files/patch-kimgio__CMakeLists.txt
deleted file mode 100644
index 962639660cb0..000000000000
--- a/x11/kde4-runtime/files/patch-kimgio__CMakeLists.txt
+++ /dev/null
@@ -1,11 +0,0 @@
---- kimgio/CMakeLists.txt.orig 2013-08-10 19:08:00.657328464 +0000
-+++ kimgio/CMakeLists.txt 2013-08-10 19:08:12.087324961 +0000
-@@ -10,7 +10,7 @@
- if ( FOUND_WEBP )
- set(kimg_webp_LIB_SRCS webp.cpp)
- kde4_add_plugin(kimg_webp ${kimg_webp_LIB_SRCS})
-- target_link_libraries(kimg_webp ${KDE4_KDECORE_LIBS} ${QT_QTGUI_LIBRARY} webp)
-+ target_link_libraries(kimg_webp ${KDE4_KDECORE_LIBS} ${QT_QTGUI_LIBRARY} ${FOUND_WEBP})
-
- install(TARGETS kimg_webp DESTINATION ${PLUGIN_INSTALL_DIR}/plugins/imageformats/)
- install(FILES webp.desktop DESTINATION ${SERVICES_INSTALL_DIR}/qimageioplugins/)
diff --git a/x11/kde4-runtime/files/patch-phonon_kcm_CMakeLists.txt b/x11/kde4-runtime/files/patch-phonon_kcm_CMakeLists.txt
deleted file mode 100644
index f2d450c73953..000000000000
--- a/x11/kde4-runtime/files/patch-phonon_kcm_CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-Detect libcanberra with CMake, not pkg-config.
-
-The latter does not produce full paths for libraries, leading to build failures
-if -L/path/to is not passed to the linker as well.
---- phonon/kcm/CMakeLists.txt
-+++ phonon/kcm/CMakeLists.txt
-@@ -11,7 +11,11 @@ set_package_properties(GLIB2 PROPERTIES DESCRIPTION "Low-level core library for
- TYPE OPTIONAL
- )
-
--pkg_check_modules(CANBERRA libcanberra)
-+find_path(CANBERRA_INCLUDE_DIRS canberra.h)
-+find_library(CANBERRA_LIBRARIES canberra)
-+if (CANBERRA_INCLUDE_DIRS AND CANBERRA_LIBRARIES)
-+ set(CANBERRA_FOUND TRUE)
-+endif ()
- add_feature_info ("Audio setup GUI" CANBERRA_FOUND
- "libcanberra is needed for audio setup GUI
- * http://0pointer.de/lennart/projects/libcanberra"