Re: [gentoo-user] /etc/jail.conf: why exec permission???

2006-07-29 Thread Alexander Skwar

Jerry McBride schrieb:

I can't answer your question, however I can suggest changing it to non-exec 
and see how behaves after.


Yes. And if there's no change, I'd suggest to file a bug, so that this
gets changed.

Alexander Skwar
--
If life gives you lemons, make lemonade.
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OO Build Failed

2006-07-29 Thread Alexander Skwar

Randy Barlow schrieb:

Richard Fish wrote:

Can you retry with:

CFLAGS=-O2 -march=pentium3 -pipe

[...]

Also, why are you running an i386 CHOST?  You should probably have
used an i686 stage3 tarball...


Hmm, somehow I must not have noticed that.  You are certainly right
though - it is possible to migrate my system to the i686 CHOST gracefully?


CHOST isn't that important at all. Much much more important are the
CFLAGS, and here especially -march (or -mtune  -mcpu). If you're
using a Pentium 3 and have done emerge -e world once, then all is
fine.

Alexander Skwar
--
The important thing is not to stop questioning.
--
gentoo-user@gentoo.org mailing list



[gentoo-user] Restart network interfaces over SSH

2006-07-29 Thread Todor Pirov
Hello,
I have the following script which exchanges the IPs of two network adapters:

[code]
#!/bin/bash

/usr/bin/cp /etc/conf.d/net-2 /etc/conf.d/net;
/etc/init.d/net.eth1 stop;
/etc/init.d/net.eth0 restart;
/etc/init.d/net.eth1 start
[/code]

and a similar one with /usr/bin/cp /etc/conf.d/net-1 /etc/conf.d/net; in it 
to restore the original situation. In net-1 and net-2 config files the IPs of 
eth0 and eth1 are substituted.
The problem is that when I run the script from eth1 via SSH it stops executing 
when the interface stops. If it is ran from eth0 it executes normally.
Is there a way to tell bash not to stop executing commands if connection is 
broken or some more convenient gentoo-style way to exchange the IPs from SSH.
TIA

Todor
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Restart network interfaces over SSH

2006-07-29 Thread Raymond Lewis Rebbeck
On Saturday, 29 July 2006 18:50, Todor Pirov wrote:
 Hello,
 I have the following script which exchanges the IPs of two network
 adapters:

 [code]
 #!/bin/bash

 /usr/bin/cp /etc/conf.d/net-2 /etc/conf.d/net;
 /etc/init.d/net.eth1 stop;
 /etc/init.d/net.eth0 restart;
 /etc/init.d/net.eth1 start
 [/code]

 and a similar one with /usr/bin/cp /etc/conf.d/net-1 /etc/conf.d/net; in
 it to restore the original situation. In net-1 and net-2 config files the
 IPs of eth0 and eth1 are substituted.
 The problem is that when I run the script from eth1 via SSH it stops
 executing when the interface stops. If it is ran from eth0 it executes
 normally. Is there a way to tell bash not to stop executing commands if
 connection is broken or some more convenient gentoo-style way to exchange
 the IPs from SSH. TIA

 Todor

How about running the script in a screen session?

-- 
Raymond Lewis Rebbeck
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Missing font in Opera

2006-07-29 Thread Mick
On Thursday 27 July 2006 23:48, Stuart Howard wrote:

 I have misplaced some fonts or at least I think I have, I use Opera
 for a browser but since the xorg migration the transfers page has no
 text and the progress bar shows boxes instead of text.
 This I presume is a font issue and probably happended during the upgrade
 does anyone know which font it is that Opera uses and that I therefore
 need to emerge or is it likly that I am just missing a link or
 similar?

 Any pointers will be happily recieved

Starting from the beginning, have you re-emerged Opera and have you run # 
revdep-rebuild?
-- 
Regards,
Mick


pgpOAAS56ax9w.pgp
Description: PGP signature


Re: [gentoo-user] Restart network interfaces over SSH

2006-07-29 Thread Todor Pirov
On Saturday 29 July 2006 12:25, Raymond Lewis Rebbeck wrote:
 How about running the script in a screen session?

Yes, screen -d is a solution. Thanks for the tip.

Todor
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Restart network interfaces over SSH

2006-07-29 Thread Uwe Thiem
On 29 July 2006 10:20, Todor Pirov wrote:
 Hello,
 I have the following script which exchanges the IPs of two network
 adapters:

 [code]
 #!/bin/bash

 /usr/bin/cp /etc/conf.d/net-2 /etc/conf.d/net;
 /etc/init.d/net.eth1 stop;
 /etc/init.d/net.eth0 restart;
 /etc/init.d/net.eth1 start
 [/code]

 and a similar one with /usr/bin/cp /etc/conf.d/net-1 /etc/conf.d/net; in
 it to restore the original situation. In net-1 and net-2 config files the
 IPs of eth0 and eth1 are substituted.
 The problem is that when I run the script from eth1 via SSH it stops
 executing when the interface stops. If it is ran from eth0 it executes
 normally. Is there a way to tell bash not to stop executing commands if
 connection is broken or some more convenient gentoo-style way to exchange
 the IPs from SSH. TIA
nohup your_script 

The ssh connection will still be interrupted but the script will finish.

Uwe

-- 
Mark Twain: I rather decline two drinks than a German adjective.
http://www.SysEx.com.na
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Restart network interfaces over SSH

2006-07-29 Thread Alexander Skwar

Raymond Lewis Rebbeck schrieb:


How about running the script in a screen session?


Another one:
Put that script in a script file (like /tmp/script). Then setup
an at job, which will execute this:

at now + 1minute  /tmp/script

And finally, it might be enough to make the shell ignore the HUP
(Hang Up) signal, by using nohup:

nohup sh /tmp/script

Alexander Skwar
--
It runs like _x, where _x is something unsavory
-- Prof. Romas Aleliunas, CS 435
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] How not to install nautilus-cd-burner

2006-07-29 Thread Bo Ørsted Andresen
On Saturday 15 July 2006 12:08, Konstantinos Agouros wrote:
 Do you have the cdr USE flag set? If it is explicitly turned off (it may
 be on by default in your profile) and a package is still trying to pull
 this in, it may be worth filing a bug report.

 I put -cdr in useflags. But by checking the gnome-media ebuild it does not
 like that's honored.

Well, since use flags are for optional dependencies there is not much to 
honour unless the dependency is in fact optional.

-- 
Bo Andresen


pgpGFce7uJ2gy.pgp
Description: PGP signature


[gentoo-user] Abit KN9 SLI (nForce5 chipset) and Gentoo

2006-07-29 Thread Robert Szentmihalyi
Hi,

is anybody using this board? 
I'd like to hear people's experiences before I go and get it :-)

Thanks,
 Robert
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: amd64 installation: which file system?

2006-07-29 Thread Bo Ørsted Andresen
On Wednesday 19 July 2006 01:38, Richard Fish wrote:
 Things like
 c:\hiberfil.sys and c:\$log are nearly impossible to move, so they
 could be the source of the problem.

hiberfil is easily movable (Well, it's Windows... requires you to go to the 
power settings in the control panel and disable hibernation, then defrag and 
finally reenable...). pagefile is a bit harder as it requires you to reboot 
ones or twice The approach, however, would be the same...

-- 
Bo Andresen


pgpdrXGOTDZGd.pgp
Description: PGP signature


Re: [gentoo-user] Re: amd64 installation: which file system?

2006-07-29 Thread Bo Ørsted Andresen
On Wednesday 19 July 2006 09:14, Mick wrote:
   If these are new systems, I would give HP support a call and demand
   they send you the WinXP OEM installation CD.

 They will.  But at a price (not much) and guess what, it is an image of the
 original installation which as far as I recall requires the whole of the
 disk for it to be installed again!  Can you believe them!

Then it's not the OEM Installation CD. I would accept no less as consider this 
kind of recover approach completely useless. I would never accept to have a 
useless 9 GB partition sitting around just for reinstalls. I would rather by 
Windows directly from Microsoft than accept that kind of crap.

So what I would do is reconsider if I really needed Windows or demand an OEM 
Installation CD from Toshiba or buy directly from Microsoft or buy a computer 
from another vendor... And scrap all partitions and start from scratch.

-- 
Bo Andresen


pgpYoEskXBsAY.pgp
Description: PGP signature


Re: [gentoo-user] unwanted packages

2006-07-29 Thread Bo Ørsted Andresen
On Monday 17 July 2006 20:50, James wrote:
 However today, upon syncing the system, then 'revdep-rebuild -p'

 I get these unwanted packages:

 [ebuild  N    ] 
[SNIP]
 Now you can remove -p (or --pretend) from arguments and re-run
 revdep-rebuild.

Does 

# emerge -uDvp --tree world

not give you a clue as to what is pulling this stuff in?

-- 
Bo Andresen


pgpF6Qo8iE0GH.pgp
Description: PGP signature


Re: [gentoo-user] nvidia-drivers and revdep-rebuild problems

2006-07-29 Thread gentoo
On Monday 24 July 2006 00:41, Philip Webb wrote:
 060723 billydw wrote:
  I am pretty much a Gentoo newbie, but less so with linux.
  I have successfully installed Gentoo 2006.0
  from the  Universal Install CD (amd64 arch).
  I have Xorg-x11 7.0 emerged and I think configured correctly -
  no unresolved EEs or WWs in /var/log/Xorg.0.log.
  Using startx brings up twm and it looks fine.
  I first emerged nvidia-glx and nvidia-kernel.
  While running # revdep-rebuild, I get this message:

For the Nvidia card I have I had to go to Nidiias web site and download the 
driver from there to get it to work. after I ran the file from Nvidia mt Card 
works fine even in dual mode ( tv , CRT).



rob
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] LINGUAS

2006-07-29 Thread Alexander Skwar

Michael George schrieb:

I am building OOo 2.0.3 and I happened to notice in the verbose emerge
output that there is a long list of languages listed in the LINGUAS
variable:

 LINGUAS=-af% -ar% -be_BY% -bg% -bn% -bs% -ca% -cs% -cy% -da% -de% -el%
 -en% -en_GB% -en_US% -en_ZA% -es% -et% -fa% -fi% -fr% -gu_IN% -he%
 -hi_IN% -hr% -hu% -it% -ja% -km% -ko% -lt% -mk% -nb% -nl% -nn% -nr%
 -ns% -pa_IN% -pl% -pt% -pt_BR% -ru% -rw% -sh_YU% -sk% -sl% -sr_CS% -st%
 -sv% -sw_TZ% -th% -tn% -tr% -ts% -vi% -xh% -zh_CN% -zh_TW% -zu%

Does this mean that NONE of those languages will be built in or that ALL
of them will be?


If all of them have a - before, then yes, none will be built.


The docs I found on gentoo localization indicate that I can set LINGUAS
in make.conf and build for just the languages I desire.  I set it to:
LINGUAS=en_US
but all that does is prepend en_US to the beginning of the string above.


How? What's shown?


Where are those settings coming from?


make.conf

Alexander Skwar
--
The one sure way to make a lazy man look respectable is to put a fishing
rod in his hand.
--
gentoo-user@gentoo.org mailing list



[gentoo-user] ppp0 and iptables

2006-07-29 Thread David Corbin
When I bring up my ppp0 connection, iptables is loading a whole bunch of 
rules.  I cannot see where iptables is being invoked (I looked 
through /etc/ppp/ip-up*).  Any ideas?  

Furthermore, I cannot find where the rules it's loading are written.  I've 
looked in /var/lib/iptables, but there is nothing there.  More ideas?

I have installed firestarter, but it is not being started at the moment.

Thanks
David
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OO Build Failed

2006-07-29 Thread Randy Barlow
Alexander Skwar wrote:
  CHOST isn't that important at all. Much much more important are the
 CFLAGS, and here especially -march (or -mtune  -mcpu). If you're
 using a Pentium 3 and have done emerge -e world once, then all is
 fine.

I haven't done the emerge -e thing, but shouldn't everything eventually
make its way to those CFLAGS anyway just because it will be upgraded?

R
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] [OT] Linux unable to read a k3b DVD

2006-07-29 Thread Francesco Talamona
I recently burnt a DVD with k3b, it seems perfect on windows boxes, all 
files are indeed correctly written and readable, a md5 sum tells they 
are binary equal to original, but no Linux box can mount it (tried on 
three different PCs with the same results).

If I try to mount this DVD, dmesg says:

end_request: I/O error, dev hdd, sector 64
isofs_fill_super: bread failed, dev=hdd, iso_blknum=16, block=16

or:

attempt to access beyond end of device
hdd: rw=0, want=68, limit=4
isofs_fill_super: bread failed, dev=hdd, iso_blknum=16, block=16

and then (after a long timeout) mount complains with the following 
message:

mount: wrong fs type, bad option, bad superblock on /dev/hdd,
   missing codepage or other error
   In some cases useful info is found in syslog - try
   dmesg | tail  or so

The disk isn't overburned (I know my burner, an LG GSA-4040B, isn't 
capable). I was unable to find anything useful with google, and I have 
a spindle box and an huge amount of data to write to disc...

Anyone knows what I have to do to make this disc readable to Linux?

Kernel 2.6.17-gentoo-r4, k3b 0.12.16, udev 089.

Thanks,
Francesco

-- 
Linux Version 2.6.17-gentoo-r4, Compiled #1 PREEMPT Mon Jul 24 07:52:46 
CEST 2006
One 1GHz AMD Athlon 64 Processor, 2GB RAM, 2004.89 Bogomips Total
aemaeth
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] LINGUAS

2006-07-29 Thread Richard Fish

On 7/29/06, Michael George [EMAIL PROTECTED] wrote:

The docs I found on gentoo localization indicate that I can set LINGUAS
in make.conf and build for just the languages I desire.  I set it to:
LINGUAS=en_US
but all that does is prepend en_US to the beginning of the string above.


Look closer; it should put en_US at the begining of the string, and
remove the -en_US from the middle.  The normal configuration of
portage is to display set USE flags first, followed by the unset
flags, and each group is sorted alphabetically.

-Richard
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Mounting a USB thumbdrive

2006-07-29 Thread Richard Fish

On 7/29/06, Daniel D Jones [EMAIL PROTECTED] wrote:

usb-storage: waiting for device to settle before scanning
  Vendor: Memorex   Model: USB2 ThumbDrive   Rev: 2.00
  Type:   Direct-Access  ANSI SCSI revision: 00
usb-storage: device scan complete


snip


There are no sd* devices under /dev to be mounted.  What am I missing?


SCSI disk support in your kerrnel? (CONFIG_BLK_DEV_SD).

You should see something like this in dmesg:

usb-storage: device found at 24
usb-storage: waiting for device to settle before scanning
 Vendor: Generic   Model: USB Flash DiskRev: 0.00
 Type:   Direct-Access  ANSI SCSI revision: 02
SCSI device sdb: 8192000 512-byte hdwr sectors (4194 MB)
sdb: Write Protect is off
sdb: Mode Sense: 00 00 00 00
sdb: assuming drive cache: write through
SCSI device sdb: 8192000 512-byte hdwr sectors (4194 MB)
sdb: Write Protect is off
sdb: Mode Sense: 00 00 00 00
sdb: assuming drive cache: write through
sdb: sdb1 sdb2
sd 6:0:0:0: Attached scsi removable disk sdb
sd 6:0:0:0: Attached scsi generic sg2 type 0
usb-storage: device scan complete

HTH,
-Richard
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Is this cruft in my /tmp?

2006-07-29 Thread Bo Ørsted Andresen
On Sunday 23 July 2006 13:18, Mick wrote:
 I checked the script I have in my /etc/X11/Sessions/fluxbox:
 ==
 eval $(gpg-agent --daemon)
 /usr/bin/startfluxbox
 kill `echo ${GPG_AGENT_INFO} | cut -d ':' -f 2`
 ==

 Running these separately after I kill gpg-agent *and* empty the /tmp/gpg-*
 entities gives me the following semi-illuminating response:

 $ eval $(gpg-agent --daemon)
 can't connect to `/home/michael/.gnupg/log-socket': Connection refused

 Why does this happen?  A new ENV variable has been created alright in the
 /tmp dir:

 $ echo ${GPG_AGENT_INFO}
 /tmp/gpg-0UQfJ1/S.gpg-agent:11772:1

 I think that the kill `echo ${GPG_AGENT_INFO} | cut -d ':' -f 2` line in my
 fluxbox start up script kills the gpg-agent process but does not seem to
 flush the ENV variable, hence all this cruft accumulates in /tmp.

 Does anyone else have this problem?

Apparently gpg-agent does clean up properly after it when it is killed. I have 
just changed my gpg-agent.sh shutdown script as shown below. The rm and rmdir 
lines should make it clean up nicely after it.

$ cat ~/.kde/shutdown/gpg-agent.sh
#!/bin/sh
# the second field of the GPG_AGENT_INFO variable is the
# process ID of the gpg-agent active in the current session
# so we'll just kill that, rather than all of them :)
if [[ -n ${GPG_AGENT_INFO} ]]; then
kill $(echo ${GPG_AGENT_INFO} | cut -d ':' -f 2)
rm $(echo ${GPG_AGENT_INFO} | cut -d ':' -f 1)
rmdir $(dirname `echo ${GPG_AGENT_INFO} | cut -d ':' -f 1`)
unset GPG_AGENT_INFO
fi

-- 
Bo Andresen


pgpV1soYToWq4.pgp
Description: PGP signature


Re: [gentoo-user] LINGUAS

2006-07-29 Thread Benno Schulenberg
Michael George wrote:
  LINGUAS=-af% -ar% -be_BY% -bg% -bn% -bs% -ca% -cs% -cy% -da%
 -de% -el% -en% -en_GB% -en_US% -en_ZA% -es% -et% -fa% -fi% -fr%
 -gu_IN% -he% -hi_IN% -hr% -hu% -it% -ja% -km% -ko% -lt% -mk% -nb%
 -nl% -nn% -nr% -ns% -pa_IN% -pl% -pt% -pt_BR% -ru% -rw% -sh_YU%
 -sk% -sl% -sr_CS% -st% -sv% -sw_TZ% -th% -tn% -tr% -ts% -vi% -xh%
 -zh_CN% -zh_TW% -zu%

 Does this mean that NONE of those languages will be built in or
 that ALL of them will be?

None, as they all start with a minus sign.

 I set it to: LINGUAS=en_US
 but all that does is prepend en_US to the beginning of the string
 above.

Not quite: it also removes the -en_US.  It makes no difference, 
though, as the ebuild uses en_US by default when LINGUAS is empty.

 Where are those settings coming from?

From the ebuild: it specifies that it can handle LANGS=af ar 

Benno
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] qcheck output mystery

2006-07-29 Thread Bo Ørsted Andresen

On Sunday 23 July 2006 06:53, Vladimir G. Ivanovic wrote:
 If I run qcheck on sys-devel/make, I get output like:

 Checking sys-devel/make-3.81 ...
  AFK: /usr/lib/debug
  AFK: /usr/lib/debug/usr
[...]
 The MD5-DIGEST entry is due to prelinking the executable, but what does
 AFK mean? (The paths listed are directories that do not exist.)

 Checking the sources, Luke, was unenlightening.

AFK usually means away from keyboard but apparently in qcheck it means that the files are missing. I believe the contents in /usr/lib/debug are always the result of a package built with FEATURES=... splitdebug. If you don't need to debug make it should be irrelevant...

-- 
Bo Andresen


pgpSRuz33s9TZ.pgp
Description: PGP signature


Re: [gentoo-user] LINGUAS

2006-07-29 Thread Alexander Skwar

Michael George schrieb:

On Sat, Jul 29, 2006 at 05:20:13PM +0200, Alexander Skwar wrote:

Michael George schrieb:
I am building OOo 2.0.3 and I happened to notice in the verbose emerge
output that there is a long list of languages listed in the LINGUAS
variable:

 LINGUAS=-af% -ar% -be_BY% -bg% -bn% -bs% -ca% -cs% -cy% -da% -de% -el%
 -en% -en_GB% -en_US% -en_ZA% -es% -et% -fa% -fi% -fr% -gu_IN% -he%
 -hi_IN% -hr% -hu% -it% -ja% -km% -ko% -lt% -mk% -nb% -nl% -nn% -nr%
 -ns% -pa_IN% -pl% -pt% -pt_BR% -ru% -rw% -sh_YU% -sk% -sl% -sr_CS% -st%
 -sv% -sw_TZ% -th% -tn% -tr% -ts% -vi% -xh% -zh_CN% -zh_TW% -zu%

Does this mean that NONE of those languages will be built in or that ALL
of them will be?

If all of them have a - before, then yes, none will be built.


Okay, that's what I figured it meant.


The docs I found on gentoo localization indicate that I can set LINGUAS
in make.conf and build for just the languages I desire.  I set it to:
LINGUAS=en_US
but all that does is prepend en_US to the beginning of the string above.

How? What's shown?


If I put LINGUAS=en_US into make.conf, then the LINGUAS line reads:

LINGUAS=en_US% -af% -ar% -be_BY% -bg% -bn% -bs% -ca% -cs% -cy% -da% -de%
-el% -en% -en_GB% -en_ZA% -es% -et% -fa% -fi% -fr% -gu_IN% -he%
-hi_IN% -hr% -hu% -it% -ja% -km% -ko% -lt% -mk% -nb% -nl% -nn% -nr%
-ns% -pa_IN% -pl% -pt% -pt_BR% -ru% -rw% -sh_YU% -sk% -sl% -sr_CS% -st%
-sv% -sw_TZ% -th% -tn% -tr% -ts% -vi% -xh% -zh_CN% -zh_TW% -zu%

en_US is put on the front and -en_US disappears from the list.  


See, it works just like a USE flag. Means: You now enabled the en_US linguas.


Where are those settings coming from?

make.conf


Any that I specify to be built are in make.conf, but there is nothing in
make.conf that specifies the - entries


Of course not - just like there's (mostly) nothing in your make.conf
or package.use, which specifies - USE flags.

Alexander Skwar
--
MSDOS is not dead, it just smells that way.
-- Henry Spencer
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Is this cruft in my /tmp?

2006-07-29 Thread [EMAIL PROTECTED]



On 7/29/06, Bo Ørsted Andresen [EMAIL PROTECTED] wrote:

On Sunday 23 July 2006 13:18, Mick wrote:
 I checked the script I have in my /etc/X11/Sessions/fluxbox:
 ==
 eval $(gpg-agent --daemon)
 /usr/bin/startfluxbox
 kill `echo ${GPG_AGENT_INFO} | cut -d ':' -f 2`
 ==

 Running these separately after I kill gpg-agent *and* empty the /tmp/gpg-*
 entities gives me the following semi-illuminating response:

 $ eval $(gpg-agent --daemon)
 can't connect to `/home/michael/.gnupg/log-socket': Connection refused

 Why does this happen? A new ENV variable has been created alright in the
 /tmp dir:

 $ echo ${GPG_AGENT_INFO}
 /tmp/gpg-0UQfJ1/S.gpg-agent:11772:1

 I think that the kill `echo ${GPG_AGENT_INFO} | cut -d ':' -f 2` line in my
 fluxbox start up script kills the gpg-agent process but does not seem to
 flush the ENV variable, hence all this cruft accumulates in /tmp.

 Does anyone else have this problem?

Apparently gpg-agent does clean up properly after it when it is killed. I have
just changed my gpg-agent.sh shutdown script as shown below. The rm and rmdir
lines should make it clean up nicely after it.

$ cat ~/.kde/shutdown/gpg-agent.sh
#!/bin/sh
# the second field of the GPG_AGENT_INFO variable is the
# process ID of the gpg-agent active in the current session
# so we'll just kill that, rather than all of them :)
if [[ -n ${GPG_AGENT_INFO} ]]; then
kill $(echo ${GPG_AGENT_INFO} | cut -d ':' -f 2)
rm $(echo ${GPG_AGENT_INFO} | cut -d ':' -f 1)
rmdir $(dirname `echo ${GPG_AGENT_INFO} | cut -d ':' -f 1`)
unset GPG_AGENT_INFO
fi

--
Bo Andresen




First off, doesn't one of the boot scripts clean /tmp? Or is that just my 
imagination?
Second, I have found that it is better to mount /tmp as a tmpfs. That way I get 
a (slight) increase in performance when I'm ripping cd's and stuff, I don't 
risk running out of space on / (not all that big of a problem, though), 
whenever I turn the computer of /tmp get's cleared and, last but not least, I 
tell myself that I get more battery-time on my laptop since it doesmn't have to 
write to disk as much. Yay!
To do this, all you need is to put
none/tmptmpfs   defaults0 0
in /etc/fstab. Add size=nbytes to select maximum size of the filesystem. 
Defaults to half of ram.


--
gentoo-user@gentoo.org mailing list



[gentoo-user] depclean screw up

2006-07-29 Thread Mike Williams
Hi,

Check out this wackiness from depclean.
This has had me stumped all day, no matter how many merges, depcleans, 
revdep-rebuilds I try.

It's long...

But, basically, depclean wants to remove packages that equery says have direct 
dependencies.
If I merge all the packages that directly depend on the packages depclean 
wants to unmerge, depclean still wants to remove them!
If I let depclean remove the packages, then run revdep-rebuild, the packages 
it finds broken pull in all the packages depclean removed!

Help, anyone?

minimac ~ # emerge --depclean -p
[...]
 These are the packages that would be unmerged:

 dev-libs/libtasn1
selected: 0.2.18
   protected: none
 omitted: none

 gnome-base/gnome-libs
selected: 1.4.2
   protected: none
 omitted: none

 dev-libs/libxml
selected: 1.8.17-r2
   protected: none
 omitted: none

 media-libs/imlib
selected: 1.9.14-r3
   protected: none
 omitted: none

 net-libs/libsoup
selected: 2.2.94
   protected: none
 omitted: none

 net-libs/gnutls
selected: 1.2.10
   protected: none
 omitted: none

 app-crypt/opencdk
selected: 0.5.5
   protected: none
 omitted: none

 dev-libs/lzo
selected: 1.08-r1
   protected: none
 omitted: none

 gnome-base/gail
selected: 1.8.11
   protected: none
 omitted: none

[...]
minimac ~ # for p in $(emerge --depclean -p | grep -v WARNING | grep / | 
awk '{print $1}')
 do
 equery depends ${p}
 done
[ Searching for packages depending on dev-libs/libtasn1... ]
net-libs/gnutls-1.2.10
[ Searching for packages depending on gnome-base/gnome-libs... ]
gnome-base/libglade-0.17-r6
[ Searching for packages depending on dev-libs/libxml... ]
gnome-base/libglade-0.17-r6
[ Searching for packages depending on media-libs/imlib... ]
gnome-base/gnome-libs-1.4.2
kde-base/kdegraphics-3.5.2
[ Searching for packages depending on net-libs/libsoup... ]
gnome-extra/gtkhtml-3.10.2
[ Searching for packages depending on net-libs/gnutls... ]
net-libs/libsoup-2.2.94
gnome-base/gnome-vfs-2.14.2
net-misc/neon-0.26.1
net-misc/curl-7.15.1-r1
net-print/cups-1.1.23-r8
[ Searching for packages depending on app-crypt/opencdk... ]
net-libs/gnutls-1.2.10
[ Searching for packages depending on dev-libs/lzo... ]
media-video/transcode-1.0.2-r2
[ Searching for packages depending on gnome-base/gail... ]
gnome-extra/gtkhtml-2.6.3
gnome-extra/gtkhtml-3.10.2
minimac ~ # emerge --oneshot $(for p in $(emerge --depclean -p | 
grep -v WARNING | grep / | awk '{print $1}'); do equery depends ${p}; 
done | grep -v Searching | sed -re's/^(.*)/=\1/') -pv

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild   R   ] net-libs/gnutls-1.2.10  USE=crypt zlib -doc 0 kB
[ebuild   R   ] gnome-base/libglade-0.17-r6  USE=X nls -bonobo 0 kB
[ebuild   R   ] gnome-base/gnome-libs-1.4.2  USE=kde nls -doc -esd 0 kB
[ebuild   R   ] kde-base/kdegraphics-3.5.2  USE=arts gphoto2 kdeenablefinal 
kdehiddenvisibility opengl pdf 
scanner -debug -imlib -openexr -povray -tetex -xinerama 0 kB
[ebuild   R   ] gnome-extra/gtkhtml-3.10.2  USE=-debug 0 kB
[ebuild   R   ] net-libs/libsoup-2.2.94  USE=ssl -debug -doc -static 0 kB
[ebuild   R   ] gnome-base/gnome-vfs-2.14.2  USE=hal ipv6 samba 
ssl -avahi -debug -doc -gnutls 0 kB
[ebuild   R   ] net-misc/neon-0.26.1  USE=nls ssl 
zlib -expat -gnutls -socks5 -static 0 kB
[ebuild   R   ] net-misc/curl-7.15.1-r1  USE=idn ipv6 
ssl -ares -gnutls -kerberos -krb4 -ldap -test 0 kB
[ebuild   R   ] net-print/cups-1.1.23-r8  USE=nls pam samba slp ssl -gnutls 
0 kB
[ebuild   R   ] media-video/transcode-1.0.2-r2  USE=X a52 altivec dv dvdread 
gtk imagemagick jpeg mp3 mpeg network ogg quicktime sdl theora truetype v4l2 
vorbis xml xvid -extrafilters -fame -lzo -mjpeg 0 kB
[ebuild   R   ] gnome-extra/gtkhtml-2.6.3  USE=-accessibility -debug 0 kB

Total size of downloads: 0 kB
minimac ~ # emerge --oneshot $(for p in $(emerge --depclean -p | 
grep -v WARNING | grep / | awk '{print $1}'); do equery depends ${p}; 
done | grep -v Searching | sed -re's/^(.*)/=\1/')
[...]

minimac ~ # emerge --depclean -p
[...]
 These are the packages that would be unmerged:

 dev-libs/libtasn1
selected: 0.2.18
   protected: none
 omitted: none

 gnome-base/gnome-libs
selected: 1.4.2
   protected: none
 omitted: none

 dev-libs/libxml
selected: 1.8.17-r2
   protected: none
 omitted: none

 media-libs/imlib
selected: 1.9.14-r3
   protected: none
 omitted: none

 net-libs/libsoup
selected: 2.2.94
   protected: none
 omitted: none

 net-libs/gnutls
selected: 1.2.10
   protected: none
 omitted: none

 app-crypt/opencdk
selected: 0.5.5
   protected: none
 omitted: none

 dev-libs/lzo
selected: 1.08-r1
   protected: none
 omitted: none

 gnome-base/gail
selected: 1.8.11
   protected: none
 omitted: none


-- 
Mike Williams
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] emerging IFC - Intel Fortran Compiler

2006-07-29 Thread Richard Broersma Jr
Hello all,

I am trying to install Fortran for a school project 
my wife is working on.

Are there any installation instructions better 
than the following ones?:

1) http://bugs.gentoo.org/show_bug.cgi?id=117452
   - my question with this link is, where is this overlay 
 directory that is mentioned?

2) http://gentoo-wiki.com/Talk:HOWTO_Installing_3rd_Party_Ebuilds
   - This link seems to have turn more into a discussion of the
 proper use of ~x86 in package.keywords


So far, I have the the following:
ftp://download.intel.com/software/products/compilers/downloads/l_fc_c_9.0.031.tar.gz
http://bugs.gentoo.org/attachment.cgi?id=76000  -- attached ifc-9.0.031.ebuild

But I am not sure exact where to put them or what to do with them. :-)

Any suggestions or links would greatly be appreciated.

Regards,

Richard Broersma Jr.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] depclean screw up

2006-07-29 Thread Richard Fish

On 7/29/06, Mike Williams [EMAIL PROTECTED] wrote:

Hi,

Check out this wackiness from depclean.
This has had me stumped all day, no matter how many merges, depcleans,
revdep-rebuilds I try.

It's long...

But, basically, depclean wants to remove packages that equery says have direct
dependencies.


equery depends is unfortunately broken.  It does not consider use flag
dependancies.

Examples from your list:
- kdegraphics only depends on imlib if you have the imlib USE flag
set, which you do not.
- cups only depends on gnutls if you have the gnutls USE flag set,
which you do not.

If emerge -DNuvp does not want to merge anything, then the depclean
list is the list of packages that are not listed in
/var/lib/portage/world or system, and are also not a dependancy of
something in world or system.

-Richard
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerging IFC - Intel Fortran Compiler

2006-07-29 Thread Richard Fish

On 7/29/06, Richard Broersma Jr [EMAIL PROTECTED] wrote:

Hello all,

I am trying to install Fortran for a school project
my wife is working on.

Are there any installation instructions better
than the following ones?:

1) http://bugs.gentoo.org/show_bug.cgi?id=117452
   - my question with this link is, where is this overlay
 directory that is mentioned?


This is talking about creating a local portage overlay for your own
ebuilds.  You can set PORTDIR_OVERLAY=/usr/local/portage in
/etc/make.conf, and then create your own portage tree under
/usr/local/portage [1].

You really should not mess with overlays unless you really know what
you are doing.  However, you generally start by either:

1. Copying an existing category/package directory from the official
tree, and hacking on it your overlay.  This is useful if you want to
do a version bump or apply a patch that is not in the offical tree.

2. Creating your own category/package directory, and adding your own
ebuilds and/or patches.

Once you have created your ebuild, ebuild path_to_ebuild digest
will generate the MANIFEST and other necessary files.

However, dev-lang/ifc already exists.  If you want the latest 9.0.031
version, you'll have to accept the ~arch keyword, but this is
certainly a lot easier than trying to maintain your own overlay.

-Richard

[1] http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=3chap=5
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerging IFC - Intel Fortran Compiler

2006-07-29 Thread Donnie Berkholz

Richard Broersma Jr wrote:

Hello all,

I am trying to install Fortran for a school project 
my wife is working on.


Any reason you can't use gcc's Fortran compiler?

Are there any installation instructions better 
than the following ones?:


1) http://bugs.gentoo.org/show_bug.cgi?id=117452
   - my question with this link is, where is this overlay 
 directory that is mentioned?


2) http://gentoo-wiki.com/Talk:HOWTO_Installing_3rd_Party_Ebuilds
   - This link seems to have turn more into a discussion of the
 proper use of ~x86 in package.keywords


Why do you need an overlay? ifc's in the main tree.

Thanks,
Donnie
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] depclean screw up

2006-07-29 Thread Mike Williams
On Sunday 30 July 2006 01:05, Richard Fish wrote:
  But, basically, depclean wants to remove packages that equery says have
  direct dependencies.

 equery depends is unfortunately broken.  It does not consider use flag
 dependancies.

Ahh, now that I didn't know.

 Examples from your list:
 - kdegraphics only depends on imlib if you have the imlib USE flag
 set, which you do not.

gnome-libs does directly depend on imlib though.

 - cups only depends on gnutls if you have the gnutls USE flag set,
 which you do not.

That one I saw, and it did add to the confusion.
libsoup does depend on gnutls, and gtkhtml depends on libsoup, and dvdrip 
depends on a version of gtkhtml that depends on libsoup, and dvdrip is in my 
world file.

minimac ~ # emerge --unmerge gnutls
[...]
minimac ~ # emerge curl net-libs/libsoup gnome-base/gnome-vfs net-misc/neon 
net-misc/curl net-print/cups -pvt

These are the packages that would be merged, in reverse order:

Calculating dependencies... done!
[ebuild   R   ] net-print/cups-1.1.23-r8  USE=nls pam samba slp ssl -gnutls 
0 kB
[ebuild   R   ] net-misc/neon-0.26.1  USE=nls ssl 
zlib -expat -gnutls -socks5 -static 0 kB
[ebuild   R   ] gnome-base/gnome-vfs-2.14.2  USE=hal ipv6 samba 
ssl -avahi -debug -doc -gnutls 0 kB
[ebuild   R   ] net-libs/libsoup-2.2.94  USE=ssl -debug -doc -static 0 kB
[ebuild  N]  net-libs/gnutls-1.2.10  USE=crypt zlib -doc 0 kB
[ebuild   R   ] net-misc/curl-7.15.1-r1  USE=idn ipv6 
ssl -ares -gnutls -kerberos -krb4 -ldap -test 0 kB

Total size of downloads: 0 kB
minimac ~ # emerge world -Dnupv

These are the packages that would be merged, in order:

Calculating world dependencies... done!
[ebuild  N] net-libs/gnutls-1.2.10  USE=crypt zlib -doc 0 kB

Total size of downloads: 0 kB
minimac ~ # emerge world -Dnupvt

These are the packages that would be merged, in reverse order:

Calculating world dependencies... done!
[nomerge  ] media-video/dvdrip-0.97.10  USE=cdr gnome mplayer ogg perl 
subtitles xvid -minimal
[nomerge  ]  gnome-extra/gtkhtml-3.10.2  USE=-debug
[nomerge  ]   net-libs/libsoup-2.2.94  USE=ssl -debug -doc -static
[ebuild  N]net-libs/gnutls-1.2.10  USE=crypt zlib -doc 0 kB

Total size of downloads: 0 kB

 If emerge -DNuvp does not want to merge anything, then the depclean
 list is the list of packages that are not listed in
 /var/lib/portage/world or system, and are also not a dependancy of
 something in world or system.

Been there so many times.
I've worked my own way over the dependencies of these packages, and they 
aren't in world or system, but *are* dependencies of installed world listed 
packages.

Ta

-- 
Mike Williams

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerging IFC - Intel Fortran Compiler

2006-07-29 Thread Richard Broersma Jr
 However, dev-lang/ifc already exists.  If you want the latest 9.0.031
 version, you'll have to accept the ~arch keyword, but this is
 certainly a lot easier than trying to maintain your own overlay.

Yes, messing with making a package overlay doesn't should like
I really want to get into. However, in addition to add ~x86 how
do I get past the package restriction. I don't see any explaination
in the ifc.ebuild for version 9.0.031.

Thanks for the help.


db_server01 ifc # grep -e ifc  /etc/portage/package.keywords  emerge ifc
dev-lang/ifc ~x86
Calculating dependencies... done!

 Emerging (1 of 1) dev-lang/ifc-9.0.031 to /

!!! dev-lang/ifc-9.0.031 has fetch restriction turned on.
!!! This probably means that this ebuild's files must be downloaded
!!! manually.  See the comments in the ebuild for more information.

!!! The following are listed in SRC_URI for ifc:
!!!   l_fc_c_9.0.031.tar.gz

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerging IFC - Intel Fortran Compiler

2006-07-29 Thread Richard Broersma Jr
 Any reason you can't use gcc's Fortran compiler?

I would be happy to, I didn't know there was one. Is there any docs that 
explain how to the gcc
fortran complier?

Regards,

Richard Broersma Jr.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerging IFC - Intel Fortran Compiler

2006-07-29 Thread Donnie Berkholz

Richard Broersma Jr wrote:

Any reason you can't use gcc's Fortran compiler?


I would be happy to, I didn't know there was one. Is there any docs that 
explain how to the gcc
fortran complier?


USE=fortran emerge gcc

If you're on gcc4, it's gfortran and is Fortran95 (and older) 
compatible. If you're on gcc3, it's g77 and is (as one would expect) 
compatible with Fortran77.


Thanks,
Donnie
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerging IFC - Intel Fortran Compiler

2006-07-29 Thread Richard Broersma Jr
 USE=fortran emerge gcc
 
 If you're on gcc4, it's gfortran and is Fortran95 (and older) 
 compatible. If you're on gcc3, it's g77 and is (as one would expect) 
 compatible with Fortran77.

Thanks!

Regards,

Richard Broersma Jr.
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] New Hardware...

2006-07-29 Thread Jerry McBride
Howdy,

I'm gearing up for a new hardware purchase and I find that I need a little 
help figuring out what is and what isn't linux compatible.

The days of pci, agp video and socket A hardware are slowly coming to a close 
and I'm itching to try something new.

Does anyone here run any cutting edge hardware, like socket am2 motherboards 
and pci-e video cards?

Sounds dumb, but I've no hands on experience with the new stuff and would love 
to hear from those with first hand knowledge. In particular, what hardware 
are you using and how does it work on your desktop? Any driver issues with 
xorg-x11, etc.?

My goal is to build a desktop, taking full advantage of the current available 
video hardware... maybe even use xgl on it too.

Anything would be welcomed. Feel free to email me off list if you desire.

Thanks, Jerry

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] depclean screw up

2006-07-29 Thread Richard Fish

On 7/29/06, Mike Williams [EMAIL PROTECTED] wrote:

gnome-libs does directly depend on imlib though.


But depclean wants to remove gnome-libs also, so this doesn't count...


That one I saw, and it did add to the confusion.
libsoup does depend on gnutls, and gtkhtml depends on libsoup, and dvdrip
depends on a version of gtkhtml that depends on libsoup, and dvdrip is in my
world file.


Well, yes, this would be a problem.  Try an emerge --metadata to
regenerate the portage cache.  This may help.  Otherwise, please post
your emerge --info.

-Richard
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] depclean screw up

2006-07-29 Thread Vladimir G. Ivanovic
If you run 

emerge -av --noreplace

on all the packages that

emerge -av --depclean

wants to clean, then depclean will no longer complain.

--- Vladimir

-- 
Vladimir G. Ivanovic [EMAIL PROTECTED]

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] New Hardware...

2006-07-29 Thread Richard Fish

On 7/29/06, Jerry McBride [EMAIL PROTECTED] wrote:

Howdy,

I'm gearing up for a new hardware purchase and I find that I need a little
help figuring out what is and what isn't linux compatible.


For the most part today, this isn't really a concern [1].  Most
motherboard chipsets, network cards, USB controllers, IEEE1394
controllers, etc are all supported, it is just a matter of selecting
the right kernel options.  The exceptions are mostly wireless chipsets
and graphics cards.

The major problem today is the graphics card.  If you don't mind
proprietary drivers, nvidia is the way to go.  Just make sure you get
a card supported by their current (not legacy) drivers [2].  If you
don't want proprietary drivers, ATI Radeon 9250 boards are still
available and well supported, although I don't know about PCI-e
versions.  Intel integrated graphics chips also have excellent
support, although I have never used one so I can't comment on the
performance.

For wireless, Intel has excellent linux support.

-Richard

[1] http://www.kroah.com/log/linux/ols_2006_keynote.html
[2] http://download.nvidia.com/XFree86/Linux-x86/1.0-8762/README/appendix-a.html
--
gentoo-user@gentoo.org mailing list



[gentoo-user] how to get ssh host based authentication working?

2006-07-29 Thread John Blinka
Hi, folks,

I'd like to get host based ssh authentication working within
all the gentoo boxes on my home network.  I've had no
success yet - I hope someone can enlighten me!

What I've done so far on the server side is:

   set HostbasedAuthentication yes in sshd_config
   set HostbasedAuthentication yes in ssh_config
   added /etc/ssh/shosts.equiv containing names of client boxes
   added /etc/ssh/ssh_known_hosts containing public host keys of
client boxes

Client boxes are configured similarly.

When I try to ssh from one box to another, I always get a request
for a password, which is what I'm trying to avoid.

Below is an excerpt from an attempt to ssh from one box to another
while requesting the maximum amount of debugging info.  It looks
like ssh is trying to use host based authentication, but for some
reason it fails.  I'd appreciate any ideas about what might be
going wrong.

John Blinka




debug3: check_host_in_hostfile: filename /root/.ssh/known_hosts
debug3: check_host_in_hostfile: match line 5
debug3: check_host_in_hostfile: filename /root/.ssh/known_hosts
debug3: check_host_in_hostfile: match line 5
debug1: Host 'tobey' is known and matches the RSA host key.
debug1: Found key in /root/.ssh/known_hosts:5
debug2: bits set: 469/1024
debug1: ssh_rsa_verify: signature correct
debug2: kex_derive_keys
debug2: set_newkeys: mode 1
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug2: set_newkeys: mode 0
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug2: service_accept: ssh-userauth
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug2: key: /root/.ssh/identity ((nil))
debug2: key: /root/.ssh/id_rsa (0x8095528)
debug2: key: /root/.ssh/id_dsa (0x80964c0)
debug1: Authentications that can continue:
publickey,keyboard-interactive,hostbased
debug3: start over, passed a different list
publickey,keyboard-interactive,hostbased
debug3: preferred hostbased,publickey,keyboard-interactive,password
debug3: authmethod_lookup hostbased
debug3: remaining preferred: publickey,keyboard-interactive,password
debug3: authmethod_is_enabled hostbased
debug1: Next authentication method: hostbased
debug2: userauth_hostbased: chost lotus.bluebar.org.
debug2: we sent a hostbased packet, wait for reply
debug1: Authentications that can continue:
publickey,keyboard-interactive,hostbased
debug2: userauth_hostbased: chost lotus.bluebar.org.
debug2: we sent a hostbased packet, wait for reply
debug1: Authentications that can continue:
publickey,keyboard-interactive,hostbased
debug1: No more client hostkeys for hostbased authentication.
debug2: we did not send a packet, disable method

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Gnumeric 1.4.3-r3 again (or still)

2006-07-29 Thread Walter Dnes
  Before I make a fool of myself for unnecessarily re-opening
http://bugs.gentoo.org/show_bug.cgi?id=131151 (allegedly fixed a couple
of weeks ago), am I doing anything glaringly wrong?  I just finished
doing an emerge sync and the only package that fails a deep world update
is gnumeric.  The 80 megs of downloads was painful on dialup.  My ADSL
combo router/modem died on me, and I have one on order, but for the next
few days, I'll be slumming it.

  The machine is an AMD64 K8, but running exclusively 32-bit mode.  Here
are a few listings that might help gather more info...

===
[m3000][root][~] emerge --pretend --verbose gnumeric

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild U ] app-office/gnumeric-1.4.3-r3 [1.4.3-r2] USE=X -debug
-gnome -libgda -python -static 0 kB

Total size of downloads: 0 kB



[m3000][root][~] emerge --verbose gnumeric
Calculating dependencies... done!
 Emerging (1 of 1) app-office/gnumeric-1.4.3-r3 to /
 checking ebuild checksums ;-)
 checking auxfile checksums ;-)
 checking miscfile checksums ;-)
 checking gnumeric-1.4.3.tar.bz2 ;-)
 Unpacking source...
 Unpacking gnumeric-1.4.3.tar.bz2 to /var/tmp/portage/gnumeric-1.4.3-r3/work
 * Fixing OMF Makefiles ...   [ ok 
] * Applying gnumeric-1.4.3-makejobs.patch ... [ ok 
] * Applying gnumeric-1.4.3-new_gsf_api.patch ...  [ ok 
] * Applying gnumeric-1.4.3-pcre_int_overflow.patch ...[ ok 
] * Applying gnumeric-1.4.3-libgsf-1.patch ... [ ok 
] * Applying gnumeric-1.4.3-remove-deprecated.patch ...[ ok 
] * Running eautoreconf in 
'/var/tmp/portage/gnumeric-1.4.3-r3/work/gnumeric-1.4.3' ...
 * Running aclocal ...[ !! ]
 * Failed Running aclocal !
 *
 * Include in your bugreport the contents of:
 *
 *   /var/tmp/portage/gnumeric-1.4.3-r3/temp/aclocal-7434.out


!!! ERROR: app-office/gnumeric-1.4.3-r3 failed.
Call stack:
  ebuild.sh, line 1539:   Called dyn_unpack
  ebuild.sh, line 711:   Called src_unpack
  gnumeric-1.4.3-r3.ebuild, line 78:   Called eautoreconf
  autotools.eclass, line 65:   Called eaclocal
  autotools.eclass, line 102:   Called autotools_run_tool 'aclocal'
  autotools.eclass, line 193:   Called die

!!! Failed Running aclocal !
!!! If you need support, post the topmost build error, and the call stack if 
relevant.


[m3000][root][~] cat /var/tmp/portage/gnumeric-1.4.3-r3/temp/aclocal-7434.out
* aclocal *

aclocal: configure.in: 209: macro `AM_GCONF_SOURCE_2' not found in library

===

-- 
Walter Dnes [EMAIL PROTECTED] In linux /sbin/init is Job #1
My musings on technology and security at http://tech_sec.blog.ca
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] New Hardware...

2006-07-29 Thread Donnie Berkholz

Jerry McBride wrote:

Howdy,

I'm gearing up for a new hardware purchase and I find that I need a little 
help figuring out what is and what isn't linux compatible.


The days of pci, agp video and socket A hardware are slowly coming to a close 
and I'm itching to try something new.


Does anyone here run any cutting edge hardware, like socket am2 motherboards 
and pci-e video cards?


Sounds dumb, but I've no hands on experience with the new stuff and would love 
to hear from those with first hand knowledge. In particular, what hardware 
are you using and how does it work on your desktop? Any driver issues with 
xorg-x11, etc.?


My goal is to build a desktop, taking full advantage of the current available 
video hardware... maybe even use xgl on it too.


Anything would be welcomed. Feel free to email me off list if you desire.


As far as video, I would recommend a motherboard with Intel graphics if 
you want to support open source. The latest stuff is roughly equivalent 
to a Radeon 9250. Intel is doing a superb job of supporting open-source 
drivers and is the _only_ company with fully open-source drivers on its 
newest hardware.


If you still want open-source drivers but need better performance, check 
into a Radeon X800 XT or any X### where ### is less than 1000. Those 
will use the reverse-engineered r300 driver.


I cannot recommend any non-Intel graphics outside of the Radeon series 
8500-X850. Nobody in the open-source community will want to help or 
support you if you are using binary drivers, so there's nothing you can 
do if you hit a bug in them.


With the recent news that AMD is buying ATI, perhaps more good news will 
surface that ATI will open up its drivers and specs once again.


Thanks,
Donnie
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Gnumeric 1.4.3-r3 again (or still)

2006-07-29 Thread Rumen Yotov
Walter Dnes wrote:
   Before I make a fool of myself for unnecessarily re-opening
 http://bugs.gentoo.org/show_bug.cgi?id=131151 (allegedly fixed a couple
 of weeks ago), am I doing anything glaringly wrong?  I just finished
 doing an emerge sync and the only package that fails a deep world update
 is gnumeric.  The 80 megs of downloads was painful on dialup.  My ADSL
 combo router/modem died on me, and I have one on order, but for the next
 few days, I'll be slumming it.
 
   The machine is an AMD64 K8, but running exclusively 32-bit mode.  Here
 are a few listings that might help gather more info...
 
 ===
 [m3000][root][~] emerge --pretend --verbose gnumeric
 
 These are the packages that would be merged, in order:
 
 Calculating dependencies... done!
 [ebuild U ] app-office/gnumeric-1.4.3-r3 [1.4.3-r2] USE=X -debug
 -gnome -libgda -python -static 0 kB
 
 Total size of downloads: 0 kB
 
 
 
 [m3000][root][~] emerge --verbose gnumeric
 Calculating dependencies... done!
 Emerging (1 of 1) app-office/gnumeric-1.4.3-r3 to /
 checking ebuild checksums ;-)
 checking auxfile checksums ;-)
 checking miscfile checksums ;-)
 checking gnumeric-1.4.3.tar.bz2 ;-)
 Unpacking source...
 Unpacking gnumeric-1.4.3.tar.bz2 to /var/tmp/portage/gnumeric-1.4.3-r3/work
  * Fixing OMF Makefiles ...   [ 
 ok ] * Applying gnumeric-1.4.3-makejobs.patch ... 
 [ ok ] * Applying gnumeric-1.4.3-new_gsf_api.patch ...
   [ ok ] * Applying gnumeric-1.4.3-pcre_int_overflow.patch ...
 [ ok ] * Applying gnumeric-1.4.3-libgsf-1.patch ...   
   [ ok ] * Applying gnumeric-1.4.3-remove-deprecated.patch ...
 [ ok ] * Running eautoreconf in 
 '/var/tmp/portage/gnumeric-1.4.3-r3/work/gnumeric-1.4.3' ...
  * Running aclocal ...[ 
 !! ]
  * Failed Running aclocal !
  *
  * Include in your bugreport the contents of:
  *
  *   /var/tmp/portage/gnumeric-1.4.3-r3/temp/aclocal-7434.out
 
 
 !!! ERROR: app-office/gnumeric-1.4.3-r3 failed.
 Call stack:
   ebuild.sh, line 1539:   Called dyn_unpack
   ebuild.sh, line 711:   Called src_unpack
   gnumeric-1.4.3-r3.ebuild, line 78:   Called eautoreconf
   autotools.eclass, line 65:   Called eaclocal
   autotools.eclass, line 102:   Called autotools_run_tool 'aclocal'
   autotools.eclass, line 193:   Called die
 
 !!! Failed Running aclocal !
 !!! If you need support, post the topmost build error, and the call stack if 
 relevant.
 
 
 [m3000][root][~] cat /var/tmp/portage/gnumeric-1.4.3-r3/temp/aclocal-7434.out
 * aclocal *
 
 aclocal: configure.in: 209: macro `AM_GCONF_SOURCE_2' not found in library
 
 ===
 
Hi,
Try re-emergeing 'sys-devel/automake-wrapper'.
HTH.Rumen


smime.p7s
Description: S/MIME Cryptographic Signature


Re: [gentoo-user] how to get ssh host based authentication working?

2006-07-29 Thread gentuxx
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

John Blinka wrote:
 Hi, folks,

 I'd like to get host based ssh authentication working within
 all the gentoo boxes on my home network.  I've had no
 success yet - I hope someone can enlighten me!

 What I've done so far on the server side is:

set HostbasedAuthentication yes in sshd_config
set HostbasedAuthentication yes in ssh_config
added /etc/ssh/shosts.equiv containing names of client boxes
added /etc/ssh/ssh_known_hosts containing public host keys of
 client boxes

 Client boxes are configured similarly.

 When I try to ssh from one box to another, I always get a request
 for a password, which is what I'm trying to avoid.

If you just want to be able to log into each system without using a
password, why not set up publickey authentication instead of
hostbased?  The principle is essentially the same, except the
authentication key is tied to the user instead of the system.

 Below is an excerpt from an attempt to ssh from one box to another
 while requesting the maximum amount of debugging info.  It looks
 like ssh is trying to use host based authentication, but for some
 reason it fails.  I'd appreciate any ideas about what might be
 going wrong.
[  SNIP SSH DEBUG INFO  ]

I haven't done too much hostbased authentication, because it's
historically insecure.  But if I understand the man page correctly,
the following needs to be in place:

1.  Assumption:  myserver is the ssh server, and tobey is the ssh
client.
2.  tobey must be in /etc/hosts.equiv or /etc/ssh/shosts.equiv on
myserver
3.  a.  The current user attempting to login to myserver from tobey
must exist on myserver and is the account being logged into through
the ssh session OR
 b.  the account being logged into on myserver must have a
~/.rhosts or ~/.shosts file containing the name of the ssh client
(tobey) in its home directory
4.  tobey's host key must be located in /etc/ssh/ssh_known_hosts
and/or ~/.ssh/known_hosts on myserver

Please verify that you have all of the above set up for each client
and server pair.  You might be better off trying one system as the
server and one system as the client until you are able to get a
successful connection.

- --
gentux
echo hfouvyyAhnbjm/dpn | perl -pe 's/(.)/chr(ord($1)-1)/ge'

gentux's gpg fingerprint == 5495 0388 67FF 0B89 1239  D840 4CF0 39E2
18D3 4A9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.4 (GNU/Linux)

iD8DBQFEzEB5TPA54hjTSp4RAmQiAJ4sT7GUXAghXG4uqMKMlIkliQWhIACglJNP
PDOWDdzPYguBhPIzbC8vTmM=
=YDMQ
-END PGP SIGNATURE-

-- 
gentoo-user@gentoo.org mailing list