diff options
author | 2005-04-05 12:29:39 +0000 | |
---|---|---|
committer | 2005-04-05 12:29:39 +0000 | |
commit | 601478ebe5e59a20534f91c6a19b5a9aea6afb4f (patch) | |
tree | b14a283aaaece2240b0448ee0edbf8be131208b7 /kde-base/kdebase-data | |
parent | remove the -1 argument from enewgroup, fixing bug #87940 by Dmitri Vassilenko... (diff) | |
download | historical-601478ebe5e59a20534f91c6a19b5a9aea6afb4f.tar.gz historical-601478ebe5e59a20534f91c6a19b5a9aea6afb4f.tar.bz2 historical-601478ebe5e59a20534f91c6a19b5a9aea6afb4f.zip |
Remove old files.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'kde-base/kdebase-data')
-rw-r--r-- | kde-base/kdebase-data/files/agent-shutdown.sh | 13 | ||||
-rw-r--r-- | kde-base/kdebase-data/files/agent-startup.sh | 19 | ||||
-rw-r--r-- | kde-base/kdebase-data/files/startkde-3.4.0_rc1-gentoo.diff | 47 |
3 files changed, 0 insertions, 79 deletions
diff --git a/kde-base/kdebase-data/files/agent-shutdown.sh b/kde-base/kdebase-data/files/agent-shutdown.sh deleted file mode 100644 index 09c026605b12..000000000000 --- a/kde-base/kdebase-data/files/agent-shutdown.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/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-data/files/agent-startup.sh b/kde-base/kdebase-data/files/agent-startup.sh deleted file mode 100644 index 6b7be61a9904..000000000000 --- a/kde-base/kdebase-data/files/agent-startup.sh +++ /dev/null @@ -1,19 +0,0 @@ -# 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-data/files/startkde-3.4.0_rc1-gentoo.diff b/kde-base/kdebase-data/files/startkde-3.4.0_rc1-gentoo.diff deleted file mode 100644 index ab6e2798a60a..000000000000 --- a/kde-base/kdebase-data/files/startkde-3.4.0_rc1-gentoo.diff +++ /dev/null @@ -1,47 +0,0 @@ ---- 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 - |