diff options
author | Erik Falor <ewfalor@gmail.com> | 2024-01-11 12:56:55 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-01-11 20:50:52 +0700 |
commit | 2f1c7eb1599dca84fbeba531c3826b035850937c (patch) | |
tree | 74e895cbfa6e64081e6acf987c0eb95ad6b2b4b0 /desktop/enlightenment | |
parent | f85db73aae12362ca2f5b078df057964e7b851b2 (diff) |
desktop/enlightenment: Updated for version 0.26.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop/enlightenment')
-rw-r--r-- | desktop/enlightenment/doinst.sh | 6 | ||||
-rw-r--r-- | desktop/enlightenment/enlightenment.SlackBuild | 10 | ||||
-rw-r--r-- | desktop/enlightenment/enlightenment.info | 6 | ||||
-rw-r--r-- | desktop/enlightenment/xinitrc.enlightenment17 | 21 |
4 files changed, 35 insertions, 8 deletions
diff --git a/desktop/enlightenment/doinst.sh b/desktop/enlightenment/doinst.sh index b5948607c766..0f5090731b18 100644 --- a/desktop/enlightenment/doinst.sh +++ b/desktop/enlightenment/doinst.sh @@ -19,3 +19,9 @@ fi if [ -x /usr/bin/update-mime-database ]; then /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi diff --git a/desktop/enlightenment/enlightenment.SlackBuild b/desktop/enlightenment/enlightenment.SlackBuild index b0e64c9110c1..8b87a37a0535 100644 --- a/desktop/enlightenment/enlightenment.SlackBuild +++ b/desktop/enlightenment/enlightenment.SlackBuild @@ -1,7 +1,8 @@ #!/bin/bash # Slackware build script for Enlightenment -# Erik Falor | Logan, UT, USA | ewfalor@gmail.com | February 2022 +# Erik Falor | Logan, UT, USA | ewfalor@gmail.com | January 2024 +# All rights reserved. # Previously by Ryan P.C. McQuen | Everett, WA | ryanpcmcquen@member.fsf.org # Originally by Aleksandar Samardzic <asamardzic@gmail.com> @@ -27,7 +28,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=enlightenment -VERSION=${VERSION:-0.25.1} +VERSION=${VERSION:-0.26.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -68,7 +69,7 @@ else LIBDIRSUFFIX="" fi -DOCS="AUTHORS COPYING INSTALL NEWS README TODO" +DOCS="AUTHORS COPYING README.md TODO.md" set -e @@ -89,8 +90,7 @@ meson . build \ --prefix=/usr/ \ --libdir=/usr/lib${LIBDIRSUFFIX} \ -Dsystemd=false \ - -Dpam=false \ - -Dbuild-id=$ARCH-slackware-linux + -Dpam=true CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ diff --git a/desktop/enlightenment/enlightenment.info b/desktop/enlightenment/enlightenment.info index 2696c3e4e588..ea468f8e1f58 100644 --- a/desktop/enlightenment/enlightenment.info +++ b/desktop/enlightenment/enlightenment.info @@ -1,8 +1,8 @@ PRGNAM="enlightenment" -VERSION="0.25.1" +VERSION="0.26.0" HOMEPAGE="https://www.enlightenment.org/" -DOWNLOAD="https://download.enlightenment.org/rel/apps/enlightenment/enlightenment-0.25.1.tar.xz" -MD5SUM="68d37c845c6a9e24e9b2b9709e5994be" +DOWNLOAD="https://download.enlightenment.org/rel/apps/enlightenment/enlightenment-0.26.0.tar.xz" +MD5SUM="17cbf0f2dfe419019cc90f4392d9980d" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="efl" diff --git a/desktop/enlightenment/xinitrc.enlightenment17 b/desktop/enlightenment/xinitrc.enlightenment17 new file mode 100644 index 000000000000..b930c84d92ae --- /dev/null +++ b/desktop/enlightenment/xinitrc.enlightenment17 @@ -0,0 +1,21 @@ +#!/bin/sh +# $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws Exp $ + +userresources=$HOME/.Xresources +usermodmap=$HOME/.Xmodmap +sysresources=/etc/X11/xinit/.Xresources +sysmodmap=/etc/X11/xinit/.Xmodmap + +# merge in defaults and keymaps +[ -f $sysresources ] && xrdb -merge $sysresources +[ -f $sysmodmap ] && xmodmap $sysmodmap +[ -f $userresources ] && xrdb -merge $userresources +[ -f $usermodmap ] && xmodmap $usermodmap + +# Start the window manager: +if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then + exec ck-launch-session enlightenment_start +else + exec enlightenment_start +fi + |