Aus dem Gedächtnis, kdm sagt, dass der den Initial Greeting Screen nicht starten kann.Earthwings wrote:Was sagen denn die logfiles?
Genauere Logfiles liefere ich später nach, hab das Notebook im Moment nicht dabei.
Aus dem Gedächtnis, kdm sagt, dass der den Initial Greeting Screen nicht starten kann.Earthwings wrote:Was sagen denn die logfiles?



Code: Select all
$ emerge --oneshot --nodeps k3b
Code: Select all
#!/bin/bash
#written by M.Reincke (mreincke@gmx.net)
#The kde-overly-directory
OPATH='/usr/local/portage/kde-base/'
#it's quite annoying, but we need this to grep KMNAME. 3.3.1 is the only version (in my tree)
#such that for every package exists an ebuild with this. You may change this value...
PV=3.3.1
NAME=$1
export `grep KMNAME $OPATH$NAME/$NAME-$PV.ebuild`
#bash doesn't like me so I need a temp-file
emerge -pO $KMNAME > temp
LAST_VER=`grep $KMNAME temp`
rm temp
#cut down to the version...
LAST_VER=`echo $LAST_VER | sed 's/\[ebuild N ] //'`
LAST_VER=`echo $LAST_VER | sed 's/kde-base\///'`
LAST_VER=`echo $LAST_VER | sed -e 's/k[^\-]*\-//g'`
#Add it to /etc/portage/package.keywords
echo "#Added by update-keyword" >> /etc/portage/package.keywords
echo "=kde-base/$NAME-$LAST_VER ~x86" >> /etc/portage/package.keywords