diff options
author | Dan Armak <danarmak@gentoo.org> | 2005-03-13 20:00:04 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2005-03-13 20:00:04 +0000 |
commit | b84aae91dcda4666c0f8ae9dd7e4dc5003bc5818 (patch) | |
tree | 38aaf8ce4342cc749d5139bba85aa7755401ad3c /kde-base/kdebase-startkde/files | |
parent | Added ~ppc64 to KEYWORDS (diff) | |
download | gentoo-2-b84aae91dcda4666c0f8ae9dd7e4dc5003bc5818.tar.gz gentoo-2-b84aae91dcda4666c0f8ae9dd7e4dc5003bc5818.tar.bz2 gentoo-2-b84aae91dcda4666c0f8ae9dd7e4dc5003bc5818.zip |
Ooops. removed by mistake. This ebuild is _not_ replaced by kdebase-data. Readding.
(Portage version: 2.0.51.19)
Diffstat (limited to 'kde-base/kdebase-startkde/files')
4 files changed, 84 insertions, 0 deletions
diff --git a/kde-base/kdebase-startkde/files/agent-shutdown.sh b/kde-base/kdebase-startkde/files/agent-shutdown.sh new file mode 100644 index 000000000000..09c026605b12 --- /dev/null +++ b/kde-base/kdebase-startkde/files/agent-shutdown.sh @@ -0,0 +1,13 @@ +#!/bin/sh +# +# Customized agents shutdown file +# +#if [ -x /usr/bin/gpg-agent -a -n "$GPG_AGENT_INFO" ]; then +# kill $(echo ${GPG_AGENT_INFO} | cut -d':' -f 2) 2>&1 >/dev/null +#fi +# +#if [ -x /usr/bin/ssh-agent ]; then +# eval "$(/usr/bin/ssh-agent -k)" +#fi +# + diff --git a/kde-base/kdebase-startkde/files/agent-startup.sh b/kde-base/kdebase-startkde/files/agent-startup.sh new file mode 100644 index 000000000000..6b7be61a9904 --- /dev/null +++ b/kde-base/kdebase-startkde/files/agent-startup.sh @@ -0,0 +1,19 @@ +# Agents startup file +# +# This file is sourced at kde startup, so that +# the environment variables set here are available +# throughout the session. + +# Uncomment the following lines to start gpg-agent +# and/or ssh-agent at kde startup. +# If you do so, do not forget to uncomment the respective +# lines in KDEDIR/shutdown/agent-shutdown.sh to +# properly kill the agents when the session ends. + +#if [ -x /usr/bin/gpg-agent ]; then +# eval "$(/usr/bin/gpg-agent --daemon)" +#fi +# +#if [ -x /usr/bin/ssh-agent ]; then +# eval "$(/usr/bin/ssh-agent -s)" +#fi diff --git a/kde-base/kdebase-startkde/files/digest-kdebase-startkde-3.4.0_rc1-r1 b/kde-base/kdebase-startkde/files/digest-kdebase-startkde-3.4.0_rc1-r1 new file mode 100644 index 000000000000..50a97273ebb8 --- /dev/null +++ b/kde-base/kdebase-startkde/files/digest-kdebase-startkde-3.4.0_rc1-r1 @@ -0,0 +1,5 @@ +MD5 46a0b6a8f72b16812d4ad745902fdcf5 kdebase-3.3.90.tar.bz2 20659998 +MD5 cd0819379968496b415c3a4121272e1f kdebase-3.3.90-3.3.91.tar.xdelta 3128388 +MD5 3889cab60fdb15738a20aa9ba0f9c893 kdebase-3.3.91-3.3.92.tar.xdelta 3499698 +MD5 1a7dca351aec8b4eff89a78eba743268 kdebase-3.3.92-3.4.0-rc1.tar.xdelta 3102730 +MD5 0face9841cfe0babf3f7003822d25427 kdebase-3.4.0-rc1.tar.bz2 22684133 diff --git a/kde-base/kdebase-startkde/files/startkde-3.4.0_rc1-gentoo.diff b/kde-base/kdebase-startkde/files/startkde-3.4.0_rc1-gentoo.diff new file mode 100644 index 000000000000..ab6e2798a60a --- /dev/null +++ b/kde-base/kdebase-startkde/files/startkde-3.4.0_rc1-gentoo.diff @@ -0,0 +1,47 @@ +--- startkde.orig 2005-02-23 13:24:24.000000000 +0200 ++++ startkde 2005-02-27 21:08:37.483412112 +0200 +@@ -14,14 +14,42 @@ + exit 1 + fi + +-# Set the background to plain grey. ++# Set the background to plain cyan. + # The standard X background is nasty, causing moire effects and exploding + # people's heads. We use colours from the standard KDE palette for those with + # palettised displays. + if test -z "$XDM_MANAGED" || echo "$XDM_MANAGED" | grep ",auto" > /dev/null; then +- xsetroot -solid "#C0C0C0" ++ xsetroot -solid "#5477A0" + fi + ++# Gentoo part begins ++ ++export PATH="_KDEDIR_/bin:${PATH}" ++ ++# Handle ~/.kde* dirs - separate ones for separate KDEs. ++# We've backtracked on the scheme where .kdeX.Y directories are temporarily ++# moved to .kde. ++cd ~ ++if [ -e .kde ]; then ++ if [ ! -L .kde ]; then ++ /bin/mv -f .kde .kde.backup ++ else ++ rm -f .kde ++ fi ++fi ++if [ ! -e .kde3.4 ]; then ++ if [ -e .kde3.3 ]; then ++ /bin/cp -r .kde3.3 .kde3.4 ++ elif [ -e .kde3.2 ]; then ++ /bin/cp -r .kde3.2 .kde3.4 ++ else ++ /bin/mkdir .kde3.4 ++ fi ++fi ++/bin/ln -sf .kde3.4 .kde ++ ++# Gentoo part ends ++ + # we have to unset this for Darwin since it will screw up KDE's dynamic-loading + unset DYLD_FORCE_FLAT_NAMESPACE + |