diff options
author | Luna Jernberg <droidbittin@gmail.com> | 2024-03-22 08:51:03 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-03-22 09:10:23 +0700 |
commit | 47b09f34e23e132f489359cd5e3e38cd95f500b0 (patch) | |
tree | 90bcb77dece8f6f788b4d369d02c052ef22f23be /desktop/icewm | |
parent | b3c4b444c2706a2a640b225dd49a4848cb85b3b8 (diff) |
desktop/icewm: Updated for version 3.4.6.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop/icewm')
-rw-r--r-- | desktop/icewm/icewm.SlackBuild | 8 | ||||
-rw-r--r-- | desktop/icewm/icewm.info | 10 | ||||
-rw-r--r-- | desktop/icewm/patches/tweak-default-configs.diff | 47 |
3 files changed, 7 insertions, 58 deletions
diff --git a/desktop/icewm/icewm.SlackBuild b/desktop/icewm/icewm.SlackBuild index 09b2d50edcf0..bb7aa78f5018 100644 --- a/desktop/icewm/icewm.SlackBuild +++ b/desktop/icewm/icewm.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=icewm -VERSION=${VERSION:-3.3.0} +VERSION=${VERSION:-3.4.6} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -38,9 +38,6 @@ if [ -z "$ARCH" ]; then esac 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 "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -79,8 +76,6 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# Tweak default configs for keybindings and power management commands -patch -p1 < $CWD/patches/tweak-default-configs.diff CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -102,6 +97,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | \ grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true gzip -9 $PKG/usr/man/man1/*.1 +gzip -9 $PKG/usr/man/man5/*.5 # Include some extra configs mkdir -p $PKG/usr/share/icewm diff --git a/desktop/icewm/icewm.info b/desktop/icewm/icewm.info index 0427fc608de1..d108937fc1be 100644 --- a/desktop/icewm/icewm.info +++ b/desktop/icewm/icewm.info @@ -1,10 +1,10 @@ PRGNAM="icewm" -VERSION="3.3.0" +VERSION="3.4.6" HOMEPAGE="https://ice-wm.org/" -DOWNLOAD="https://github.com/ice-wm/icewm/releases/download/3.3.0/icewm-3.3.0.tar.lz" -MD5SUM="9279482bf7457b2a792526a327414c7f" +DOWNLOAD="https://github.com/ice-wm/icewm/releases/download/3.4.6/icewm-3.4.6.tar.lz" +MD5SUM="3fab5981d3090e5596cddd3148a39459" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="imlib2" -MAINTAINER="Robby Workman" -EMAIL="rworkman@slackbuilds.org" +MAINTAINER="Luna Jernberg" +EMAIL="droidbittin@gmail.com" diff --git a/desktop/icewm/patches/tweak-default-configs.diff b/desktop/icewm/patches/tweak-default-configs.diff deleted file mode 100644 index 0806f558283c..000000000000 --- a/desktop/icewm/patches/tweak-default-configs.diff +++ /dev/null @@ -1,47 +0,0 @@ -diff -Nur icewm-3.3.0.orig/lib/keys.in icewm-3.3.0/lib/keys.in ---- icewm-3.3.0.orig/lib/keys.in 2022-12-20 13:13:05.000000000 -0600 -+++ icewm-3.3.0/lib/keys.in 2022-12-31 17:09:28.481884356 -0600 -@@ -12,8 +12,8 @@ - key "Alt+Ctrl+b" xdg-open about:blank - key "Alt+Ctrl+s" xdg-open https://www.google.com - --key "Super+KP_Subtract" amixer sset Master 5%- --key "Super+KP_Add" amixer sset Master 5%+ -+key "Super+KP_Subtract" pamixer -d 5 -+key "Super+KP_Add" pamixer -i 5 - - # "Multimedia key" bindings for Xorg. Gather the keycodes of your - # advanced function keys by watching the output of the xev command whilest -@@ -22,11 +22,11 @@ - # Note: some of them might have unwanted side effects through concurrency with - # other listeners like systemd for the suspend key events - # --# key "XF86Standby" /bin/sh -c "{ test -e /run/systemd/system && systemctl suspend; } ||:" --# key "XF86Sleep" /bin/sh -c "{ test -e /run/systemd/system && systemctl suspend; } ||:" --key "XF86AudioLowerVolume" amixer sset Master 5%- --key "XF86AudioRaiseVolume" amixer sset Master 5%+ --key "XF86AudioMute" amixer sset Master toggle -+# key "XF86Standby" loginctl suspend -+# key "XF86Sleep" loginctl suspend -+key "XF86AudioLowerVolume" pamixer -d 5 -+key "XF86AudioRaiseVolume" pamixer -i 5 -+key "XF86AudioMute" pamixer -t - key "XF86HomePage" xdg-open about:blank - key "XF86Search" xdg-open https://www.google.com - key "XF86Eject" eject -diff -Nur icewm-3.3.0.orig/src/default.h icewm-3.3.0/src/default.h ---- icewm-3.3.0.orig/src/default.h 2022-12-20 13:13:05.000000000 -0600 -+++ icewm-3.3.0/src/default.h 2022-12-31 17:09:28.481884356 -0600 -@@ -188,9 +188,9 @@ - XSV(const char *, logoutCommand, 0) - XSV(const char *, logoutCancelCommand, 0) - #if __linux__ --XSV(const char *, shutdownCommand, "test -e /run/systemd/system && systemctl poweroff") --XSV(const char *, rebootCommand, "test -e /run/systemd/system && systemctl reboot") --XSV(const char *, suspendCommand, "test -e /run/systemd/system && systemctl suspend") -+XSV(const char *, shutdownCommand, "test -e /run/elogind/users && loginctl poweroff") -+XSV(const char *, rebootCommand, "test -e /run/elogind/users && loginctl reboot") -+XSV(const char *, suspendCommand, "test -e /run/elogind/users && loginctl suspend") - #else - XSV(const char *, shutdownCommand, 0) - XSV(const char *, rebootCommand, 0) |