18 lines
627 B
Bash
Executable File
18 lines
627 B
Bash
Executable File
## http://kde.ground.cz/tiki-index.php?page=Environment+Variables
|
|
## for possible entries here
|
|
|
|
## Make sure KDEDIRS is set
|
|
[ -z "$KDEDIRS" ] && KDEDIRS="/usr" && export KDEDIRS
|
|
|
|
## When/if using prelinking, avoids (some) use of kdeinit
|
|
if [ -f /etc/sysconfig/prelink ]; then
|
|
if [ `grep '^PRELINKING=yes' /etc/sysconfig/prelink` ] ; then
|
|
[ -z "$KDE_IS_PRELINKED" ] && KDE_IS_PRELINKED=1 && export KDE_IS_PRELINKED
|
|
fi
|
|
fi
|
|
|
|
if [ -z "$QT_PLUGIN_PATH" ]; then
|
|
KDE4_LIBDIR=`/bin/rpm --eval '%{?_kde4_libdir}%{!?_kde4_libdir:%{_libdir}}' 2>/dev/null`
|
|
QT_PLUGIN_PATH=${KDE4_LIBDIR}/kde4/plugins && export QT_PLUGIN_PATH
|
|
fi
|