summaryrefslogtreecommitdiffstats
path: root/trinity-base/tdm/files/tdm-9999-xsession.script
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-12-01 23:04:48 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2020-12-01 23:05:44 +0100
commit229d992d63f42e0817ed95ae6b4f0c84ac9be632 (patch)
tree7ab6d63d968f3f750c20be9b26e127cce365d791 /trinity-base/tdm/files/tdm-9999-xsession.script
parentffa1136dab5c48c56fafee281dbe7f03c51ec87f (diff)
downloadtde-packaging-gentoo-229d992d63f42e0817ed95ae6b4f0c84ac9be632.tar.gz
tde-packaging-gentoo-229d992d63f42e0817ed95ae6b4f0c84ac9be632.zip
trinity-base/tdm: Fix 14.0.8 install script, add missing || die
...in various places. Also: - sort IUSE, DEPEND - double brackets - sync pkg_postinst message in live ebuild Package-Manager: Portage-3.0.11, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'trinity-base/tdm/files/tdm-9999-xsession.script')
-rw-r--r--trinity-base/tdm/files/tdm-9999-xsession.script66
1 files changed, 0 insertions, 66 deletions
diff --git a/trinity-base/tdm/files/tdm-9999-xsession.script b/trinity-base/tdm/files/tdm-9999-xsession.script
deleted file mode 100644
index a131c29c..00000000
--- a/trinity-base/tdm/files/tdm-9999-xsession.script
+++ /dev/null
@@ -1,66 +0,0 @@
-#! /bin/sh
-# Xsession - run as user
-
-session=$1
-
-# Note that the respective logout scripts are not sourced.
-case $SHELL in
- */bash)
- [ -z "$BASH" ] && exec $SHELL $0 "$@"
- set +o posix
- [ -f /etc/profile ] && . /etc/profile
- if [ -f $HOME/.bash_profile ]; then
- . $HOME/.bash_profile
- elif [ -f $HOME/.bash_login ]; then
- . $HOME/.bash_login
- elif [ -f $HOME/.profile ]; then
- . $HOME/.profile
- fi
- ;;
- */zsh)
- [ -z "$ZSH_NAME" ] && exec $SHELL $0 "$@"
- emulate -R zsh
- [ -d /etc/zsh ] && zdir=/etc/zsh || zdir=/etc
- zhome=${ZDOTDIR:-$HOME}
- # zshenv is always sourced automatically.
- [ -f $zdir/zprofile ] && . $zdir/zprofile
- [ -f $zhome/.zprofile ] && . $zhome/.zprofile
- [ -f $zdir/zlogin ] && . $zdir/zlogin
- [ -f $zhome/.zlogin ] && . $zhome/.zlogin
- setopt shwordsplit noextendedglob
- ;;
- */csh|*/tcsh)
- # [t]cshrc is always sourced automatically.
- # Note that sourcing csh.login after .cshrc is non-standard.
- xsess_tmp=`mktemp /tmp/xsess-env-XXXXXX`
- $SHELL -c "if (-f /etc/csh.login) source /etc/csh.login; if (-f ~/.login) source ~/.login; /bin/sh -c export -p >! $xsess_tmp"
- . $xsess_tmp
- rm -f $xsess_tmp
- ;;
- *) # Plain sh, ksh, and anything we don't know.
- [ -f /etc/profile ] && . /etc/profile
- [ -f $HOME/.profile ] && . $HOME/.profile
- ;;
-esac
-
-[ -f /etc/xprofile ] && . /etc/xprofile
-[ -f $HOME/.xprofile ] && . $HOME/.xprofile
-
-case $session in
- "")
- exec xmessage -center -buttons OK:0 -default OK "Sorry, $DESKTOP_SESSION is no valid session."
- ;;
- failsafe)
- exec xterm -geometry 80x24-0-0
- ;;
- custom)
- exec /bin/sh $HOME/.xsession
- ;;
- default)
- exec @TRINITY_INSTALL_PATH@/bin/starttde
- ;;
- *)
- eval exec "$session"
- ;;
-esac
-exec xmessage -center -buttons OK:0 -default OK "Sorry, cannot execute $session. Check $DESKTOP_SESSION.desktop."