Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
emerge kmail (KDE Meta ebuilds verwenden)
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

Goto page Previous  1, 2  
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) Deutsche Dokumentation
View previous topic :: View next topic  
Author Message
ank666
Guru
Guru


Joined: 12 May 2004
Posts: 319
Location: CO/BY/DE

PostPosted: Thu Dec 09, 2004 8:27 am    Post subject: Reply with quote

Earthwings wrote:
Was sagen denn die logfiles?

Aus dem Gedächtnis, kdm sagt, dass der den Initial Greeting Screen nicht starten kann.

Genauere Logfiles liefere ich später nach, hab das Notebook im Moment nicht dabei.
_________________
Auf der Verpackung stand benötigt Windows 9x/2000/XP oder BESSER, deshalb hab ich Linux installiert
Back to top
View user's profile Send private message
Linuxpeter
Guru
Guru


Joined: 28 May 2004
Posts: 403
Location: Dresden, Germany

PostPosted: Thu Dec 09, 2004 1:38 pm    Post subject: Reply with quote

Bei mir war das Problem, das ich kdebase-startkde zwar installiert hatte, die /usr/kde/3.3/startkde aber leer war.
Habe dann eben die startkde aus dem kdebase-Tarball reinkopiert.

Jetzt muß ich bloß noch rauskriegen, welches meta-ebuild für das Panel zuständig ist. :roll:
_________________
Regards, Linuxpeter
Wenn "Windows" die Antwort ist, war es eine dumme Frage. ;-)
Is "Windows" the answer, then it was a stupid question. ;-)
Back to top
View user's profile Send private message
Carlo
Developer
Developer


Joined: 12 Aug 2002
Posts: 3356

PostPosted: Thu Dec 09, 2004 2:12 pm    Post subject: Reply with quote

Linuxpeter wrote:
Jetzt muß ich bloß noch rauskriegen, welches meta-ebuild für das Panel zuständig ist. :roll:

Welches Panel? Meinst Du Kicker?
_________________
Please make sure that you have searched for an answer to a question after reading all the relevant docs.
Back to top
View user's profile Send private message
Linuxpeter
Guru
Guru


Joined: 28 May 2004
Posts: 403
Location: Dresden, Germany

PostPosted: Thu Dec 09, 2004 2:31 pm    Post subject: Reply with quote

Ja Carlo, habs mittlerweile auch festgestellt :wink:
_________________
Regards, Linuxpeter
Wenn "Windows" die Antwort ist, war es eine dumme Frage. ;-)
Is "Windows" the answer, then it was a stupid question. ;-)
Back to top
View user's profile Send private message
morbus
Tux's lil' helper
Tux's lil' helper


Joined: 10 May 2004
Posts: 139
Location: Munich

PostPosted: Thu Dec 09, 2004 3:35 pm    Post subject: Reply with quote

Hi,
nur mal interessehalber: Weiß jemand, wann die kde-3.2.2 pakete in diesen tree kommen?
Back to top
View user's profile Send private message
ank666
Guru
Guru


Joined: 12 May 2004
Posts: 319
Location: CO/BY/DE

PostPosted: Thu Dec 09, 2004 5:50 pm    Post subject: Reply with quote

Danke, die startkde war wirklich leer!
Nächste Frage, wie kann ich das ganze jetzt eindeutschen, wenn ich i18-n emergen will,
das zieht das kdebase mit sich, ein i18-n-meta hab ich nicht gefunden.

[EDIT]

k3b und amarok merken übrigens auch nix von der installierten kdebase-meta,
kann ich es ihnen irgendwie klar machen, das die meta-base installiert ist und sie deshalb die normale gar nicht mehr brauchen?
_________________
Auf der Verpackung stand benötigt Windows 9x/2000/XP oder BESSER, deshalb hab ich Linux installiert
Back to top
View user's profile Send private message
morbus
Tux's lil' helper
Tux's lil' helper


Joined: 10 May 2004
Posts: 139
Location: Munich

PostPosted: Sat Dec 11, 2004 5:04 pm    Post subject: Reply with quote

Also, die 3.3.2 pakete sind jetzt da ;-)
Back to top
View user's profile Send private message
Linuxpeter
Guru
Guru


Joined: 28 May 2004
Posts: 403
Location: Dresden, Germany

PostPosted: Sat Dec 11, 2004 5:35 pm    Post subject: Reply with quote

Versuch mal mit
Code:

$ emerge --oneshot --nodeps k3b

Alle anderen Abhängigkeiten sollten aber schon erledigt sein.
_________________
Regards, Linuxpeter
Wenn "Windows" die Antwort ist, war es eine dumme Frage. ;-)
Is "Windows" the answer, then it was a stupid question. ;-)
Back to top
View user's profile Send private message
ank666
Guru
Guru


Joined: 12 May 2004
Posts: 319
Location: CO/BY/DE

PostPosted: Sat Dec 11, 2004 5:46 pm    Post subject: Reply with quote

Nochmal Dankeschön an Linuxpeter, wollte es evtl. mit --inject versuchen, aber das ist wohl auch nicht so das Wahre.
_________________
Auf der Verpackung stand benötigt Windows 9x/2000/XP oder BESSER, deshalb hab ich Linux installiert
Back to top
View user's profile Send private message
morbus
Tux's lil' helper
Tux's lil' helper


Joined: 10 May 2004
Posts: 139
Location: Munich

PostPosted: Sat Jan 08, 2005 11:16 am    Post subject: Reply with quote

Hi,
Da ich gerne ein stable-System habe, fand ich es nervig, immer nachzukucken, welche ungesplittete kde-Version denn gerade stable war. Also habe ich mir ein quick'n'dirty-Skript geschriebe, dem der Programmname (also z.B. kaboodle) übergeben wird, das dann nachschaut, zu welchem Paket das gehört, ausprobiert, welche Version portage von dem originalen ebuild installieren würde und dann die portage.keywords anpasst (also in meinem Fall =kde-base/kaboodle-3.3.1 ~x86) hinzufügt.

Vielleicht nützt es ja jemandem...

Code:


#!/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

Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) Deutsche Dokumentation All times are GMT
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum