diff options
Diffstat (limited to 'source/kde')
-rw-r--r-- | source/kde/kde/build/kfilemetadata | 2 | ||||
-rw-r--r-- | source/kde/kde/build/kimageformats | 2 | ||||
-rw-r--r-- | source/kde/kde/build/kinit | 2 | ||||
-rw-r--r-- | source/kde/kde/make/krita | 3 | ||||
-rw-r--r-- | source/kde/kde/patch/kstars.patch | 1 | ||||
-rw-r--r-- | source/kde/kde/patch/kstars/kstars.link.with.gsl.patch | 14 |
6 files changed, 18 insertions, 6 deletions
diff --git a/source/kde/kde/build/kfilemetadata b/source/kde/kde/build/kfilemetadata index 0cfbf0888..d00491fd7 100644 --- a/source/kde/kde/build/kfilemetadata +++ b/source/kde/kde/build/kfilemetadata @@ -1 +1 @@ -2 +1 diff --git a/source/kde/kde/build/kimageformats b/source/kde/kde/build/kimageformats index 00750edc0..d00491fd7 100644 --- a/source/kde/kde/build/kimageformats +++ b/source/kde/kde/build/kimageformats @@ -1 +1 @@ -3 +1 diff --git a/source/kde/kde/build/kinit b/source/kde/kde/build/kinit index 0cfbf0888..d00491fd7 100644 --- a/source/kde/kde/build/kinit +++ b/source/kde/kde/build/kinit @@ -1 +1 @@ -2 +1 diff --git a/source/kde/kde/make/krita b/source/kde/kde/make/krita deleted file mode 100644 index 0faed2fe3..000000000 --- a/source/kde/kde/make/krita +++ /dev/null @@ -1,3 +0,0 @@ -# Try twice with $NUMJOBS: -make $NUMJOBS || make $NUMJOBS || make || exit 1 -make install DESTDIR=$PKG || exit 1 diff --git a/source/kde/kde/patch/kstars.patch b/source/kde/kde/patch/kstars.patch new file mode 100644 index 000000000..5f2dabdb9 --- /dev/null +++ b/source/kde/kde/patch/kstars.patch @@ -0,0 +1 @@ +cat $CWD/patch/kstars/kstars.link.with.gsl.patch | patch -p1 --verbose || { touch ${SLACK_KDE_BUILD_DIR}/${PKGNAME}.failed ; continue ; } diff --git a/source/kde/kde/patch/kstars/kstars.link.with.gsl.patch b/source/kde/kde/patch/kstars/kstars.link.with.gsl.patch new file mode 100644 index 000000000..0be7f8342 --- /dev/null +++ b/source/kde/kde/patch/kstars/kstars.link.with.gsl.patch @@ -0,0 +1,14 @@ +--- ./kstars/CMakeLists.txt.orig 2023-05-31 03:23:38.000000000 -0500 ++++ ./kstars/CMakeLists.txt 2023-06-10 15:22:26.822136184 -0500 +@@ -1338,6 +1338,11 @@ + + endif(INDI_FOUND) + ++# Force link with GSL: ++find_package(GSL REQUIRED) ++include_directories(${GSL_INCLUDE_DIRS}) ++target_link_libraries(KStarsLib ${GSL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} KF5::Notifications) ++ + if(WCSLIB_FOUND) + target_link_libraries(KStarsLib ${WCSLIB_LIBRARIES}) + if (BUILD_KSTARS_LITE) |