summaryrefslogtreecommitdiffstats
path: root/source/kde
diff options
context:
space:
mode:
Diffstat (limited to 'source/kde')
-rwxr-xr-xsource/kde/kColorPicker/kColorPicker.SlackBuild151
-rw-r--r--source/kde/kColorPicker/kColorPicker.url1
-rw-r--r--source/kde/kColorPicker/slack-desc19
-rwxr-xr-xsource/kde/kImageAnnotator/kImageAnnotator.SlackBuild151
-rw-r--r--source/kde/kImageAnnotator/kImageAnnotator.url1
-rw-r--r--source/kde/kImageAnnotator/slack-desc19
-rw-r--r--source/kde/kde/build/cantor2
-rw-r--r--source/kde/kde/build/kdesdk-kio (renamed from source/kde/kde/build/kdesdk-kioslaves)0
-rw-r--r--source/kde/kde/build/kig2
-rw-r--r--source/kde/kde/build/kio-zeroconf (renamed from source/kde/kde/build/zeroconf-ioslave)0
-rw-r--r--source/kde/kde/build/kitinerary2
-rw-r--r--source/kde/kde/build/kmymoney2
-rw-r--r--source/kde/kde/build/kopeninghours2
-rw-r--r--source/kde/kde/build/krita2
-rw-r--r--source/kde/kde/build/ksanecore1
-rw-r--r--source/kde/kde/build/kwallet2
-rw-r--r--source/kde/kde/build/okular2
-rw-r--r--source/kde/kde/cmake/okular23
-rw-r--r--source/kde/kde/modules/all-packaged-applications5
-rw-r--r--source/kde/kde/modules/applications5
-rw-r--r--source/kde/kde/patch/kate/kate_runasroot.patch12
-rw-r--r--source/kde/kde/slack-desc/audiocd-kio12
-rw-r--r--source/kde/kde/slack-desc/kdesdk-kio19
-rw-r--r--source/kde/kde/slack-desc/kio-zeroconf (renamed from source/kde/kde/slack-desc/kdesdk-kioslaves)24
-rw-r--r--source/kde/kde/slack-desc/ksanecore19
-rw-r--r--source/kde/kde/slack-desc/zeroconf-ioslave19
26 files changed, 442 insertions, 55 deletions
diff --git a/source/kde/kColorPicker/kColorPicker.SlackBuild b/source/kde/kColorPicker/kColorPicker.SlackBuild
new file mode 100755
index 000000000..ba9546ead
--- /dev/null
+++ b/source/kde/kColorPicker/kColorPicker.SlackBuild
@@ -0,0 +1,151 @@
+#!/bin/bash
+
+# Copyright 2022 Patrick J. Volkerding, Sebeka, Minnesota, USA
+# All rights reserved.
+#
+# Redistribution and use of this script, with or without modification, is
+# permitted provided that the following conditions are met:
+#
+# 1. Redistributions of this script must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
+# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+cd $(dirname $0) ; CWD=$(pwd)
+
+PKGNAM=kColorPicker
+VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
+BUILD=${BUILD:-1}
+
+# Automatically determine the architecture we're building on:
+if [ -z "$ARCH" ]; then
+ case "$(uname -m)" in
+ i?86) ARCH=i586 ;;
+ arm*) readelf /usr/bin/file -A | egrep -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7hl ;;
+ # Unless $ARCH is already set, use uname -m for all other archs:
+ *) ARCH=$(uname -m) ;;
+ esac
+ export ARCH
+fi
+
+# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
+# the name of the created package would be, and then exit. This information
+# could be useful to other scripts.
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
+ exit 0
+fi
+
+NUMJOBS=${NUMJOBS:-" -j $(expr $(nproc) + 1) "}
+
+if [ "$ARCH" = "i586" ]; then
+ SLKCFLAGS="-O2 -march=i586 -mtune=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "i686" ]; then
+ SLKCFLAGS="-O2 -march=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "s390" ]; then
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
+ LIBDIRSUFFIX="64"
+elif [ "$ARCH" = "armv7hl" ]; then
+ SLKCFLAGS="-O3 -march=armv7-a -mfpu=vfpv3-d16"
+ LIBDIRSUFFIX=""
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
+fi
+
+TMP=${TMP:-/tmp}
+PKG=$TMP/package-$PKGNAM
+
+rm -rf $PKG
+mkdir -p $TMP $PKG
+
+cd $TMP
+rm -rf $PKGNAM-$VERSION
+tar xvf $CWD/$PKGNAM-$VERSION.tar.?z || exit 1
+cd $PKGNAM-$VERSION || exit 1
+
+chown -R root:root .
+find . \
+ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
+ -exec chmod 755 {} \+ -o \
+ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
+ -exec chmod 644 {} \+
+
+# Configure, build, and install:
+mkdir cmake-build
+cd cmake-build
+ cmake \
+ $KDE_OPT_ARGS \
+ -DKDE_PLATFORM_FEATURE_DISABLE_DEPRECATED=TRUE \
+ -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
+ -DCMAKE_C_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
+ -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
+ -DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DMAN_INSTALL_DIR=/usr/man \
+ -DSYSCONF_INSTALL_DIR=/etc/kde \
+ -DLIB_SUFFIX=${LIBDIRSUFFIX} \
+ -DLIB_INSTALL_DIR=lib$LIBDIRSUFFIX \
+ -DQT_PLUGIN_INSTALL_DIR=lib$LIBDIRSUFFIX/qt5/plugins \
+ -DQML_INSTALL_DIR=lib$LIBDIRSUFFIX/qt5/qml \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DBUILD_TESTING=OFF \
+ -DQca-qt5_DIR=/usr/lib${LIBDIRSUFFIX}/cmake/Qca \
+ -DBUILD_SHARED_LIBS=ON \
+ .. || exit 1
+ make $NUMJOBS || make || exit 1
+ make install DESTDIR=$PKG || exit 1
+cd ..
+
+# Strip binaries:
+find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
+
+# Compress manual pages:
+find $PKG/usr/man -type f -exec gzip -9 {} \+
+for i in $( find $PKG/usr/man -type l ) ; do
+ ln -s $( readlink $i ).gz $i.gz
+ rm $i
+done
+
+# Compress info files, if any:
+if [ -d $PKG/usr/info ]; then
+ ( cd $PKG/usr/info
+ rm -f dir
+ gzip -9 *
+ )
+fi
+
+# Add a documentation directory:
+mkdir -p $PKG/usr/doc/${PKGNAM}-$VERSION
+cp -a \
+ AUTHORS* ChangeLog CHANGES COPYING* LICENSE* NEWS* README* THANKS* TODO* \
+ $PKG/usr/doc/${PKGNAM}-$VERSION
+
+# If there's a ChangeLog, installing at least part of the recent history
+# is useful, but don't let it get totally out of control:
+if [ -r ChangeLog ]; then
+ DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION)
+ cat ChangeLog | head -n 1000 > $DOCSDIR/ChangeLog
+ touch -r ChangeLog $DOCSDIR/ChangeLog
+fi
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $PKG
+/sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz
diff --git a/source/kde/kColorPicker/kColorPicker.url b/source/kde/kColorPicker/kColorPicker.url
new file mode 100644
index 000000000..fc7ac4e46
--- /dev/null
+++ b/source/kde/kColorPicker/kColorPicker.url
@@ -0,0 +1 @@
+https://github.com/ksnip/kColorPicker
diff --git a/source/kde/kColorPicker/slack-desc b/source/kde/kColorPicker/slack-desc
new file mode 100644
index 000000000..dd3321513
--- /dev/null
+++ b/source/kde/kColorPicker/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in. You must
+# make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':'.
+
+ |-----handy-ruler------------------------------------------------------|
+kColorPicker: kColorPicker (popup color selector library)
+kColorPicker:
+kColorPicker: QToolButton with color popup menu with lets you select a color. The
+kColorPicker: popup features a color dialog button which can be used to add custom
+kColorPicker: colors to the popup menu.
+kColorPicker:
+kColorPicker:
+kColorPicker:
+kColorPicker:
+kColorPicker:
+kColorPicker:
diff --git a/source/kde/kImageAnnotator/kImageAnnotator.SlackBuild b/source/kde/kImageAnnotator/kImageAnnotator.SlackBuild
new file mode 100755
index 000000000..e3a3ba806
--- /dev/null
+++ b/source/kde/kImageAnnotator/kImageAnnotator.SlackBuild
@@ -0,0 +1,151 @@
+#!/bin/bash
+
+# Copyright 2022 Patrick J. Volkerding, Sebeka, Minnesota, USA
+# All rights reserved.
+#
+# Redistribution and use of this script, with or without modification, is
+# permitted provided that the following conditions are met:
+#
+# 1. Redistributions of this script must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
+# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+cd $(dirname $0) ; CWD=$(pwd)
+
+PKGNAM=kImageAnnotator
+VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
+BUILD=${BUILD:-1}
+
+# Automatically determine the architecture we're building on:
+if [ -z "$ARCH" ]; then
+ case "$(uname -m)" in
+ i?86) ARCH=i586 ;;
+ arm*) readelf /usr/bin/file -A | egrep -q "Tag_CPU.*[4,5]" && ARCH=arm || ARCH=armv7hl ;;
+ # Unless $ARCH is already set, use uname -m for all other archs:
+ *) ARCH=$(uname -m) ;;
+ esac
+ export ARCH
+fi
+
+# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
+# the name of the created package would be, and then exit. This information
+# could be useful to other scripts.
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
+ exit 0
+fi
+
+NUMJOBS=${NUMJOBS:-" -j $(expr $(nproc) + 1) "}
+
+if [ "$ARCH" = "i586" ]; then
+ SLKCFLAGS="-O2 -march=i586 -mtune=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "i686" ]; then
+ SLKCFLAGS="-O2 -march=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "s390" ]; then
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
+ LIBDIRSUFFIX="64"
+elif [ "$ARCH" = "armv7hl" ]; then
+ SLKCFLAGS="-O3 -march=armv7-a -mfpu=vfpv3-d16"
+ LIBDIRSUFFIX=""
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
+fi
+
+TMP=${TMP:-/tmp}
+PKG=$TMP/package-$PKGNAM
+
+rm -rf $PKG
+mkdir -p $TMP $PKG
+
+cd $TMP
+rm -rf $PKGNAM-$VERSION
+tar xvf $CWD/$PKGNAM-$VERSION.tar.?z || exit 1
+cd $PKGNAM-$VERSION || exit 1
+
+chown -R root:root .
+find . \
+ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
+ -exec chmod 755 {} \+ -o \
+ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
+ -exec chmod 644 {} \+
+
+# Configure, build, and install:
+mkdir cmake-build
+cd cmake-build
+ cmake \
+ $KDE_OPT_ARGS \
+ -DKDE_PLATFORM_FEATURE_DISABLE_DEPRECATED=TRUE \
+ -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
+ -DCMAKE_C_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
+ -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
+ -DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DMAN_INSTALL_DIR=/usr/man \
+ -DSYSCONF_INSTALL_DIR=/etc/kde \
+ -DLIB_SUFFIX=${LIBDIRSUFFIX} \
+ -DLIB_INSTALL_DIR=lib$LIBDIRSUFFIX \
+ -DQT_PLUGIN_INSTALL_DIR=lib$LIBDIRSUFFIX/qt5/plugins \
+ -DQML_INSTALL_DIR=lib$LIBDIRSUFFIX/qt5/qml \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DBUILD_TESTING=OFF \
+ -DQca-qt5_DIR=/usr/lib${LIBDIRSUFFIX}/cmake/Qca \
+ -DBUILD_SHARED_LIBS=ON \
+ .. || exit 1
+ make $NUMJOBS || make || exit 1
+ make install DESTDIR=$PKG || exit 1
+cd ..
+
+# Strip binaries:
+find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
+
+# Compress manual pages:
+find $PKG/usr/man -type f -exec gzip -9 {} \+
+for i in $( find $PKG/usr/man -type l ) ; do
+ ln -s $( readlink $i ).gz $i.gz
+ rm $i
+done
+
+# Compress info files, if any:
+if [ -d $PKG/usr/info ]; then
+ ( cd $PKG/usr/info
+ rm -f dir
+ gzip -9 *
+ )
+fi
+
+# Add a documentation directory:
+mkdir -p $PKG/usr/doc/${PKGNAM}-$VERSION
+cp -a \
+ AUTHORS* ChangeLog CHANGES COPYING* LICENSE* NEWS* README* THANKS* TODO* \
+ $PKG/usr/doc/${PKGNAM}-$VERSION
+
+# If there's a ChangeLog, installing at least part of the recent history
+# is useful, but don't let it get totally out of control:
+if [ -r ChangeLog ]; then
+ DOCSDIR=$(echo $PKG/usr/doc/${PKGNAM}-$VERSION)
+ cat ChangeLog | head -n 1000 > $DOCSDIR/ChangeLog
+ touch -r ChangeLog $DOCSDIR/ChangeLog
+fi
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $PKG
+/sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz
diff --git a/source/kde/kImageAnnotator/kImageAnnotator.url b/source/kde/kImageAnnotator/kImageAnnotator.url
new file mode 100644
index 000000000..8a63d9749
--- /dev/null
+++ b/source/kde/kImageAnnotator/kImageAnnotator.url
@@ -0,0 +1 @@
+https://github.com/ksnip/kImageAnnotator
diff --git a/source/kde/kImageAnnotator/slack-desc b/source/kde/kImageAnnotator/slack-desc
new file mode 100644
index 000000000..f80b3c98a
--- /dev/null
+++ b/source/kde/kImageAnnotator/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in. You must
+# make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':'.
+
+ |-----handy-ruler------------------------------------------------------|
+kImageAnnotator: kImageAnnotator (library for annotating images)
+kImageAnnotator:
+kImageAnnotator: This package installs a library that is useful for annotating images.
+kImageAnnotator:
+kImageAnnotator:
+kImageAnnotator:
+kImageAnnotator:
+kImageAnnotator:
+kImageAnnotator:
+kImageAnnotator:
+kImageAnnotator:
diff --git a/source/kde/kde/build/cantor b/source/kde/kde/build/cantor
index 0cfbf0888..d00491fd7 100644
--- a/source/kde/kde/build/cantor
+++ b/source/kde/kde/build/cantor
@@ -1 +1 @@
-2
+1
diff --git a/source/kde/kde/build/kdesdk-kioslaves b/source/kde/kde/build/kdesdk-kio
index d00491fd7..d00491fd7 100644
--- a/source/kde/kde/build/kdesdk-kioslaves
+++ b/source/kde/kde/build/kdesdk-kio
diff --git a/source/kde/kde/build/kig b/source/kde/kde/build/kig
index 0cfbf0888..d00491fd7 100644
--- a/source/kde/kde/build/kig
+++ b/source/kde/kde/build/kig
@@ -1 +1 @@
-2
+1
diff --git a/source/kde/kde/build/zeroconf-ioslave b/source/kde/kde/build/kio-zeroconf
index d00491fd7..d00491fd7 100644
--- a/source/kde/kde/build/zeroconf-ioslave
+++ b/source/kde/kde/build/kio-zeroconf
diff --git a/source/kde/kde/build/kitinerary b/source/kde/kde/build/kitinerary
index 0cfbf0888..d00491fd7 100644
--- a/source/kde/kde/build/kitinerary
+++ b/source/kde/kde/build/kitinerary
@@ -1 +1 @@
-2
+1
diff --git a/source/kde/kde/build/kmymoney b/source/kde/kde/build/kmymoney
index d00491fd7..0cfbf0888 100644
--- a/source/kde/kde/build/kmymoney
+++ b/source/kde/kde/build/kmymoney
@@ -1 +1 @@
-1
+2
diff --git a/source/kde/kde/build/kopeninghours b/source/kde/kde/build/kopeninghours
index 0cfbf0888..d00491fd7 100644
--- a/source/kde/kde/build/kopeninghours
+++ b/source/kde/kde/build/kopeninghours
@@ -1 +1 @@
-2
+1
diff --git a/source/kde/kde/build/krita b/source/kde/kde/build/krita
index b8626c4cf..d00491fd7 100644
--- a/source/kde/kde/build/krita
+++ b/source/kde/kde/build/krita
@@ -1 +1 @@
-4
+1
diff --git a/source/kde/kde/build/ksanecore b/source/kde/kde/build/ksanecore
new file mode 100644
index 000000000..d00491fd7
--- /dev/null
+++ b/source/kde/kde/build/ksanecore
@@ -0,0 +1 @@
+1
diff --git a/source/kde/kde/build/kwallet b/source/kde/kde/build/kwallet
index d00491fd7..0cfbf0888 100644
--- a/source/kde/kde/build/kwallet
+++ b/source/kde/kde/build/kwallet
@@ -1 +1 @@
-1
+2
diff --git a/source/kde/kde/build/okular b/source/kde/kde/build/okular
index 0cfbf0888..d00491fd7 100644
--- a/source/kde/kde/build/okular
+++ b/source/kde/kde/build/okular
@@ -1 +1 @@
-2
+1
diff --git a/source/kde/kde/cmake/okular b/source/kde/kde/cmake/okular
new file mode 100644
index 000000000..09b776662
--- /dev/null
+++ b/source/kde/kde/cmake/okular
@@ -0,0 +1,23 @@
+mkdir cmake-build
+cd cmake-build
+ cmake \
+ $KDE_OPT_ARGS \
+ -DKDE_PLATFORM_FEATURE_DISABLE_DEPRECATED=TRUE \
+ -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
+ -DCMAKE_C_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
+ -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
+ -DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DMAN_INSTALL_DIR=/usr/man \
+ -DSYSCONF_INSTALL_DIR=/etc/kde \
+ -DLIB_SUFFIX=${LIBDIRSUFFIX} \
+ -DLIB_INSTALL_DIR=lib$LIBDIRSUFFIX \
+ -DQT_PLUGIN_INSTALL_DIR=lib$LIBDIRSUFFIX/qt5/plugins \
+ -DQML_INSTALL_DIR=lib$LIBDIRSUFFIX/qt5/qml \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DBUILD_TESTING=OFF \
+ -DQca-qt5_DIR=/usr/lib${LIBDIRSUFFIX}/cmake/Qca \
+ -DFORCE_NOT_REQUIRED_DEPENDENCIES=Discount \
+ ..
+
diff --git a/source/kde/kde/modules/all-packaged-applications b/source/kde/kde/modules/all-packaged-applications
index 9721f6b6b..8e290c0d0 100644
--- a/source/kde/kde/modules/all-packaged-applications
+++ b/source/kde/kde/modules/all-packaged-applications
@@ -54,6 +54,7 @@ libkipi
kipi-plugins
libkexiv2
libkdcraw
+ksanecore
libksane
gwenview
kio-extras
@@ -86,7 +87,7 @@ dolphin-plugins
kcachegrind
kde-dev-scripts
kde-dev-utils
-kdesdk-kioslaves
+kdesdk-kio
kdesdk-thumbnailers
kross-interpreters
libkomparediff2
@@ -119,7 +120,7 @@ k3b
kamoso
elisa
kdenetwork-filesharing
-zeroconf-ioslave
+kio-zeroconf
kget
kopete
krdc
diff --git a/source/kde/kde/modules/applications b/source/kde/kde/modules/applications
index 26b38adcf..26b9d681b 100644
--- a/source/kde/kde/modules/applications
+++ b/source/kde/kde/modules/applications
@@ -5,6 +5,7 @@ libkipi
kipi-plugins
libkexiv2
libkdcraw
+ksanecore
libksane
gwenview
@@ -50,7 +51,7 @@ dolphin-plugins
kcachegrind
kde-dev-scripts
kde-dev-utils
-kdesdk-kioslaves
+kdesdk-kio
kdesdk-thumbnailers
kross-interpreters
libkomparediff2
@@ -91,7 +92,7 @@ elisa
# kdenetwork:
kdenetwork-filesharing
-zeroconf-ioslave
+kio-zeroconf
kget
kopete
krdc
diff --git a/source/kde/kde/patch/kate/kate_runasroot.patch b/source/kde/kde/patch/kate/kate_runasroot.patch
index 7d2bc3c85..3b602bbd3 100644
--- a/source/kde/kde/patch/kate/kate_runasroot.patch
+++ b/source/kde/kde/patch/kate/kate_runasroot.patch
@@ -1,6 +1,6 @@
---- ./kwrite/main.cpp.orig 2022-04-22 01:59:34.794311631 -0500
-+++ ./kwrite/main.cpp 2022-04-22 02:01:06.318313678 -0500
-@@ -46,13 +46,11 @@
+--- ./apps/kwrite/main.cpp.orig 2022-08-10 16:31:50.000000000 -0500
++++ ./apps/kwrite/main.cpp 2022-08-18 14:52:20.879066078 -0500
+@@ -32,13 +32,11 @@
"Instead use KWrite normally and you will be prompted for elevated privileges when "
"saving documents if needed."
<< std::endl;
@@ -14,9 +14,9 @@
}
}
#endif
---- ./kate/main.cpp.orig 2022-04-22 01:59:34.794311631 -0500
-+++ ./kate/main.cpp 2022-04-22 02:01:46.125314569 -0500
-@@ -54,13 +54,11 @@
+--- ./apps/kate/main.cpp.orig 2022-08-10 16:31:50.000000000 -0500
++++ ./apps/kate/main.cpp 2022-08-18 14:52:20.879066078 -0500
+@@ -52,13 +52,11 @@
"Instead use Kate normally and you will be prompted for elevated privileges when "
"saving documents if needed."
<< std::endl;
diff --git a/source/kde/kde/slack-desc/audiocd-kio b/source/kde/kde/slack-desc/audiocd-kio
index c666c9f79..b388035f6 100644
--- a/source/kde/kde/slack-desc/audiocd-kio
+++ b/source/kde/kde/slack-desc/audiocd-kio
@@ -6,13 +6,13 @@
# leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
-audiocd-kio: audiocd-kio (audiocd kio slave)
-audiocd-kio:
-audiocd-kio: Audiocd kio slave.
-audiocd-kio:
-audiocd-kio:
-audiocd-kio:
+audiocd-kio: audiocd-kio (audiocd KIO worker)
audiocd-kio:
+audiocd-kio: KIO AudioCD is a KIO worker that enables KIO-aware applications (such
+audiocd-kio: as Dolphin or k3b) to access audio and CD text data on audio compact
+audiocd-kio: disks. It allows transparent drag and drop conversion of audio data
+audiocd-kio: into the popular formats and has a configuration System Settings
+audiocd-kio: module available in the "Multimedia" section.
audiocd-kio:
audiocd-kio:
audiocd-kio:
diff --git a/source/kde/kde/slack-desc/kdesdk-kio b/source/kde/kde/slack-desc/kdesdk-kio
new file mode 100644
index 000000000..a8a475401
--- /dev/null
+++ b/source/kde/kde/slack-desc/kdesdk-kio
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|' on
+# the right side marks the last column you can put a character in. You must make
+# exactly 11 lines for the formatting to be correct. It's also customary to
+# leave one space after the ':'.
+
+ |-----handy-ruler------------------------------------------------------|
+kdesdk-kio: kdesdk-kio (KIO workers useful for software development)
+kdesdk-kio:
+kdesdk-kio: This package includes the svn and svn+ssh KIO plugins, which allows
+kdesdk-kio: KDE applications to browse remote Subversion repositories, and the
+kdesdk-kio: perldoc KIO plugin, which can be used to browse the Perl documentation
+kdesdk-kio: within Konqueror.
+kdesdk-kio:
+kdesdk-kio:
+kdesdk-kio:
+kdesdk-kio:
+kdesdk-kio:
diff --git a/source/kde/kde/slack-desc/kdesdk-kioslaves b/source/kde/kde/slack-desc/kio-zeroconf
index 70d7d75d4..1df605ec8 100644
--- a/source/kde/kde/slack-desc/kdesdk-kioslaves
+++ b/source/kde/kde/slack-desc/kio-zeroconf
@@ -5,15 +5,15 @@
# exactly 11 lines for the formatting to be correct. It's also customary to
# leave one space after the ':'.
- |-----handy-ruler------------------------------------------------------|
-kdesdk-kioslaves: kdesdk-kioslaves (KIO-slaves for KDE SDK)
-kdesdk-kioslaves:
-kdesdk-kioslaves: This package contains KIO-slaves for KDE SDK.
-kdesdk-kioslaves:
-kdesdk-kioslaves:
-kdesdk-kioslaves:
-kdesdk-kioslaves:
-kdesdk-kioslaves:
-kdesdk-kioslaves:
-kdesdk-kioslaves:
-kdesdk-kioslaves:
+ |-----handy-ruler------------------------------------------------------|
+kio-zeroconf: kio-zeroconf (network monitor for zeroconf)
+kio-zeroconf:
+kio-zeroconf: A network monitor for DNS-SD services (Zeroconf).
+kio-zeroconf:
+kio-zeroconf:
+kio-zeroconf:
+kio-zeroconf:
+kio-zeroconf:
+kio-zeroconf:
+kio-zeroconf:
+kio-zeroconf:
diff --git a/source/kde/kde/slack-desc/ksanecore b/source/kde/kde/slack-desc/ksanecore
new file mode 100644
index 000000000..3d728d2b8
--- /dev/null
+++ b/source/kde/kde/slack-desc/ksanecore
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in. You must
+# make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':'.
+
+ |-----handy-ruler------------------------------------------------------|
+ksanecore: ksanecore (Qt scanner interface library)
+ksanecore:
+ksanecore: KSaneCore is a library that provides a Qt interface for the SANE
+ksanecore: library to control scanner hardware.
+ksanecore:
+ksanecore:
+ksanecore:
+ksanecore:
+ksanecore:
+ksanecore:
+ksanecore:
diff --git a/source/kde/kde/slack-desc/zeroconf-ioslave b/source/kde/kde/slack-desc/zeroconf-ioslave
deleted file mode 100644
index 0a881c204..000000000
--- a/source/kde/kde/slack-desc/zeroconf-ioslave
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description. Line
-# up the first '|' above the ':' following the base package name, and the '|' on
-# the right side marks the last column you can put a character in. You must make
-# exactly 11 lines for the formatting to be correct. It's also customary to
-# leave one space after the ':'.
-
- |-----handy-ruler------------------------------------------------------|
-zeroconf-ioslave: zeroconf-ioslave (network monitor for zeroconf)
-zeroconf-ioslave:
-zeroconf-ioslave: A network monitor for DNS-SD services (Zeroconf).
-zeroconf-ioslave:
-zeroconf-ioslave:
-zeroconf-ioslave:
-zeroconf-ioslave:
-zeroconf-ioslave:
-zeroconf-ioslave:
-zeroconf-ioslave:
-zeroconf-ioslave: