From b1b35d20ce6b70330b23a9d056dcb44b58795bd6 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Mon, 22 Dec 2014 15:23:54 +0100 Subject: KDE 5 for Slackware current (post-14.1) (16sep2014) The KDE 5 Software Compilation no longer exists as such. The components are now: - Frameworks 5.2.0 - Plasma 5.0.2 These packages need to be installed on top of the most recent KDE 4.14.x because Applications tarballs which build on top of Frameworks and Plasma have not yet been released. --- kde/doinst.sh/oxygen-fonts | 13 +++++++++++++ kde/doinst.sh/sddm-qt5 | 15 +++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 kde/doinst.sh/oxygen-fonts create mode 100644 kde/doinst.sh/sddm-qt5 (limited to 'kde/doinst.sh') diff --git a/kde/doinst.sh/oxygen-fonts b/kde/doinst.sh/oxygen-fonts new file mode 100644 index 0000000..c4bc3b7 --- /dev/null +++ b/kde/doinst.sh/oxygen-fonts @@ -0,0 +1,13 @@ + +# There's no need to chroot and do this during initial +# install, since there is a post-install script that +# does the same thing, saving time. +# Update X font indexes and the font cache: +if [ -x /usr/bin/mkfontdir ]; then + /usr/bin/mkfontscale /usr/share/fonts/TTF + /usr/bin/mkfontdir /usr/share/fonts/TTF +fi +if [ -x /usr/bin/fc-cache ]; then + /usr/bin/fc-cache /usr/share/fonts/TTF +fi + diff --git a/kde/doinst.sh/sddm-qt5 b/kde/doinst.sh/sddm-qt5 new file mode 100644 index 0000000..cd5ea21 --- /dev/null +++ b/kde/doinst.sh/sddm-qt5 @@ -0,0 +1,15 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/sddm.conf.new + -- cgit v1.2.3