summaryrefslogtreecommitdiffstats
path: root/kde/patch
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2015-01-11 23:19:24 +0100
committer Eric Hameleers <alien@slackware.com>2015-01-11 23:19:24 +0100
commit7119290dd4b5d0ae882c6a5ce1737174735c5f6a (patch)
treef98d1e39d8d733020bddc7cc9fc074920d6a5bfc /kde/patch
parentdccec7efa0031f28ddd7f2315e6a2a6c748d4696 (diff)
downloadktown-7119290dd4b5d0ae882c6a5ce1737174735c5f6a.tar.gz
ktown-7119290dd4b5d0ae882c6a5ce1737174735c5f6a.tar.xz
All packages have been built at least once. Some are failing.
The README file contains the log of problematic packages. TODO means, that I still have to create a fix. DOMNE means that the fix is in the source tree already. SKIP means that I will remove the package from the set. I am going to rebuild everything from scratch.
Diffstat (limited to 'kde/patch')
-rw-r--r--kde/patch/kalgebra.patch5
-rw-r--r--kde/patch/kalgebra/kalgebra_ncurses_linking.diff85
-rw-r--r--kde/patch/kdewebdev.patch3
3 files changed, 92 insertions, 1 deletions
diff --git a/kde/patch/kalgebra.patch b/kde/patch/kalgebra.patch
new file mode 100644
index 0000000..8365ff3
--- /dev/null
+++ b/kde/patch/kalgebra.patch
@@ -0,0 +1,5 @@
+# On some systems, libreadline is linked to Curses implementation directly;
+# on other, it's not, requiring you to link both Curses and Readline libraries
+# manually.
+cat $CWD/patch/kalgebra/kalgebra_ncurses_linking.diff | patch -p1 --verbose || { touch ${SLACK_KDE_BUILD_DIR}/${PKGNAME}.failed ; continue ; }
+
diff --git a/kde/patch/kalgebra/kalgebra_ncurses_linking.diff b/kde/patch/kalgebra/kalgebra_ncurses_linking.diff
new file mode 100644
index 0000000..9ef555b
--- /dev/null
+++ b/kde/patch/kalgebra/kalgebra_ncurses_linking.diff
@@ -0,0 +1,85 @@
+# Se:
+# https://git.reviewboard.kde.org/r/118959/diff/1/?expand=1
+# ---------------------------------------------------------------------------
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 09e216f..b7d6370 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -9,8 +9,16 @@ include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${KDE4_INCLUDES})
+ #Checking whether we can compile calgebra
+ include(CheckIncludeFiles)
+ macro_optional_find_package(Readline)
++macro_optional_find_package(Ncurses)
+ macro_bool_to_01(READLINE_FOUND HAVE_READLINE)
++macro_bool_to_01(NCURSES_FOUND HAVE_NCURSES)
++if(READLINE_FOUND AND NCURSES_FOUND)
++ set(CONSOLE_SUPPORTED TRUE)
++else(READLINE_FOUND AND NCURSES_FOUND)
++ set(CONSOLE_SUPPORTED FALSE)
++endif(READLINE_FOUND AND NCURSES_FOUND)
+ macro_log_feature(READLINE_FOUND "GNU Readline" "Allows KAlgebra to provide a console interface." "http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html" FALSE "" "")
++macro_log_feature(READLINE_FOUND "NCurses" "Allows KAlgebra to provide a console interface." "http://www.gnu.org/software/ncurses/" FALSE "" "")
+
+ macro_optional_find_package(OpenGL)
+ macro_bool_to_01(OPENGL_FOUND HAVE_OPENGL)
+@@ -25,9 +33,9 @@ set(ANALITZA_LIB_SOVERSION "5")
+ add_subdirectory(analitza)
+ add_subdirectory(analitzaplot)
+ add_subdirectory(analitzagui)
+-if(HAVE_READLINE)
++if(CONSOLE_SUPPORTED)
+ add_subdirectory(calgebra)
+-endif(HAVE_READLINE)
++endif(CONSOLE_SUPPORTED)
+
+ macro_display_feature_log()
+
+diff --git a/calgebra/CMakeLists.txt b/calgebra/CMakeLists.txt
+index 1cbb06b..9428c1d 100644
+--- a/calgebra/CMakeLists.txt
++++ b/calgebra/CMakeLists.txt
+@@ -1,11 +1,23 @@
+-include_directories(${READLINE_INCLUDE_DIR})
++include(CheckFunctionExists)
++include(CMakePushCheckState)
++
++include_directories(${READLINE_INCLUDE_DIR} ${NCURSES_INCLUDE_DIRS})
++
++# check if we have recent version of Readline
++cmake_push_check_state(RESET)
++set(CMAKE_REQUIRED_LIBRARIES ${READLINE_LIBRARY} ${NCURSES_LIBRARY})
++check_function_exists(free_history_entry HAVE_FREE_HISTORY_ENTRY)
++cmake_pop_check_state()
++if(HAVE_FREE_HISTORY_ENTRY)
++ add_definitions(-DHAVE_FREE_HISTORY_ENTRY)
++endif()
+
+ set(calgebra_SRCS
+ main.cpp
+ )
+
+ kde4_add_executable(calgebra ${calgebra_SRCS})
+-target_link_libraries(calgebra ${QT_QTCORE_LIBRARY} ${READLINE_LIBRARY} analitza)
++target_link_libraries(calgebra ${QT_QTCORE_LIBRARY} ${READLINE_LIBRARY} ${NCURSES_LIBRARY} analitza)
+
+ install(TARGETS calgebra ${INSTALL_TARGETS_DEFAULT_ARGS})
+
+diff --git a/calgebra/main.cpp b/calgebra/main.cpp
+index fa045ed..ddb5ab0 100644
+--- a/calgebra/main.cpp
++++ b/calgebra/main.cpp
+@@ -151,8 +151,12 @@ int main(int argc, char *argv[])
+
+ for(int i=0; i<history_get_history_state()->length; i++) {
+ HIST_ENTRY *he = remove_history(i);
+-// free(he->line);
++#ifdef HAVE_FREE_HISTORY_ENTRY
+ free_history_entry(he);
++#else
++ free(he->line);
++ free(he);
++#endif
+ }
+ qDebug("\nExit.");
+ return 0;
+
diff --git a/kde/patch/kdewebdev.patch b/kde/patch/kdewebdev.patch
index 1f678fd..4bbe65b 100644
--- a/kde/patch/kdewebdev.patch
+++ b/kde/patch/kdewebdev.patch
@@ -1,5 +1,6 @@
# Make it find tidy:
cat $CWD/patch/kdewebdev/include-tidy.patch \
- | sed -e "s#/tmp/package-kdewebdev#${SLACK_KDE_BUILD_DIR}/${module}/package-kdewebdev#" \
+ | sed -e "s#/tmp/package-kdewebdev#${SLACK_KDE_BUILD_DIR}/$(echo ${module} |cut -f1 -d:)/package-kdewebdev#" \
| patch -p0 --verbose \
|| { touch ${SLACK_KDE_BUILD_DIR}/${PKGNAME}.failed ; continue ; }
+