Re: [gentoo-ppc-user] Audio installation

2006-04-04 Thread Michael Hanselmann
Hello Matthew On Mon, Apr 03, 2006 at 07:32:17AM +, Matthew Polashek wrote: I'm interested in making my Powerbook G4 1.5 17 a dual boot Gentoo Which model exactly? Also, I'd like to use a kernel with the Ingo Molnar realtime preemption patch. I don't know that specific patch, but

Re: [gentoo-ppc-user] Audio installation

2006-04-04 Thread Matthew Polashek
Hi! I've got the Powerbook 17 G4 1.5 Ghz model. I think apple only one with that monitor size and processor speed. I got the Video upgrade to 128 and upgraded the hard drive to 5400 rpm. Crappy. Is there a way to run audio apps safely on a PPC processor using Linux? There must be a way to do

Re: [gentoo-ppc-user] Audio installation

2006-04-04 Thread Michael Hanselmann
Hello Matthew On Tue, Apr 04, 2006 at 12:02:19PM +, Matthew Polashek wrote: I've got the Powerbook 17 G4 1.5 Ghz model. I think apple only one with that monitor size and processor speed. Maybe, maybe not. It's not what I asked for. Read the output of grep machine /proc/cpuinfo. There

Re: [gentoo-ppc-user] Audio installation

2006-04-04 Thread Matthew Polashek
Hello Matthew On Tue, Apr 04, 2006 at 12:02:19PM +, Matthew Polashek wrote: I've got the Powerbook 17 G4 1.5 Ghz model. I think apple only one with that monitor size and processor speed. Maybe, maybe not. It's not what I asked for. Read the output of grep machine /proc/cpuinfo. There

Re: [gentoo-user] first ebuild, looking for reviewer

2006-04-04 Thread Roy Wright
OK, I'm having a hard time trying to figure out how to do something really, really simple. I have all of the files unpacked. Now I just want to create a directory and copy them there. Here's the normal, non-ebuild bash commands: mkdir /usr/share/castpodder cp -f -R *

Re: [gentoo-user] every second rightclick in KDE: the context menu does not stay

2006-04-04 Thread Philip Webb
060403 Benno Schulenberg wrote: Upon rightclicking in most KDE apps, a context menu appears; but when moving the mouse a bit away from the menu and rightclicking again, the context menu appears just shortly: it blinks and stays away. This happens in most KDE apps (Konqueror, KMail,

Re: [gentoo-user] first ebuild, looking for reviewer

2006-04-04 Thread Ciaran McCreesh
On Tue, 04 Apr 2006 00:50:54 -0500 Roy Wright [EMAIL PROTECTED] wrote: | mkdir /usr/share/castpodder | cp -f -R * /usr/share/castpodder dodir /usr/share/castpodder cp -f -R * ${D}/usr/share/castpodder will work. Or insinto and doins -r, if you prefer. -- Ciaran McCreesh : Gentoo

[gentoo-user] Problem emerging amule

2006-04-04 Thread Birch
Hi, Could someone please tell me how to solve the following problem? Thanks in advance. - # emerge -a amule These are the packages that I would merge, in order: Calculating dependencies ...done! [ebuild N] net-p2p/amule-2.0.3-r4

Re: [gentoo-user] Re: problems with ifplugd

2006-04-04 Thread Neil Bothwick
On Mon, 03 Apr 2006 23:06:25 +0200, Sven Köhler wrote: Yes, read the example config file I mentioned. Which version baselayout do you have installed? My version is 1.11.14-r6, and that does not include that support yet - IMHO. Also my /etc/conf.d/net.example does not contain any hint

Re: [gentoo-user] Mounting USB Flash Drive

2006-04-04 Thread Neil Bothwick
On Mon, 3 Apr 2006 17:33:55 -0700, Richard Fish wrote: As long as you had the hal USE flag set when you emerged KDE, it should detect the device and offer to mount it for you (KDE 3.5 has an option to mount it automatically). You may need to fiddle with the settings in the Storage Media

Re: [gentoo-user] lsocket!?!

2006-04-04 Thread Graham Murray
Justin Hart [EMAIL PROTECTED] writes: I'm trying to compile some network code... but gcc is telling me cannot find -lsocket libsocket** is nowhere to be found in my library path?!?! Is there a package that I can emerge to acquire this? You should not need -lsocket as all of the socket

Re: [gentoo-user] lsocket!?!

2006-04-04 Thread Matthias Bethke
Hi Justin, on Tuesday, 2006-04-04 at 00:27:18, you wrote: I'm trying to compile some network code... but gcc is telling me cannot find -lsocket That's right, the socket API is part of libc. That's some pretty old code, isn't it? Just leave out the -lsocket and you should be fine. cheers!

Re: [gentoo-user] Problem emerging amule

2006-04-04 Thread Teresa and Dale
One more thing I found: http://forums.gentoo.org/viewtopic-t-450208-highlight-.html Dale :-) -- gentoo-user@gentoo.org mailing list

Re: [gentoo-user] Problem emerging amule

2006-04-04 Thread Birch
Thanks, that solved the problem. :) Teresa and Dale wrote: One more thing I found: http://forums.gentoo.org/viewtopic-t-450208-highlight-.html Dale :-) -- gentoo-user@gentoo.org mailing list

Re: [gentoo-user] Problem emerging amule

2006-04-04 Thread Teresa and Dale
Birch wrote: Thanks, that solved the problem. :) Teresa and Dale wrote: One more thing I found: http://forums.gentoo.org/viewtopic-t-450208-highlight-.html Dale :-) Your welcome. I just ran up on that thread on the forums. I wasn't busy so I was looking at the latest threads

[gentoo-user] can't emerge libMagick: ERROR: media-gfx/imagemagick-6.2.5.5 failed

2006-04-04 Thread michael
I saw someone ask this question a few days ago but didn't see the answer. Nothing on the 'net that I could find. Anyone have any ideas? Last time I did an emerge world may have been almost a month ago. if i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I./magick -I./wand -I. -I.

Re: [gentoo-user] ERROR: media-gfx/imagemagick-6.2.5.5 failed.

2006-04-04 Thread Cláudio Henrique
so, basically, or I change the ebuild by hand, or I wait for the next official one, or I compile with -perl. I'll work it out at home. thanks! regards, claudio. On 4/3/06, Peter Ruskin [EMAIL PROTECTED] wrote: On Tuesday 04 April 2006 01:22, Cláudio Henrique wrote: * No Make or Build file

Re: [gentoo-user] first ebuild, looking for reviewer

2006-04-04 Thread Roy Wright
Ciaran McCreesh wrote: On Tue, 04 Apr 2006 00:50:54 -0500 Roy Wright [EMAIL PROTECTED] wrote: | mkdir /usr/share/castpodder | cp -f -R * /usr/share/castpodder dodir /usr/share/castpodder cp -f -R * ${D}/usr/share/castpodder will work. Or insinto and doins -r, if you prefer. Thank

Re: [gentoo-user] can't emerge libMagick: ERROR: media-gfx/imagemagick-6.2.5.5 failed

2006-04-04 Thread Fabrice Delliaux
[EMAIL PROTECTED] a écrit : I saw someone ask this question a few days ago but didn't see the answer. Nothing on the 'net that I could find. Anyone have any ideas? Look at this bug : http://bugs.gentoo.org/show_bug.cgi?id=128487 -- gentoo-user@gentoo.org mailing list

Re: [gentoo-user] can't emerge libMagick: ERROR: media-gfx/imagemagick-6.2.5.5 failed

2006-04-04 Thread michael
That's it. Thanks! Michael On Tue, 4 Apr 2006, Fabrice Delliaux wrote: [EMAIL PROTECTED] a ??crit : I saw someone ask this question a few days ago but didn't see the answer. Nothing on the 'net that I could find. Anyone have any ideas? Look at this bug :

[gentoo-user] firefox and svg

2006-04-04 Thread CapSel
I wanted to make some animations not using flash so I founded svg, but firefox 1.0.7 does not support it. I emerged adobesvg and: 1. firefox 1.0.7 (-bin) after changeing from page with svg to other crashes all open windows. After right-click I can see menu of adobesvg; without adobesvg it prompts

[gentoo-user] Why does kdevevelop-3.3.2 depend on the old KDE packages arts-3.4.3, kdelibs-3.4.3-r1 and kdesdk-kioslaves-3.4.3?

2006-04-04 Thread Erik
I use KDE 3.5.2 and KDevelop 3.3.2 but it wants me to install some old KDE packages despite that I have dev-util/kdevelop ~x86 in /etc/portage/package.keywords. This looks like a bug with the dependencies: # emerge -Dpv kdevelop These are the packages that would be merged, in order:

Re: [gentoo-user] Beautification - Splash

2006-04-04 Thread Lord Sauron
I was a good cookie and went and tried my best. I did see some signs of success, however, they're not all complete... no pictures. The one sign of success was that the resolution was at [EMAIL PROTECTED], which is a good sign. However, I think that was more attributable to my recompile of the

Re: [gentoo-user] firefox and svg

2006-04-04 Thread Christoph Eckert
Can someone help me? AFAIR Firefox 1.5 supports SVG, but only a subset of the complete specification. I thinks that's why animations do not appear. I also created some simple static SVGs, but Firefoy does not display hatches in objects nor does it render text objects properly. So I

[gentoo-user] emerge without download

2006-04-04 Thread go moko
Hi, all Please excuse my poor english, but I've a problem I didn't find solution for. I've no internet connexion on my Gentoo machine, so I download first all the files and put them in /usr/portage/distfiles. After that, I can make an emerge package. But for some packages, like libXext, emerge

Re: [gentoo-user] firefox and svg

2006-04-04 Thread CapSel
On 4/4/06, Christoph Eckert [EMAIL PROTECTED] wrote: Can someone help me? AFAIR Firefox 1.5 supports SVG, but only a subset of the complete specification. I thinks that's why animations do not appear. I also created some simple static SVGs, but Firefoy does not display hatches in objects

Re: [gentoo-user] Why does kdevevelop-3.3.2 depend on the old KDE packages arts-3.4.3, kdelibs-3.4.3-r1 and kdesdk-kioslaves-3.4.3?

2006-04-04 Thread Rumen Yotov
On Tue, 2006-04-04 at 20:48 +0200, Erik wrote: I use KDE 3.5.2 and KDevelop 3.3.2 but it wants me to install some old KDE packages despite that I have dev-util/kdevelop ~x86 in /etc/portage/package.keywords. This looks like a bug with the dependencies: # emerge -Dpv kdevelop

Re: [gentoo-user] emerge without download

2006-04-04 Thread Devon Miller
Are you sure it's not a dependency? Try emerge -pD libXext to get a list of everything that is needed to build and install that library.dcmOn 4/4/06, go moko [EMAIL PROTECTED] wrote:Hi, all I've no internet connexion on my Gentoo machine, so Idownload first all the files and put them

Re: [gentoo-user] every second rightclick in KDE: the context menu does not stay

2006-04-04 Thread Benno Schulenberg
Hemmann, Volker Armin wrote: a context menu appears; but when moving the mouse a bit (away from the menu) and rightclicking again, the context menu appears just shortly: it blinks and stays away. yepp, see the same - easy workaround: don't release the right mouse button.. as long as you

Re: [gentoo-user] emerge without download

2006-04-04 Thread go moko
--- Devon Miller [EMAIL PROTECTED] wrote: Are you sure it's not a dependency? Try emerge -pD libXext to get a list of everything that is needed to build and install that library. dcm No, I've checked that. And libXext is just an example, but other packages (a minority) act as this one.

Re: [gentoo-user] every second rightclick in KDE: the context menu does not stay

2006-04-04 Thread Benno Schulenberg
Philip Webb wrote: 060403 Benno Schulenberg wrote: Upon rightclicking in most KDE apps, a context menu appears; but when moving the mouse a bit away from the menu and rightclicking again, the context menu appears just shortly: it blinks and stays away. This happens in most KDE apps

Re: [gentoo-user] Why does kdevevelop-3.3.2 depend on the old KDE packages arts-3.4.3, kdelibs-3.4.3-r1 and kdesdk-kioslaves-3.4.3?

2006-04-04 Thread Erik
Rumen Yotov wrote: On Tue, 2006-04-04 at 20:48 +0200, Erik wrote: I use KDE 3.5.2 and KDevelop 3.3.2 but it wants me to install some old KDE packages despite that I have dev-util/kdevelop ~x86 in /etc/portage/package.keywords. This looks like a bug with the dependencies: # emerge

Re: [gentoo-user] Beautification - Splash

2006-04-04 Thread Bo Andresen
On Tuesday 04 April 2006 20:48, Lord Sauron wrote: [SNIP] and then I modified /boot/grub/menu.lst: localhost ~ # cat /boot/grub/menu.lst default 0 timeout 7 splashimage=(hd0,0)/grub/splash.xpm.gz title Current Kernel root (hd0,0) kernel /vmlinuz root=/dev/hda3

[gentoo-user] Re: Why does kdevevelop-3.3.2 depend on the old KDE packages arts-3.4.3, kdelibs-3.4.3-r1 and kdesdk-kioslaves-3.4.3?

2006-04-04 Thread Marc Christiansen
Erik [EMAIL PROTECTED] wrote: I use KDE 3.5.2 and KDevelop 3.3.2 but it wants me to install some old KDE packages despite that I have dev-util/kdevelop ~x86 in /etc/portage/package.keywords. This looks like a bug with the dependencies: # emerge -Dpv kdevelop These are the

Re: [gentoo-user] emerge without download

2006-04-04 Thread Richard Fish
On 4/4/06, go moko [EMAIL PROTECTED] wrote: --- Devon Miller [EMAIL PROTECTED] wrote: Are you sure it's not a dependency? Try emerge -pD libXext to get a list of everything that is needed to build and install that library. dcm No, I've checked that. And libXext is just an example,

Re: [gentoo-user] Xinerama after Modular X upgrade

2006-04-04 Thread Mick
On 03/04/06, Kurt Guenther [EMAIL PROTECTED] wrote: Mick wrote: Shouldn't the second device have a different BusID No? Something like 1:0:1 Yes, if you have two different devices. It's a laptop, so the video has two ports for same device. It worked fine under xorg 6.? . --Kurt Hmm, I

Re: [gentoo-user] ssh2 and xover LAN

2006-04-04 Thread Mick
On 03/04/06, maxim wexler [EMAIL PROTECTED] wrote: [snip] ``/home/heathen/[EMAIL PROTECTED]''. scp:Scp2/scp2.c:618/transfer_ready_cb: Received error SSH_FC_OK, error message . For some reason scp concatenates the source with the destination into one non-existing path. This looks odd

Re: [gentoo-user] Beautification - Splash

2006-04-04 Thread Lord Sauron
Yeah, I read you. I found that during lunch. It works now : ) On 4/4/06, Bo Andresen [EMAIL PROTECTED] wrote: On Tuesday 04 April 2006 20:48, Lord Sauron wrote: [SNIP] and then I modified /boot/grub/menu.lst: localhost ~ # cat /boot/grub/menu.lst default 0 timeout 7

[gentoo-user] PORTAGE_NICENESS for real

2006-04-04 Thread Grant
Is there a way to make the emerge command only use system resources that are not requested by anything else? Whenever I 'emerge sync' or emerge a package my system slows way down and the sound sometimes stutters badly. I'd rather have the emerge process just move really slowly if necessary. I'm

Re: [gentoo-user] Beautification - Splash

2006-04-04 Thread Lord Sauron
To be a bit more verbose... I downloaded the web page to disk so I could toy with it during lunch, when I'm not connected to the internet. After about ten reboots I finally had it nailed down. My Windoze friends are gonna hate this... they've always regarded Window's bootup graphics as making

Re: [gentoo-user] PORTAGE_NICENESS for real

2006-04-04 Thread Iain Buchanan
On Tue, 2006-04-04 at 17:13 -0700, Grant wrote: I'm using PORTAGE_NICENESS=19 in /etc/make.conf and it helps but not enough. meetoo! I've noticed it helps with cpu allocation, but not with the disk. If you're emerging something like sources, or openoffice, portage still gets too much disk

Re: [gentoo-user] PORTAGE_NICENESS for real

2006-04-04 Thread Roy Wright
Iain Buchanan wrote: On Tue, 2006-04-04 at 17:13 -0700, Grant wrote: I'm using PORTAGE_NICENESS=19 in /etc/make.conf and it helps but not enough. meetoo! I've noticed it helps with cpu allocation, but not with the disk. If you're emerging something like sources, or openoffice,

Re: [gentoo-user] PORTAGE_NICENESS for real

2006-04-04 Thread Iain Buchanan
On Tue, 2006-04-04 at 20:18 -0500, Roy Wright wrote: during the day I run nice emerge -uDNav world usually when reading email. CPU load maxes out at around 50%. this is strange - CPU should still go to 100% (if it would without the nice command that is). Nice only affects which

Re: [gentoo-user] lsocket!?!

2006-04-04 Thread Justin Hart
Haha. Yes. My code from Solaris. Thanks. Justin On 4/4/06, Matthias Bethke [EMAIL PROTECTED] wrote: Hi Justin, on Tuesday, 2006-04-04 at 00:27:18, you wrote: I'm trying to compile some network code... but gcc is telling me cannot find -lsocket That's right, the socket API is part of

Re: [gentoo-user] PORTAGE_NICENESS for real

2006-04-04 Thread Hemmann, Volker Armin
On Wednesday 05 April 2006 02:13, Grant wrote: Is there a way to make the emerge command only use system resources that are not requested by anything else? Whenever I 'emerge sync' or emerge a package my system slows way down and the sound sometimes stutters badly. I'd rather have the emerge

Re: [gentoo-user] PORTAGE_NICENESS for real

2006-04-04 Thread Glenn Enright
On Wednesday 05 April 2006 12:56, Iain Buchanan wrote: meetoo! I've noticed it helps with cpu allocation, but not with the disk. If you're emerging something like sources, or openoffice, portage still gets too much disk time and other processes suffer. nice doesn't seem to affect disk

Re: [gentoo-user] OT: Application for video cutting ?

2006-04-04 Thread Meino Christian Cramer
From: Daniel Pielmeier [EMAIL PROTECTED] Subject: Re: [gentoo-user] OT: Application for video cutting ? Date: Mon, 3 Apr 2006 11:37:52 +0200 Hi Daniel, thanks for your reply and thank you all other replies to my question! How can I manage to install qt-4 without cripple the rest of my system

Re: [gentoo-user] Beautification - Splash

2006-04-04 Thread Bo Andresen
On Wednesday 05 April 2006 02:33, Lord Sauron wrote: [SNIP] So I now use the theme livecd-2006.0 Just my $0.02, but it's sorta difficult to change themes. Soon as I'm more bash literate, I'll try to make a script to change themes in a easier manner (lsauron_cngsplshthm [theme], perhaps? I

Re: [gentoo-user] OT: Application for video cutting ?

2006-04-04 Thread Bo Andresen
On Wednesday 05 April 2006 04:06, Meino Christian Cramer wrote: How can I manage to install qt-4 without cripple the rest of my system (qt-3 based) ? Is there a way of parallel installation/usage ? And if so -- how can I manage it gentoo-like ? # emerge -va =qt-4.1.2 These are the

Re: [gentoo-user] OT: Application for video cutting ?

2006-04-04 Thread Stephen Bartlett
On Wed, 2006-04-05 at 04:06 +0200, Meino Christian Cramer wrote: From: Daniel Pielmeier [EMAIL PROTECTED] Subject: Re: [gentoo-user] OT: Application for video cutting ? Date: Mon, 3 Apr 2006 11:37:52 +0200 Hi Daniel, thanks for your reply and thank you all other replies to my question!

Re: [gentoo-user] emerge without download

2006-04-04 Thread Gabriel Dain
I download first all the files and put them in /usr/portage/distfiles. After that, I can make an emerge package. So you download them manually? If so, its better to use emerge -f package. It automatically downloads the files and all dependencies to /usr/portage/distfiles, and you can be 100%

Re: [gentoo-user] Beautification - Splash

2006-04-04 Thread Boyd Stephen Smith Jr.
On Tuesday 04 April 2006 19:33, Lord Sauron [EMAIL PROTECTED] wrote about 'Re: [gentoo-user] Beautification - Splash': PS: I'm playing with this GPG stuff... I want to see if any of you can use [verify] this. I'm just curious... I had some nut case ghosting off of my domain and email and