Re: [gentoo-user] mod_mp3 problem

2003-03-12 Thread Joshua J. Berry
AFAIK Kaboodle doesn't have support for streaming (though maybe that's 
changed). Try xmms.

On Wednesday 12 March 2003 16:57, Arnold Krille wrote:
> Just me again...
>
> I am trying to get a little mp3 station working (just intranet). I therefor
> checked out apache, mod_perl and mod_mp3 and did the configuring. Apache
> works (I can see the test-webpage in my browser) but if I try
> localhost:8000 (which should be the mp3station) my kaboodle does nothing.
> The logs of apache show me just another "GET /"-message. Am I something
> missing?
>
> Arnold
>
> PS: I also tried icecast[1|2] but i didn't get them to work either...

-- 

-
Joshua J. Berry

"I haven't lost my mind -- it's backed up on tape somewhere."
-- /usr/games/fortune

PGP Key: http://deneb.condordes.net/node/16/view

NOTE: Please do not submit this email address to any mailing
lists or websites without prior permission.  Thank you.


pgp0.pgp
Description: signature


Re: [gentoo-user] Interesting Konqueror behaviour in KDE 3.1

2003-03-12 Thread Joshua J. Berry

> It looks a lot different on Phoenix (not blue on blue, and links are
> already underlined).  On Konqueror 3.1.0 it's readable, but links aren't
> underlined until the mouse hovers over them.

For the underlined problem, check in Settings -> Configure Konqueror -> 
Behavior (the 2nd one), and take a look at the "Underline links" option.


-
Joshua J. Berry

"I haven't lost my mind -- it's backed up on tape somewhere."
-- /usr/games/fortune

PGP Key: http://deneb.condordes.net/node/16/view

NOTE: Please do not submit this email address to any mailing
lists or websites without prior permission.  Thank you.


pgp0.pgp
Description: signature


Re: [gentoo-user] ext3 acls

2003-03-12 Thread Andrei Ivanov


Thanks for all your answers so far, but I have one left.

Besides the acl and attr packages, do fileutils support acls or do I have 
to apply any patch ?

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] rpm??

2003-03-12 Thread Stephen Boulet
Emerging app-arch/alien and converting to tgz might be an option.


On Wednesday 12 March 2003 07:04 pm, Vincent van de Camp wrote:
> You may be able to install the rpms with the --force flag, and if that
> doesn't work, try the --nodeps flag, which turns off dependency
> checking. That has always worked for me.
>
> Brian Reichholf wrote:
> >*sigh* oh, the joy of rpm's, how annoying :/
> >
> >i am trying to install some commercial software which unfortunately is
> >only available as an RPM (to my knowlege - at least i have the rpms...)
> >
> >strangely enough though after emergeing rpm and executing rpm -ihv
> >.rpm it tells me that i don't fulful the requirements (i
> >manually checked.. and i *do* have all the .so's required - it doesn't
> >ask for packages, just so's)
> >
> >any suggestions?

-- 
Stephen  
  From here to there
 and there to here,
   funny things are everywhere.  -- Dr Seuss



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Can't compile media-libs/gst-plugins

2003-03-12 Thread Phil Barnett
On Wednesday 12 March 2003 11:50 pm, Joshua J. Berry wrote:
> OK, it seems to be looking for arts in /usr/kde/3, which is wrong...since
> your KDEDIR is for KDE 3.1.

Yup.

> As a kludge, my suggestion would be to symlink /usr/kde/3 to /usr/kde/3.1,
> and backup your old /usr/kde/3, if you have one. Then run ldconfig.

I didn't have a /usr/kde/3. So, I just created a symlink and took a shot at 
it. Everything compiled perfectly.

> If you upgraded to 3.1 from 3.0, chances are you still have some old
> programs somewhere that rely on 3.0 and just haven't been upgraded yet. If
> this is true, then you can expect those programs to break...but a simple
> re-emerge should fix them.

I though I pretty much killed off anything 3.0 related, but I guess some 
reference to it remains somewhere.

> Hope this helps.

Sure did. Thanks!


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] I'm no tar geru

2003-03-12 Thread Brett Campbell
hey what's up..

i've just recently fought the "tar battle" myself, having picked up my first sysadmin 
job.  after hours of beating my head trying to find better solutions, i ended up 
deciding on cpio.  it seems much more reliable than tar (i archive to tape, and 
sometimes tar would just sh1t all over me, not lending a hand to recover one file).  
just thought i'd open your eyes to this nice tool if you hadn't found it already. 

lion-O

On Mon, Mar 10, 2003 at 07:57:50PM -0500, Jesse Jacobs wrote:
> Hello everyone,
> 
> Here's the link: http://www.xs4all.nl/~voorburg/backup.html
> 
> I'll be fiddling with it.
> J
> 
> Jesse Jacobs said:
> > Hello everyone,
> >
> > First thank you for the great responses.
> > As with any one that uses Linux I don't give up easily and used:
> >
> > find / -maxdepth 1 > /tar.test.txt
> > nano /tar.test.txt
> > ** removed /exports,/proc,/tmp etc. **
> > tar cvjpf /exports/full-test-backup090303.tar.bz2 -T tar.test.txt
> >
> > ** this was missing directories though /exports,/proc,/tmp
> > Not perfect, and took forever on the loaded system.
> > Now that you have provided me with the correct syntax I'll have to
> > redo it(another trait of Linux users seems to be the constant stride
> > to perfection, haven't u noticed :) ).
> >
> > When searching, I found a great little cronjob/script for full and
> > incremental weekly backups using tar.  I'll post it as soon as I get
> > home :)
> >
> > Thanks again guys,
> > Jesse.
> >
> > Mark A Basil said:
> >> Hey Jesse,
> >>
> >> Another solution would be to create a text file with what you want to
> >> backup.
> >>
> >> i.e.
> >>
> >> backuplist.txt
> >> ---
> >> /usr/
> >> /etc/
> >> ---
> >>
> >> tar cvjpf yourbackup.tar.bz2 -T backuplist.txt
> >>
> >> -Mark
> >>
> >> On Monday 10 March 2003 10:58 am, Meir Kriheli wrote:
> >>> On Sunday 09 March 2003 22:45, Jesse Jacobs wrote:
> >>> > Hello everyone,
> >>> >
> >>> > I would like to backup my system minus some dirs.
> >>> >
> >>> > I print to a file the files/dirs i'd like to skip
> >>> >
> >>> > mount /dev/hda1 /boot
> >>> > find /proc > /tar.test.txt
> >>> > find /exports >> /tar.test.txt
> >>> > tar -cvjpsPf -X /tar.test.txt /
> >>> /exports/backup-full-090303.tar.bz2
> >>> >
> >>> > But when the archive starts the specified dirs are included  :)
> >>> >
> >>> > I hope to use this for compiling a optimised i686/athlon-xp base
> >>> to
> >>> be used for my own rapid deployment.
> >>> >
> >>> > Also I've noticed the archives in /usr/portage/distfiles/*.tbz2 or
> >>> tar.bz2 I was hoping I could tar these and extract to the fresh base
> >>> for a little bandwith savings.
> >>> >
> >>> > Jesse Jacobs.
> >>>
> >>> Hi Jesse,
> >>>
> >>> You don't need to specify each file in the excludes file. I usually
> >>> do it with --exclude switch and specify wild cards.
> >>>
> >>> I advise against using -P as it can lead to accidents. If you untar
> >>> it as root by accident it'll overwrite your current system (since /
> >>> is included). Let tar strip the leading / and untar in the root dir.
> >>>
> >>> -p is not really needed at this stage AFAIK, as it affects extract,
> >>> not creation. You might want to  revers the order since usually
> >>> after 'f' is passed tar is expecting the file name.
> >>>
> >>> Try this for example:
> >>> tar -cvjpf /exports/backup-full-090303.tar.bz2 --directory /
> >>> --exclude=proc --exclude=exports
> >>>
> >>> You can exclude other dirs as well (tmp/* contents for example).
> >>>
> >>> There are many tutorials on the net about it, Google will surely
> >>> find some for you.
> >>
> >> --
> >> [EMAIL PROTECTED] mailing list
> 
> 
> 
> 
> --
> [EMAIL PROTECTED] mailing list

-- 
''Wisdom is the companion of patience''

   ,-~~-.___.
  / |  ' \
 (  ) 0
  \_/-, ,'
    //
/  \-'~;/~~~(O)
   /  __/~|   /   |
 =(  _| (_|

Brett Ryan Campbell
Systems Administrator, CAD Research Center
Cal Poly State University, San Luis Obispo, CA 93407
http://www.cadrc.calpoly.edu/frameset_content/content_about_us.html

--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] CDRW problem

2003-03-12 Thread Josh Zeckser
On Wed, Mar 12, 2003 at 03:16:56PM +, Alberto Romero wrote:
the system doesn't 
> recognize my CDRW, it says:
>   
>   Cannot open SCSI driver
>   Access denied to /dev/pg*
> 
> and I don't have any pg* in my /dev. Where is the problem and which is my 
> device in the /dev???


I am having a similar problem with my CD-ROM and CD-RW drives. With
previous Linux distributions, they have always been /dev/hdc and /dev/hdd.
I'd use hdd=ide-scsi with grub/lilo and everything would work fine. Now,
with a new Gentoo installation, /dev/hdc and /dev/hdd don't exist. I don't
recall whether there was a /dev/sg0 or something to deal with the cd-rw
drive. 
So..

1. How do I make the /dev/hdc & /dev/hdd devices and how do they get pointed
to the devices?

2. Do I need a /dev/sg0? If so, should I just symlink to /dev/hdd or make
the /dev/sg0 and symlink /dev/hdd to it or should I just do the /dev/sg0 and
forget about the /dev/hdd. If that is the case, do I put sg0=ide-scsi in my
grub.conf?

Josh Zeckser
Digitizing
[EMAIL PROTECTED]
503-419-5036
http://www.nobeltec.com--
[EMAIL PROTECTED] mailing list

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] nVidia [was :(]

2003-03-12 Thread Joshua J. Berry
On Wednesday 12 March 2003 17:44, MAL wrote:
> Joshua J. Berry wrote:
> >
> > The only major issue I've had has been some memory leakage in kernel
> > space requiring a reboot every few days, but it looks like this issue has
> > been largely cleaned up. Just make sure you use agpgart (which is an
> > option in the kernel), and not nVidia's AGP interface.
>
> Why?  Is this a documented problem?

It is...there have been people complaining about it on nVidia's forums. 
Unfortunately, I can't find any of the links for it. I don't know if nVidia 
has responded to this, or if it's a problem in the 4xxx drivers.

>
> I have a GeForce2 MX200 64MB on my work machine, and have been running
> RedHat 7.1 for the last year with it and the nvidia drivers, using their
> AGP interface, and my box has seen month+ uptimes, (and yes I play
> quake3 on it ;)
>
> I ask because I just cleaned my workstation and put Gentoo on it to
> match home, and I have seen the odd frozen desktop already, (3 day old
> install).  I figured it was an app I was using, but fill me in

I've only had major problems when I leave certain screen savers running 
overnight. What would happen is, RAM would gradually start to be used up, but 
no program would lay claim to it. Even after killing everything off and 
dropping to single-user mode, I would still have about 2-300 MB RAM 
unaccounted for. As this *only* happened when I was running a GL screensaver, 
I figured it had to be the nVidia driver, and sure enough, there was mention 
of this in the forums.

I don't believe any official fix/workaround has been found, nor have I seen 
any definitive docs on what causes the bug to happen. However, since I 
started using agpgart, I haven't had any problems.

>
> Cheers,
> MAL

-
Joshua J. Berry

"I haven't lost my mind -- it's backed up on tape somewhere."
-- /usr/games/fortune

PGP Key: http://deneb.condordes.net/node/16/view

NOTE: Please do not submit this email address to any mailing
lists or websites without prior permission.  Thank you.


pgp0.pgp
Description: signature


Re: [gentoo-user] Slow gigabit...

2003-03-12 Thread Brett Campbell
> My personal experience is that on two IBM 305 gigabit Px2GHz servers 
> using something like
>   dd if=/dev/zero | nc slave 1234 on master
>   and nc -l -p 1234 | dd of=/dev/null on slave
> so no hard disk bottleneck
> We had not more than 60Mb/sec with a 100% CPU utilization (35Mb sec on 
> real disk access) and I'm sure these servers has PCI66 at 64bits called 
> XPCI.
> 
> So bottleneck is now CPU !

That's totally interesting. Nice little experiment ;-). 

(I've generally noticed something similar with the servers on the 
1Gb/s fiber-optic lan where i work. the bottleneck there seems to
be the circuitry within the computers themselves; the resistance 
of the electrons on copper is far greater than the photons shooting
through dark fiber, obviously.) 

lion-O
-- 
''Wisdom is the companion of patience''

   ,-~~-.___.
  / |  ' \
 (  ) 0
  \_/-, ,'
    //
/  \-'~;/~~~(O)
   /  __/~|   /   |
 =(  _| (_|

Brett Ryan Campbell
Systems Administrator, CAD Research Center
Cal Poly State University, San Luis Obispo, CA 93407
http://www.cadrc.calpoly.edu/frameset_content/content_about_us.html

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Can't compile media-libs/gst-plugins

2003-03-12 Thread Joshua J. Berry
OK, it seems to be looking for arts in /usr/kde/3, which is wrong...since your 
KDEDIR is for KDE 3.1.

As a kludge, my suggestion would be to symlink /usr/kde/3 to /usr/kde/3.1, and 
backup your old /usr/kde/3, if you have one. Then run ldconfig.

If you upgraded to 3.1 from 3.0, chances are you still have some old programs 
somewhere that rely on 3.0 and just haven't been upgraded yet. If this is 
true, then you can expect those programs to break...but a simple re-emerge 
should fix them.

Hope this helps.

-- Josh

On Wednesday 12 March 2003 20:23, you wrote:
> On Wednesday 12 March 2003 2:31 pm, Joshua J. Berry wrote:
> > What is the output of the following commands?
> >
> > # echo $KDEDIR
> > # ls -la $KDEDIR/lib/*arts*
>
> [EMAIL PROTECTED] philb $ su -
> Password:
> hp root # echo $KDEDIR
> /usr/kde/3.1
> hp root # ls -la $KDEDIR/lib/*arts*
> lrwxrwxrwx1 root root   30 Jan 29 03:54
> /usr/kde/3.1/lib/libarts_mpeglib-0.3.0.so.0 ->
> libarts_mpeglib-0.3.0.so.0.0.3 -rwxr-xr-x1 root root   407707
> Jan 29 03:54 /usr/kde/3.1/lib/libarts_mpeglib-0.3.0.so.0.0.3 -rw-r--r--   
> 1 root root 1166 Mar  5 08:08
> /usr/kde/3.1/lib/libarts_mpeglib.la lrwxrwxrwx1 root root  
> 30 Jan 29 03:54 /usr/kde/3.1/lib/libarts_mpeglib.so ->
> libarts_mpeglib-0.3.0.so.0.0.3 -rw-r--r--1 root root 1136
> Mar  5 08:08 /usr/kde/3.1/lib/libarts_splay.la lrwxrwxrwx1 root
> root   22 Jan 29 03:54 /usr/kde/3.1/lib/libarts_splay.so ->
> libarts_splay.so.0.0.0 lrwxrwxrwx1 root root   22 Jan 29
> 03:54 /usr/kde/3.1/lib/libarts_splay.so.0 -> libarts_splay.so.0.0.0
> -rwxr-xr-x1 root root   101664 Jan 29 03:54
> /usr/kde/3.1/lib/libarts_splay.so.0.0.0 -rw-r--r--1 root root  
>   1182 Mar  5 08:08 /usr/kde/3.1/lib/libartsbuilder.la lrwxrwxrwx1 root
> root   23 Jan 29 03:54 /usr/kde/3.1/lib/libartsbuilder.so ->
> libartsbuilder.so.0.0.0 lrwxrwxrwx1 root root   23 Jan 29
> 03:54 /usr/kde/3.1/lib/libartsbuilder.so.0 -> libartsbuilder.so.0.0.0
> -rwxr-xr-x1 root root   575745 Jan 29 03:54
> /usr/kde/3.1/lib/libartsbuilder.so.0.0.0 -rwxr-xr-x1 root root 
> 714 Mar  5 13:02 /usr/kde/3.1/lib/libartsc.la lrwxrwxrwx1 root
> root   17 Mar  5 13:02 /usr/kde/3.1/lib/libartsc.so ->
> libartsc.so.0.0.0 lrwxrwxrwx1 root root   17 Mar  5 13:02
> /usr/kde/3.1/lib/libartsc.so.0 -> libartsc.so.0.0.0 -rwxr-xr-x1 root   
>  root27812 Mar  5 13:02 /usr/kde/3.1/lib/libartsc.so.0.0.0
> -rwxr-xr-x1 root root 1295 Mar  5 13:02
> /usr/kde/3.1/lib/libartscbackend.la lrwxrwxrwx1 root root  
> 24 Mar  5 13:02 /usr/kde/3.1/lib/libartscbackend.so ->
> libartscbackend.so.0.0.0 lrwxrwxrwx1 root root   24 Mar  5
> 13:02 /usr/kde/3.1/lib/libartscbackend.so.0 -> libartscbackend.so.0.0.0
> -rwxr-xr-x1 root root62980 Mar  5 13:02
> /usr/kde/3.1/lib/libartscbackend.so.0.0.0 -rwxr-xr-x1 root root
>  755 Mar  5 13:02 /usr/kde/3.1/lib/libartsdsp.la lrwxrwxrwx1 root  
>   root   19 Mar  5 13:02 /usr/kde/3.1/lib/libartsdsp.so ->
> libartsdsp.so.0.0.0 lrwxrwxrwx1 root root   19 Mar  5 13:02
> /usr/kde/3.1/lib/libartsdsp.so.0 -> libartsdsp.so.0.0.0 -rwxr-xr-x1
> root root13796 Mar  5 13:02
> /usr/kde/3.1/lib/libartsdsp.so.0.0.0 -rwxr-xr-x1 root root 
> 734 Mar  5 13:02 /usr/kde/3.1/lib/libartsdsp_st.la lrwxrwxrwx1 root
> root   22 Mar  5 13:02 /usr/kde/3.1/lib/libartsdsp_st.so ->
> libartsdsp_st.so.0.0.0 lrwxrwxrwx1 root root   22 Mar  5
> 13:02 /usr/kde/3.1/lib/libartsdsp_st.so.0 -> libartsdsp_st.so.0.0.0
> -rwxr-xr-x1 root root35722 Mar  5 13:02
> /usr/kde/3.1/lib/libartsdsp_st.so.0.0.0 -rw-r--r--1 root root  
>   1357 Mar  5 08:08 /usr/kde/3.1/lib/libartseffects.la -rwxr-xr-x1 root
> root   159684 Jan 29 03:54 /usr/kde/3.1/lib/libartseffects.so
> -rwxr-xr-x1 root root 1113 Mar  5 13:02
> /usr/kde/3.1/lib/libartsflow.la lrwxrwxrwx1 root root   20
> Mar  5 13:02 /usr/kde/3.1/lib/libartsflow.so -> libartsflow.so.1.0.0
> lrwxrwxrwx1 root root   20 Mar  5 13:02
> /usr/kde/3.1/lib/libartsflow.so.1 -> libartsflow.so.1.0.0 -rwxr-xr-x1
> root root  1410553 Mar  5 13:02
> /usr/kde/3.1/lib/libartsflow.so.1.0.0 -rwxr-xr-x1 root root
>  870 Mar  5 13:02 /usr/kde/3.1/lib/libartsflow_idl.la lrwxrwxrwx1 root 
>root   24 Mar  5 13:02 /usr/kde/3.1/lib/libartsflow_idl.so ->
> libartsflow_idl.so.1.0.0 lrwxrwxrwx1 root root   24 Mar  5
> 13:02 /usr/kde/3.1/lib/libartsflow_idl.so.1 -> libartsflow_idl.so.1.0.0
> -rwxr-xr-x1 root root   635618 Mar  5 13:02
> /usr/kde/3.1/lib/libartsflow_idl.so.1.0.0 -rwxr-xr-x1 root root
> 1273 Mar  5 1

[gentoo-user] Re: Accessing Zope via FTP

2003-03-12 Thread Lee Harr
I emerged Zope 2.6.1 to check it out (and am mightily pleased so >far),
but one thing's not working; the docs say that Zope's FTP server >should
be started automatically by default on port 8021, but that's not the
case here.  One weak point of Zope is the docs, and I can't seem to >find
any good info on Zope start-up options.  Has anyone run into this
before?


Look at z2.py

That is the canonical source of Zope startup options  :o)

You may also want to join the [EMAIL PROTECTED] list, as that is
the best source of help on all issues Zope.
_
Protect your PC - get McAfee.com VirusScan Online 
http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] RE: CDRW problem

2003-03-12 Thread Daniel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


A trick is: cdrecord dev={sg|pg|ATA...} --scanbus

I've got a ATAPI (ide-scsi) so I added the following file 
/etc/modules.d/ide-scsi

options ide-cd ignore=hdb# tell the ide-cd module to ignore hdb
alias scd0 sr_mod# load sr_mod upon access of scd0
#pre-install ide-scsi modprobe imm# uncomment for some ZIP drives only
pre-install sg modprobe ide-scsi # load ide-scsi before sg
pre-install sr_mod modprobe ide-scsi # load ide-scsi before sr_mod
pre-install ide-scsi modprobe ide-cd # load ide-cd   before ide-scsi
 
and did a "modules-update" command.

Also in my /boot/grub/grub.conf something of the form:

title=Gentoo Linux (Gentoo Sources 2.4.20) - GrSec
root (hd0,0)
kernel /boot/bzImage2.4.20-gentoo-r10-d1 root=/dev/hda5 hdb=ide-scsi

Make sure the kernel contains a ide-scsi module and the ide-cd is as a module 
too (as previously mentioned). Tip when compiling the kernel edit 
/usr/src/linux-{version}/Makefile and add an addition identifer to 
EXTRAVERSION so that you can have a number of kernel of the same kernel 
version with different options.
 
Since I'm using devfs the et/etc/devfsd.conf contains:
REGISTER^scsi/host.*/bus.*/target.*/lun.*/genericPERMISSIONS 
root.cdrw 660
 

LOOKUP  ^sg0$  CFUNCTION GLOBAL mksymlink 
scsi/host0/bus0/target0/lun0/generic sg0
REGISTER^sg0$   CFUNCTION GLOBAL mksymlink 
scsi/host0/bus0/target0/lun0/generic sg0
UNREGISTER  ^sg0$   CFUNCTION GLOBAL unlink sg0

I'm sure the above lines aren't totally correct but they seem to place a 
/dev/sg0 entry which is needed.

And finally make sure the user has write permission the /dev entry group 
"cdrw" in my case.

Hope this helps.

Daniel

ICQ #169591119
GnuPG/PGP signed and encrypted email preferred
http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x32A64DC8
Key fingerprint = 2300 3292 3351 9665 D41B DC20 4C34 9BB6 32A6 4DC8
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+b/3TTDSbtjKmTcgRAop4AKCD42WDL8R0ytQSs/huZYb5e9+vFQCfZ9JK
K0Ug3XnFmb7ZOxQG9Aut/dA=
=G6dp
-END PGP SIGNATURE-


--
[EMAIL PROTECTED] mailing list



[gentoo-user] More on realplayer

2003-03-12 Thread Collins Richey
I've emerged realplayer (including the recommended download from realplayer), updated 
my Konqueror plugins, and lo and behold it works to a point.  The audio quality is an 
order of magnitude worse than realplayer on the same machine with Win98.

Does anyone have experience with this?

At this point I'm primarily interested in prerecorded broadcasts of the Radio Free 
Europe site in various foreign languages.

--
Collins

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Interesting Konqueror behaviour in KDE 3.1

2003-03-12 Thread Collins Richey
On Wed, 12 Mar 2003 11:45:27 -0800
"Joshua J. Berry" <[EMAIL PROTECTED]> wrote:

> I can confirm this in KDE CVS...so a bug report would probably be a good idea. 
> http://bugs.kde.org if you like.
> 
> On Wednesday 12 March 2003 08:28, Timothy James Friesen wrote:
> > Hello All,
> >
> > I just recently noticed some interesting behaviour in Konqueror.  At the
> > site http://www.bluesnews.com, if I open it up, the links are unreadable,
> > blue text on a different shade of blue background.  However, if I open up
> > the settings at that point and click OK, the links suddenly become their
> > normal yellow.  Can anyone else duplicate this problem, and maybe provide a
> > solution?
> >

It looks a lot different on Phoenix (not blue on blue, and links are already 
underlined).  On Konqueror 3.1.0 it's readable, but links aren't underlined until the 
mouse hovers over them.

--
Collins

--
[EMAIL PROTECTED] mailing list



[gentoo-user] Accessing Zope via FTP

2003-03-12 Thread Doug Gorley
OK, I realize this might be slightly OT, but the emerge behaviour
differs from the documented setup, plus this list is the best resource
around for issues like this.  :-)

I emerged Zope 2.6.1 to check it out (and am mightily pleased so far),
but one thing's not working; the docs say that Zope's FTP server should
be started automatically by default on port 8021, but that's not the
case here.  One weak point of Zope is the docs, and I can't seem to find
any good info on Zope start-up options.  Has anyone run into this
before?

Thanks,

-- 
Doug Gorley | [EMAIL PROTECTED] OpenPGP Key ID: 0xA221559B
Fingerprint: D707 DB92 E64B 69DA B8C7  2F65 C5A9 5415 A221 559B
Interested in public-key cryptography?http://www.gnupg.org/



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] :(

2003-03-12 Thread MAL
Joshua J. Berry wrote:
I have an nVidia GeForce 2 MX in my desktop which I've been using for a while, 
and I'm really happy with it...I think personally that nVidia has done a 
pretty good job with their drivers, even though they're not OSS (and they 
should be).

The only major issue I've had has been some memory leakage in kernel space 
requiring a reboot every few days, but it looks like this issue has been 
largely cleaned up. Just make sure you use agpgart (which is an option in the 
kernel), and not nVidia's AGP interface.
Why?  Is this a documented problem?

I have a GeForce2 MX200 64MB on my work machine, and have been running 
RedHat 7.1 for the last year with it and the nvidia drivers, using their 
AGP interface, and my box has seen month+ uptimes, (and yes I play 
quake3 on it ;)

I ask because I just cleaned my workstation and put Gentoo on it to 
match home, and I have seen the odd frozen desktop already, (3 day old 
install).  I figured it was an app I was using, but fill me in

Cheers,
MAL
--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] restart Apache on ip change

2003-03-12 Thread Troy Dack

Denny Schierz said:
> hi,
>
> how can i restart apache automatically, if the ip from rp-pppoe has
> changed.
>
> i put into the ip-up "/etc/init.d/apache restart" but it does not work.
> I think, that pppd doesn't check (rp-pppoe restart itself), that the ip
> has changed.

Try /etc/ppp/ip-up.local and ip-down.local

I remember digging those out of the rp-pppoe scripts somewhere and they
work for me

-- 
Troy Dack   http://linux.tkdack.com
<[EMAIL PROTECTED]> http://webportage.sf.net

Public Key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x4D90BE3C
Key fingerprint = 1F3D 6C15 16AA 09D5 0C96  92E5 FD89 16F9 4D90 BE3C



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] rpm??

2003-03-12 Thread Vincent van de Camp




You may be able to
install the rpms with the --force flag, and if that doesn't work, try
the --nodeps flag, which turns off dependency checking. That has always
worked for me.

Brian Reichholf wrote:

  *sigh* oh, the joy of rpm's, how annoying :/

i am trying to install some commercial software which unfortunately is
only available as an RPM (to my knowlege - at least i have the rpms...)

strangely enough though after emergeing rpm and executing rpm -ihv
.rpm it tells me that i don't fulful the requirements (i
manually checked.. and i *do* have all the .so's required - it doesn't
ask for packages, just so's)

any suggestions?
  






Re: [gentoo-user] CDRW problem

2003-03-12 Thread Chris Kehler
On Wed, Mar 12, 2003 at 03:16:56PM +, Alberto Romero wrote:

I used to get this all the time with devfs.  Manually creating /dev/sg0 fixed it
for me.

mknod /dev/sg0 c 21 0

/Chris

> Hello everybody!
> I was trying to setup my CDRW drive but I cannot. I had given to the kernel 
> the needed SCSI support and installed cdrecord, mksifos and koncd. I was 
> going to make my first cd compilation with koncd but the system doesn't 
> recognise my CDRW, it says:
>   
>   Cannot open SCSI driver
>   Access denied to /dev/pg*
> 
> and I dont't have any pg* in my /dev. Where is the problem and which is my 
> device in the /dev???


--
[EMAIL PROTECTED] mailing list



[gentoo-user] mod_mp3 problem

2003-03-12 Thread Arnold Krille
Just me again...

I am trying to get a little mp3 station working (just intranet). I therefor 
checked out apache, mod_perl and mod_mp3 and did the configuring. Apache 
works (I can see the test-webpage in my browser) but if I try localhost:8000 
(which should be the mp3station) my kaboodle does nothing. The logs of apache 
show me just another "GET /"-message. Am I something missing?

Arnold

PS: I also tried icecast[1|2] but i didn't get them to work either...

-- 
Hi, I am a .signature virus. Please copy me into your ~/.signature and send me 
to all your contacts.
After a month or so log in as root and do a rm / -rf. Or ask your 
administrator to do so...

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] rpm??

2003-03-12 Thread Alec Berryman
> Given that you're living on a system that doesn't rely on RPM primarily
> for package management, one possibility is to use the --force option,
> effectively telling RPM to STFU and just install the damn package
> already.  But since you don't really care about RPM's package management
> facilities -- you just want to copy this software onto your system --
> I'd probably opt for a different approach.  Convert the .rpm(s) to cpio
> archives (rpm2cpio, IIRC); this will allow you to unpack them anywhere
> (say, /usr/local/PACKAGENAME, or wherever) and avoid mucking up your
> main / and /usr.

Alternatively, if you've got Midnight Commander installed, you can just
hit return over an RPM and browse it in the same way you'd browse a
filesystem.  Then, just copy the hierarchical directories to your / and
you're set.

Similar to the above-mentioned rpm2cpio, you can chekc out rpm2targz or
rpm2tgz.

-- 

Alec Berryman <[EMAIL PROTECTED]>


signature.asc
Description: This is a digitally signed message part


Re: [gentoo-user] rpm??

2003-03-12 Thread Michael Jinks
On Thu, Mar 13, 2003 at 01:07:29AM +0100, Brian Reichholf wrote:
> 
> strangely enough though after emergeing rpm and executing rpm -ihv
> .rpm it tells me that i don't fulful the requirements (i
> manually checked.. and i *do* have all the .so's required - it doesn't
> ask for packages, just so's)

Yeah, RPM doesn't just keep track of the presence of particular packages
and their contents, but also certain key capabilities (I forget the term
they actually use) which are provided by packages.  In some cases those
capabilities look strangely like files (as in your present case where
they're dynamic libraries), but RPM doesn't look at the filesystem, it
looks at its database of installed stuff.

Since none (or few) of your dependencies are installed via RPM, RPM
doesn't know anything about them and will think they're missing.

> any suggestions?

Given that you're living on a system that doesn't rely on RPM primarily
for package management, one possibility is to use the --force option,
effectively telling RPM to STFU and just install the damn package
already.  But since you don't really care about RPM's package management
facilities -- you just want to copy this software onto your system --
I'd probably opt for a different approach.  Convert the .rpm(s) to cpio
archives (rpm2cpio, IIRC); this will allow you to unpack them anywhere
(say, /usr/local/PACKAGENAME, or wherever) and avoid mucking up your
main / and /usr.

Of course, if they didn't compile their binaries to be relocatable you
can give yourself new problems when you try to run the software.  In
that case the next thing I'd try would be to symlink the relevant files
into the places where they expected to be installed.

HTH,
-mrj
-- 
Michael Jinks, IB # Enterprise Networks & Systems Administration # UofC
  Reader!  Think not that
  technical information
  ought not be called speech;  -- Anonymous, "How to decrypt a DVD"

--
[EMAIL PROTECTED] mailing list



[gentoo-user] rpm??

2003-03-12 Thread Brian Reichholf
*sigh* oh, the joy of rpm's, how annoying :/

i am trying to install some commercial software which unfortunately is
only available as an RPM (to my knowlege - at least i have the rpms...)

strangely enough though after emergeing rpm and executing rpm -ihv
.rpm it tells me that i don't fulful the requirements (i
manually checked.. and i *do* have all the .so's required - it doesn't
ask for packages, just so's)

any suggestions?


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] distcc problem

2003-03-12 Thread Arnold Krille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 12 March 2003 19:36, Martin LORANG wrote:
> distcc works here on each box, I'm sure of that because some times I have a
> compilation job on each box. It's only a "load balancing" problem !
> Is ther something to do ?

Just from my head: distcc has some kind of "quality_of_service" or similar. It 
checks which server is responding fast, which has the shortest compile-times 
and so on. I think it even doesn't send files if a server has a load higher 
than a certain value... Or perhaps its a network-problem?

Did you look in the distcc-documentation? There it says something about its 
balancing.

Arnold

- -- 
Hi, I am a .signature virus. Please copy me into your ~/.signature and send me 
to all your contacts.
After a month or so log in as root and do a rm / -rf. Or ask your 
administrator to do so...
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+b8OduYLL1cDjHx0RAh0FAJsG6NjLX41ul2KenvHtjV3nm3+X3wCaA4Kq
W9hHPjzcLIZJtzPppjfS7oM=
=S4Ki
-END PGP SIGNATURE-


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Installing Gentoo - going mad

2003-03-12 Thread Hemmann, Volker Armin
On Wednesday 12 March 2003 07:56, Patrick Marquetecken wrote:
> The documentation with my computer.
> RH 7.3 and Windows XP sees a nvidia Geforce4 488 Go card!
>

imho you need the latest nvidia drivers (4191)for this card.
The name of the modul changed from NVdriver in prior versions to nvidia in 
4191.

Glück Auf,
Volker

--
[EMAIL PROTECTED] mailing list



[gentoo-user] restart Apache on ip change

2003-03-12 Thread Denny Schierz
hi,

how can i restart apache automatically, if the ip from rp-pppoe has
changed.

i put into the ip-up "/etc/init.d/apache restart" but it does not work.
I think, that pppd doesn't check (rp-pppoe restart itself), that the ip
has changed.


cu denny


Denny Schierz [EMAIL PROTECTED]
--- Danke 
uns niemals!! Wir lieben die Arbeit UND wir werden dafuer bezahlt.


signature.asc
Description: This is a digitally signed message part


Re: [gentoo-user] Apache and SSL

2003-03-12 Thread Jason Giangrande
Where would I put the RewriteRule line?

Jason

On Wed, 2003-03-12 at 17:40, John Ziniti wrote:
> Use mod_rewrite and add a RewriteRule:
> 
> RewriteRule http://www.example.com/(.*) https://www.example.com/$1 [R]
> 
> mod_rewrite docuemtation is here:
> 
> http://httpd.apache.org/docs/mod/mod_rewrite.html
> 
> Jason Giangrande wrote:
> 
> >This really isn't a Gentoo question but I thought maybe someone could
> >help.  I'm trying to set up a certain website to use SSL and only SSL. 
> >What I want to do is, when someone types www.example.com, have them go
> >to https://www.example.com instead of http://www.example.com.  Does
> >anyone know how to set this up.  I'm using Apache with mod_ssl.
> >
> >Thanks,
> >Jason
> >
> >
> >--
> >[EMAIL PROTECTED] mailing list
> >
> >
> >
> >  
> >
> 
> 
> --
> [EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Apache and SSL

2003-03-12 Thread Richard Watson
Jason Giangrande <[EMAIL PROTECTED]> writes:

> This really isn't a Gentoo question but I thought maybe someone could
> help.  I'm trying to set up a certain website to use SSL and only SSL. 
> What I want to do is, when someone types www.example.com, have them go
> to https://www.example.com instead of http://www.example.com.  Does
> anyone know how to set this up.  I'm using Apache with mod_ssl.

You could use a RedirectMatch directive on the non-ssl site to send
the browser off to the ssl site.

Something like this might do it:

RedirectMatch ^/(.*)$ https://somesite.com/$1


-- 
Richard Watson
http://www.opencolo.com/
High Quality, Value for money colocation

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Apache and SSL

2003-03-12 Thread John Ziniti
Use mod_rewrite and add a RewriteRule:

RewriteRule http://www.example.com/(.*) https://www.example.com/$1 [R]

mod_rewrite docuemtation is here:

http://httpd.apache.org/docs/mod/mod_rewrite.html

Jason Giangrande wrote:

This really isn't a Gentoo question but I thought maybe someone could
help.  I'm trying to set up a certain website to use SSL and only SSL. 
What I want to do is, when someone types www.example.com, have them go
to https://www.example.com instead of http://www.example.com.  Does
anyone know how to set this up.  I'm using Apache with mod_ssl.

Thanks,
Jason
--
[EMAIL PROTECTED] mailing list


 



--
[EMAIL PROTECTED] mailing list


RE: [gentoo-user] [Fwd: gentoo-pentium3-1.4-rc3] "acpi=off"

2003-03-12 Thread Kevin J. Anderson
ahhh, yes, acpi does have a problem w/ some systems for some reason.  I had
this EXACT issue w/ one of my scsi systems, took me forever to figure it
out.

Youll just have to take acpi out of the kernel, and all will be well.

kev

->-Original Message-
->From: Kevin Gordon [mailto:[EMAIL PROTECTED]
->Sent: Wednesday, March 12, 2003 3:01 PM
->To: [EMAIL PROTECTED]
->Cc: [EMAIL PROTECTED]
->Subject: [gentoo-user] [Fwd: gentoo-pentium3-1.4-rc3] "acpi=off"
->
->
->Hi Kevin
->Thank you for replying to my email. At present I have compiled the scsi
->card as a module and included it in modules.autoload does work. I also
->tried it compiled in the kernel.
->Either way I am only able to boot the kernel and get access to the scsi
->drive by including a parameter "acpi=off". I do not understand ACPI but
->it certainly fails my scsi drive. However the LiveCD auto detects the
->scsi drive 100%.
->
->Kevin
->
->From: Kevin Gordon <[EMAIL PROTECTED]>
->To: [EMAIL PROTECTED]
->Subject: gentoo-pentium3-1.4-rc3
->Date: 12 Mar 2003 19:15:19 +1300
->
->Hi
->I have found the Live CD 100% ok. It handles my SCSI 100%.
->After installation, when I reboot to my hard drive, before "Gentoo
->Linux; http://www.gentoo.org"; is displayed I get:
->"SCSI subsystem driver Revision: 1.00"
->next with 2.4.20-gentoo-r1:
->"kmod: failed to exec /sbin/modprobe -s -k scsi_hostadapter, errno=2"
->whereas previously on 2.4.19-gentoo-r9:
->"sym53c8xx: at PCI bus 1, device, function 0"
->"sym53c8xx: 53c896 detected with Symbios NVRAM"
->Etc
->Etc
->Any advice would be much appreciated.
->
->Kevin Gordon
->
->
->
->
->
->--
->[EMAIL PROTECTED] mailing list
->


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Apache and SSL

2003-03-12 Thread Jason Giangrande
This really isn't a Gentoo question but I thought maybe someone could
help.  I'm trying to set up a certain website to use SSL and only SSL. 
What I want to do is, when someone types www.example.com, have them go
to https://www.example.com instead of http://www.example.com.  Does
anyone know how to set this up.  I'm using Apache with mod_ssl.

Thanks,
Jason


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] RE: CDRW problem

2003-03-12 Thread Louis C. Candell
I was getting the same error '/dev/pg*' until I removed the following
from being compiled into the kernel:

ATA/IDE/*/* Support -> 
IDE, ATA, * Block Devices -> 
Unmark "Include ATAPI/IDE CDROM SUpport"

I think it comes marked as * by default.

I dont know if you've tried that, but it worked for me. I had
everything else set up properly, except for the above. 

-- 
Louis C. Candell

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] RE: CDRW problem

2003-03-12 Thread Andrew Gaffney
You need to append "hdb=ide-scsi hdd=ide-scsi" or similiar (depending on 
how your drives are attached) in your bootloader config.

Alberto Romero wrote:
This is the message I got when I do 'dmesg |grep scsi':

scsi0 : SCSI host adapter emulation for IDE ATAPI devices
--
[EMAIL PROTECTED] mailing list
--
Andrew Gaffney
--
[EMAIL PROTECTED] mailing list


[gentoo-user] RE: CDRW problem

2003-03-12 Thread Alberto Romero
This is the message I got when I do 'dmesg |grep scsi':

scsi0 : SCSI host adapter emulation for IDE ATAPI devices


--
[EMAIL PROTECTED] mailing list



[gentoo-user] fixed-misc font and japanese :)

2003-03-12 Thread gabor
hi,


i'm using kde, and i use fixed-misc-14 font in konsole.

sometimes i listen to some anime soundtracks => i sometimes have to deal
with  japanese symbols in my konsole.

i have set up LC_ALL="en_US.UTF-8" and everything work ok.

then i tried gnome-terminal.
and instead of japanese symbols i could only see rectangles as if the
font didn't have those glyphs/symbols.

if i switch to let's say luxi-mono in gnome-terminal, then i can see
jap. symbols.

so why is that in konsole fixed-misc has jap. glyphs, but not in
gnome-terminal?

thanks,
gabor
-- 


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] RE: CDRW problem

2003-03-12 Thread Andrew Gaffney
What about 'dmesg | grep scsi'?

Alberto Romero wrote:
All right, if I type:
cdrecord -scanbus
I get this:
	Cdrecord 2.0 (i686-pc-linux-gnu) Copyright (C) 1995-2002 Jörg Schilling
	cdrecord: No such file or directory. Cannot open '/dev/pg*'. Cannot open SCSI 	
driver.
	cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are 
root.
	cdrecord: For possible transport specifiers try 'cdrecord dev=help'.

Then I type:
cdrecord dev=help
and I get:
Cdrecord 2.0 (i686-pc-linux-gnu) Copyright (C) 1995-2002 Jörg Schilling
Supported SCSI transports for this platform:
Transport name: sg
Transport descr.:   Generic transport independent SCSI
Transp. layer ind.:
Target specifier:   bus,target,lun
Target example: 1,2,0
SCSI Bus scanning:  supported
Open via UNIX device:   not supported
Transport name: pg
Transport descr.:   SCSI transport for ATAPI over Parallel Port
Transp. layer ind.:
Target specifier:   bus,target,lun
Target example: 1,2,0
SCSI Bus scanning:  supported
Open via UNIX device:   not supported
Transport name: ATA
Transport descr.:   ATA Packet specific SCSI transport
Transp. layer ind.: ATAPI:
Target specifier:   bus,target,lun
Target example: ATAPI:1,2,0
SCSI Bus scanning:  supported
Open via UNIX device:   not supported

Transport name: RSCSI
Transport descr.:   Remote SCSI
Transp. layer ind.: REMOTE:
Target specifier:   [EMAIL PROTECTED]:bus,target,lun
Target example: REMOTE:[EMAIL PROTECTED]:1,2,0
SCSI Bus scanning:  supported
Open via UNIX device:   not supported
So, where is the problem?

--
[EMAIL PROTECTED] mailing list

--
Andrew Gaffney
--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] a "duh" kde question

2003-03-12 Thread brett holcomb
Great!  Scp is fantastic isn't it!

On Wed, 12 Mar 2003 16:20:18 -0500
 Ernie Schroder <[EMAIL PROTECTED]> wrote:
Got it! thanks guys damn, ya gotta love scp...
--
Regards, Ernie
100% Microsoft and Intel free


--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] a "duh" kde question

2003-03-12 Thread Ernie Schroder
On Wednesday 12 March 2003 12:58, brett holcomb wrote:
> IIRC, check for a directory called Mail under your home
> directory.  I believe that's where the rest of the stuff
> is.  Also poke around in ~./kde?. I am not at a KDE
> machine now but there were two folders.  One had the rc,
> the other had a Kmail folder and stuff Kmail needs.  If
> you can't find it email me and I'll check when I get to
> the machine.
>
>
> On Wed, 12 Mar 2003 12:22:47 -0500
>
>   Ernie Schroder <[EMAIL PROTECTED]> wrote:
> > So far, I've copied the kmailrc file to the new box. I
> >can send and
> >receive mail but my folders and filters aren't there.
> >I've looked
> >around but can't find anything that looks like a fix.
> >There must be
> >another file but I need help to find it. Perhaps there is
> >a config
> >option that I'm missing?
> > I haven't copied the email as yet from
> >/home/[user]/mail. Could this be
> >the problem? I figured that I shouldn't copy the mail
> >until the folders
> >were set up.
> >--
> >Regards, Ernie
> >100% Microsoft and Intel free
> >
> >--
> >[EMAIL PROTECTED] mailing list

Got it! thanks guys damn, ya gotta love scp...
-- 
Regards, Ernie
100% Microsoft and Intel free

--
[EMAIL PROTECTED] mailing list



[gentoo-user] [Fwd: gentoo-pentium3-1.4-rc3] "acpi=off"

2003-03-12 Thread Kevin Gordon
Hi Kevin
Thank you for replying to my email. At present I have compiled the scsi
card as a module and included it in modules.autoload does work. I also
tried it compiled in the kernel. 
Either way I am only able to boot the kernel and get access to the scsi
drive by including a parameter "acpi=off". I do not understand ACPI but
it certainly fails my scsi drive. However the LiveCD auto detects the
scsi drive 100%.

Kevin

From: Kevin Gordon <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: gentoo-pentium3-1.4-rc3
Date: 12 Mar 2003 19:15:19 +1300

Hi
I have found the Live CD 100% ok. It handles my SCSI 100%.
After installation, when I reboot to my hard drive, before "Gentoo
Linux; http://www.gentoo.org"; is displayed I get:
"SCSI subsystem driver Revision: 1.00"
next with 2.4.20-gentoo-r1:
"kmod: failed to exec /sbin/modprobe -s -k scsi_hostadapter, errno=2"
whereas previously on 2.4.19-gentoo-r9:
"sym53c8xx: at PCI bus 1, device, function 0"
"sym53c8xx: 53c896 detected with Symbios NVRAM"
Etc
Etc
Any advice would be much appreciated.

Kevin Gordon





--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] nvidia - starting from scatch

2003-03-12 Thread MAL
[EMAIL PROTECTED] wrote:
My preferred method is to emerge the ebuild file itself:

  emerge /usr/portage/somedir/mypackage-x.y.z.ebuild

Then edit the /var/cache/edb/world file and change

  somedir/mypackage

to

  >=somedir/mypackage-x.y.z

Works great.
Thanks for that, it's useful when you emerge your own custom ebuild but
don't want to have to keep putting it in the portage tree (cos I like
the tree to clean :)
MAL



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Interesting Konqueror behaviour in KDE 3.1

2003-03-12 Thread Joshua J. Berry
I can confirm this in KDE CVS...so a bug report would probably be a good idea. 
http://bugs.kde.org if you like.

On Wednesday 12 March 2003 08:28, Timothy James Friesen wrote:
> Hello All,
>
> I just recently noticed some interesting behaviour in Konqueror.  At the
> site http://www.bluesnews.com, if I open it up, the links are unreadable,
> blue text on a different shade of blue background.  However, if I open up
> the settings at that point and click OK, the links suddenly become their
> normal yellow.  Can anyone else duplicate this problem, and maybe provide a
> solution?
>
> Thanks,
>
> Tim
>
> --
> [EMAIL PROTECTED] mailing list

-- 

-
Joshua J. Berry

"I haven't lost my mind -- it's backed up on tape somewhere."
-- /usr/games/fortune

PGP Key: http://deneb.condordes.net/node/16/view

NOTE: Please do not submit this email address to any mailing
lists or websites without prior permission.  Thank you.


pgp0.pgp
Description: signature


Re: [gentoo-user] Python slotted, or replaced?

2003-03-12 Thread Johnh
Your ask:
Since there's no 'D' in the python line, does this mean that the two
Pythons will co-exist?  And, if so, is the doing of portage's SLOTs?

Just read the ebuilds, 
python-2.1.3-r1 goes into slot 2.1,
while 
python 2.2.2 goes into slot 2.2

Looks like they will coexist


\
On Wed, 2003-03-12 at 14:25, [EMAIL PROTECTED] wrote:
> Just checking to see what I needed to install Zope:
> 
> doug $ emerge -up zope
> 
> These are the packages that I would merge, in order:
> 
> Calculating dependencies ...done!
> [ebuildU ] dev-lang/python-2.1.3-r1 [2.2.2]
> [ebuild  N   ] net-zope/zope-2.6.0-r1
> 
> Since there's no 'D' in the python line, does this mean that the two Pythons will 
> co-exist?  And, if so, is the doing of portage's SLOTs?
> 
> Doug Gorley | [EMAIL PROTECTED]
> 
> 
> 
> --
> [EMAIL PROTECTED] mailing list
-- 
Johnh <[EMAIL PROTECTED]>


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] :(

2003-03-12 Thread Joshua J. Berry
I have an nVidia GeForce 2 MX in my desktop which I've been using for a while, 
and I'm really happy with it...I think personally that nVidia has done a 
pretty good job with their drivers, even though they're not OSS (and they 
should be).

The only major issue I've had has been some memory leakage in kernel space 
requiring a reboot every few days, but it looks like this issue has been 
largely cleaned up. Just make sure you use agpgart (which is an option in the 
kernel), and not nVidia's AGP interface.

On Wednesday 12 March 2003 05:06, Carl Hudkins wrote:
> On Tuesday 11 March 2003 09:02, Field, Jeffrey Gilbert wrote:
> > Martin is right .. this is 99% chance it is framebuffer support.  The
> > nvidia driver and the framebuffer do not work at the same time. (this
> > is documented by nvidia).  So, if you have the framebuffer buildt as a
> > module, remove it from your autoload; or remove it from your kernel
> > configuration.
>
>   It seems I do have framebuffer support built into this kernel... I will
> go turn it off before I do my next kernel build.  The card is *not* from
> Nvidia (and from the traffic on this list, I'm thinking I should not buy
> one), and is probably too old to have FB support anyway.  :)
>
>   Thanks to you and the others for your advice!

-- 

-
Joshua J. Berry

"I haven't lost my mind -- it's backed up on tape somewhere."
-- /usr/games/fortune

PGP Key: http://deneb.condordes.net/node/16/view

NOTE: Please do not submit this email address to any mailing
lists or websites without prior permission.  Thank you.


pgp0.pgp
Description: signature


Re: [gentoo-user] Can't compile media-libs/gst-plugins

2003-03-12 Thread Joshua J. Berry
What is the output of the following commands?

# echo $KDEDIR
# ls -la $KDEDIR/lib/*arts*

On Wednesday 12 March 2003 02:14, Phil Barnett wrote:
> Here's how it fails. I've emerged arts again, but it makes no difference.
>
> Can anyone shed some light on this?
>
> g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I../../gst-libs -D_LARGEFILE_SOURCE
> -D_FILE_OFFSET_BITS=64 -pthread -I/usr/include/gstreamer-0.6
> -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2
> -DGST_DISABLE_DEPRECATED -g -I/usr/include/avifile -march=i686 -O2 -pipe -c
> gstwinenc.cc -Wp,-MD,.deps/libgstwincodec_la-gstwinenc.TPlo  -fPIC -DPIC -o
> libgstwincodec_la-gstwinenc.lo
> /bin/sh ../../libtool --mode=link g++  -march=i686 -O2 -pipe   -o
> libgstwincodec.la -rpath /usr/lib/gstreamer-0.6 -module -avoid-version
> libgstwincodec_la-gstwindec.lo libgstwincodec_la-gstwincodec.lo
> libgstwincodec_la-gstwinenc.lo -Wl,-rpath,/usr/lib -laviplay -lstdc++
> mkdir .libs
> grep: /usr/kde/3/lib/libartsc.la: No such file or directory
> sed: can't read /usr/kde/3/lib/libartsc.la: No such file or directory
> libtool: link: `/usr/kde/3/lib/libartsc.la' is not a valid libtool archive
> make[3]: *** [libgstwincodec.la] Error 1
> make[3]: Leaving directory
> `/var/tmp/portage/gst-plugins-0.6.0-r4/work/gst-plugins-0.6.0/ext/avifile'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory
> `/var/tmp/portage/gst-plugins-0.6.0-r4/work/gst-plugins-0.6.0/ext'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory
> `/var/tmp/portage/gst-plugins-0.6.0-r4/work/gst-plugins-0.6.0'
> make: *** [all] Error 2
>
> !!! ERROR: media-libs/gst-plugins-0.6.0-r4 failed.
> !!! Function src_compile, Line 153, Exitcode 2
> !!! (no error message)
>
> hp root # ls -la /usr/kde/3/lib/libartsc.la
> ls: /usr/kde/3/lib/libartsc.la: No such file or directory
>
>
> --
> [EMAIL PROTECTED] mailing list

-- 

-
Joshua J. Berry

"I haven't lost my mind -- it's backed up on tape somewhere."
-- /usr/games/fortune

PGP Key: http://deneb.condordes.net/node/16/view

NOTE: Please do not submit this email address to any mailing
lists or websites without prior permission.  Thank you.


pgp0.pgp
Description: signature


Re: [gentoo-user] RE: CDRW problem

2003-03-12 Thread Chris Wood
Hi,

On Wednesday 12 March 2003 5:41 pm, Alberto Romero wrote:
> So, where is the problem?

I had exectly the same problem but it now works thanks to Rebert Cole. Here is 
part of a message that he posted on a previous discussion of the topic:

You need to build either the scsi or ATAPI CDROM as a module. I kept the SCSI 
built in and built the ATAPI CDROM as a module (ide-cd.o) then recompiled the 
kernel and presto! It works!


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] nvidia - starting from scatch

2003-03-12 Thread Joshua J. Berry
Make sure you do this for both nvidia-kernel and nvidia-glx, as you need both 
the kernel part of the driver and the OpenGL/X11 part of the driver for 
everything to work properly.

On Wednesday 12 March 2003 10:39, Louis C. Candell wrote:
> MAL <[EMAIL PROTECTED]> writes:
> Thanks for the tip! I'm going to try that right now :)
>
> > I think the proper way to emerge a masked package is (eg.):
> >
> > ACCEPT_KEYWORDS="~x86" emerge nvidia
> >
> > This temporarily changes what emerge accepts, rather than forcing or
> > changing anything.
> >
> > MAL

-- 

-
Joshua J. Berry

"I haven't lost my mind -- it's backed up on tape somewhere."
-- /usr/games/fortune

PGP Key: http://deneb.condordes.net/node/16/view

NOTE: Please do not submit this email address to any mailing
lists or websites without prior permission.  Thank you.


pgp0.pgp
Description: signature


[gentoo-user] Re: Re: Re: Mozilla and Java (Again)

2003-03-12 Thread Richard Revis
Arthur Britto wrote:

>> In the readme it tells you to copy it in, not use a symlink (ISTR etc).
> 
> Well, Richard, you made me feel silly for not carefully reading the
> README. ;)

Sorry, I was trying to be helpful, not imply RTFM :o)

> I had assumed, if the program launched in some cases that the link was
> sufficient.  Also, I had concluded since the program works when run as
> realplay that all the permission were sufficient.

I think the plugin is totally independant from the rest of the installation.
I have it on a box which has no realplayer installation, I just copied over
the .so file. (RP8.)

> So, same symptoms as before. :(

FWIW, my config is:

XFree 4 (various versions).
Mozilla (1.1, 1.2.1, 1.3.1).
RP8 (rp8_linux20_libc6_i386_cs2.bin/8.0.3.421).

Good luck :o)

-- 
Lightspeed - the less fattening alternative to fullspeed.
9:13:55  up 20 days, 20:37,  2 users,  load average: 7.35, 5.46, 2.78
RX bytes:1571127405 (1498.3 Mb)  TX bytes:1769592493 (1687.6 Mb)
E-mail address munged to prevent spam.



--
[EMAIL PROTECTED] mailing list



[gentoo-user] Python slotted, or replaced?

2003-03-12 Thread douggorley
Just checking to see what I needed to install Zope:

doug $ emerge -up zope

These are the packages that I would merge, in order:

Calculating dependencies ...done!
[ebuildU ] dev-lang/python-2.1.3-r1 [2.2.2]
[ebuild  N   ] net-zope/zope-2.6.0-r1

Since there's no 'D' in the python line, does this mean that the two Pythons will 
co-exist?  And, if so, is the doing of portage's SLOTs?

Doug Gorley | [EMAIL PROTECTED]



--
[EMAIL PROTECTED] mailing list



Re: RE: [gentoo-user] nvidia - starting from scatch

2003-03-12 Thread douggorley
> ->> I think the proper way to emerge a masked package is (eg.):
> ->>
> ->> ACCEPT_KEYWORDS="~x86" emerge nvidia
> ->>
> ->> This temporarily changes what emerge accepts, rather than 
> forcing or
> ->> changing anything.
> ->>

> ->Thanks for the tip! I'm going to try that right now :)
> ->

> The only problem w/ that, is every time you try to emerge -u(p) 
> world, it
> will try to downgrade the package.

My preferred method is to emerge the ebuild file itself:

  emerge /usr/portage/somedir/mypackage-x.y.z.ebuild

Then edit the /var/cache/edb/world file and change

  somedir/mypackage

to

  >=somedir/mypackage-x.y.z

Works great.

Doug Gorley | [EMAIL PROTECTED]





--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] nvidia - starting from scatch

2003-03-12 Thread Kevin J. Anderson
The only problem w/ that, is every time you try to emerge -u(p) world, it
will try to downgrade the package.

kev

->-Original Message-
->From: Louis C. Candell [mailto:[EMAIL PROTECTED]
->Sent: Wednesday, March 12, 2003 1:40 PM
->To: [EMAIL PROTECTED]
->Cc: MAL
->Subject: Re: [gentoo-user] nvidia - starting from scatch
->
->
->MAL <[EMAIL PROTECTED]> writes:
->Thanks for the tip! I'm going to try that right now :)
->
->>
->> I think the proper way to emerge a masked package is (eg.):
->>
->> ACCEPT_KEYWORDS="~x86" emerge nvidia
->>
->> This temporarily changes what emerge accepts, rather than forcing or
->> changing anything.
->>
->> MAL
->>
->>
->
->--
->Louis C. Candell
->
->--
->[EMAIL PROTECTED] mailing list
->


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: Re: Mozilla and Java (Again)

2003-03-12 Thread Arthur Britto
Richard,

One more data point.  I have another system which I use for sanity
checking and testing.  The same problems exhibit themselves on the other
system and when running mozilla/galeon under a virgin account and under
root.

qpkg -I -i reveals the following:
media-video/realplayer-8-r5 *
net-www/mozilla-1.3_beta *
net-www/galeon-1.3.3 *
x11-base/xfree-4.2.1-r2 *

Is this the same as your working configuration?

Did you try to view RealPlayer video at news.com?

Thanks again,

-Arthur

On Wed, 2003-03-12 at 10:33, Arthur Britto wrote:
> On Wed, 2003-03-12 at 09:53, Richard Revis wrote:
> > Arthur Britto wrote:
> > 
> > > I thought maybe the problem was with plugger overriding things, so I
> > > pulled out plugger.  I already have rpnp.so symbolically linked to
> > > /opt/RealPlayer8/rpnp.so.
> > 
> > In the readme it tells you to copy it in, not use a symlink (ISTR etc).
> 
> Well, Richard, you made me feel silly for not carefully reading the
> README. ;)
> 
> I had assumed, if the program launched in some cases that the link was
> sufficient.  Also, I had concluded since the program works when run as
> realplay that all the permission were sufficient.
> 
> So, placing a copy of the file in place of the symbolic link does not
> help.
> 
> Looking carefully at the link of realplayer known problems, they state
> the installer should use a symbolic link and not a copy.  Looking at the
> ebuild, apparently our wonderful gentoo developers do the right thing
> and go out of their way to install a symbolic link. :)
> 
> Just to be sure, I did a ls -ld `qpkg -nc -l realplayer | egrep -v
> ':|-'` to check all the permissions which seem fine.
> 
> So, same symptoms as before. :(
> 
> Thanks for trying! :)
> 
> -Arthur
-- 
Copyright (c) 2003 Arthur Britto, All Rights Reserved, Redistribution of this message 
requires written permission.



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Cache problem, again?

2003-03-12 Thread Sundance
Okay, problem solved. Here's what I ended up doing:

[EMAIL PROTECTED] ~ % locate gtk+-1.2.10-r10
/usr/portage/metadata/cache/x11-libs/gtk+-1.2.10-r10
/usr/portage/x11-libs/gtk+/files/digest-gtk+-1.2.10-r10
/usr/portage/x11-libs/gtk+/gtk+-1.2.10-r10.ebuild
/var/cache/edb/dep/x11-libs/gtk+-1.2.10-r10

Okay, so those are all the files pertaining to the package in question.

I deleted every last one of them. Bwahaha. (After having backuped them 
though. I'm not /that/ inhuman.)

And there, poof, problem gone.

Note that if I re-emerge rsync afterwards, the problem comes back. This 
is weird, but I'll keep investigating.

-- S.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] nvidia - starting from scatch

2003-03-12 Thread Louis C. Candell
MAL <[EMAIL PROTECTED]> writes:
Thanks for the tip! I'm going to try that right now :)

> 
> I think the proper way to emerge a masked package is (eg.):
> 
> ACCEPT_KEYWORDS="~x86" emerge nvidia
> 
> This temporarily changes what emerge accepts, rather than forcing or
> changing anything.
> 
> MAL
> 
> 

-- 
Louis C. Candell

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] distcc problem

2003-03-12 Thread Martin LORANG
Le Mercredi 12 Mars 2003 18:17, Arnold Krille a écrit :

distcc works here on each box, I'm sure of that because some times I have a 
compilation job on each box. It's only a "load balancing" problem !
Is ther something to do ?

Martin

> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Make sure distccd is running on all machines, then make sure distcc is
> called instead of gcc or g++. (My favourite way: a script named gcc in /bin
> which contains: "distcc /usr/bin/gcc $*" ) At least make sure the
> environment-variable DISTCC_HOSTS contains all hosts which are to be used.
>
> Mine here works;-)
>
> Arnold


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] nvidia - starting from scatch

2003-03-12 Thread Louis C. Candell
Notice what you said:

*Gentoo* Developers do a bang up job, and I for one thank my lucky
 stars that we have them.

KEYWORD: *Gentoo*

Hmm... I looked @ my post, and nowhere do I find the KEYWORD.

Maybe you should read what is stated, instead of jumping to
conclusions.

Anyways, feel free to email me privately if you want to continue
anal-izing my post (in other words, exclude the mailing list).

Collins Richey <[EMAIL PROTECTED]> writes:

> On 12 Mar 2003 09:33:10 +
> "Louis C. Candell" <[EMAIL PROTECTED]> wrote:
> 
> 
> > Heh, a very helpful and down2earth developer named [EMAIL PROTECTED]
> > hooked me up with the above information when he introduced me to
> > gentoo and his sexual partner, GNU Emacs. It's nice having helpfull
> > developers like him which are *missing* a stick up their ass.
> > 
> 
> 
> Louis, I think you need to wash your mouth out with soap.  None of the developers 
> have a stick up their ass.  Gentoo developers do a bang up job, and I for one thank 
> my luck stars that we have them!  I've never found a friendlier more helpful group.
> 
> Maybe you should try a mirror to see who has the aforementioned condition.
> 
> --
> Collins
> 
> --
> [EMAIL PROTECTED] mailing list
> 
> 

-- 
Louis C. Candell

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: Gnome 2.2 breaks Evolution 1.2.2?

2003-03-12 Thread Spundun Bhatt
I had a similar problem but at that time I thought the culprit was
libbonoboui.
The thing with library is that the problem might propagate to subsequent
packages depending on that one.
So I did
emerge -ep evolution
and reemerged packages after libbonoboui. (I think I emerged only
libgnomeui,gnome-desktop,control-center,gnome-panel and gnome-pilot)
And then emerge evolution again.
It SHOULD work.
If this doesnt work could you please let me know the identified
problem and the resolution? 
Thanx
Hope this helps
Spundun
On Wed, 2003-03-12 at 09:59, Ben Ricker wrote:
> Kurt Bechstein <[EMAIL PROTECTED]> writes:
> 
> > After I did the gtkhtml updates and gal updates I just did an emerge
> > evolution and now it works just fine.  Have you tried that?
> 
> Yes. Twice, actually. I had updated gtkhtml and gal with the Gnome 
> update and then did the Evolution update (in a world update) afterwards. 
> Today, I just recompiled Evolution. No joy.
> 
> Ben Ricker <-- About to post a bug on bugs.gentoo.org
> 
> 
> > 
> > 
> > On Wed, 2003-03-12 at 12:31, Ben Ricker wrote:
> >> Kurt Bechstein <[EMAIL PROTECTED]> writes:
> >> 
> >> > I had the same problem and just recompiled evolution against the new
> >> > version of gtkhtml, gal, and libgtkhtml and all was well once again.
> >> 
> >> How exactly did you do this? I recompiled Evolution although I had 
> >> updated Evolution AFTER updating Gnome. After the second recompile, it 
> >> still cannot initialize gtkhtml, gal, libgtkhtml. Do I have to give some 
> >> command line arguments?
> >> 
> >> Ben Ricker
> >> Wellinx.com
> >> 
> >> 
> >> > On Wed, 2003-03-12 at 10:45, Ben Ricker wrote:
> >> >> I upgrade to the latest Gnome 2 (2.2-r2) and the latest Evolution
> >> >> (1.2.2). The problem, it seems, is that the new Gnome updates gtkhtml to
> >> >> 1.1.7-r1 when Evolution 1.2.2 uses gtkhtml 1.04 (at least, that is the
> >> >> version it uses for Redhat; the actual gtkhtml version may be different
> >> >> dut to Redhats funky versioning).
> >> >> 
> >> >> Anyway, I can no longer send emails because the gtkhtml component dies
> >> >> an ignominious death. Has anyone had this problem? Could I slot gtkhtml?
> >> >> I would doubt it. Anyway know a workaround? Shoudl I file a bug report?
> >> >> 
> >> >> Ben Ricker
> >> >> Wellinx.com
> >> >> 
> >> >> 
> >> >> --
> >> >> [EMAIL PROTECTED] mailing list
> >> > 
> >> > 
> >> > --
> >> > [EMAIL PROTECTED] mailing list
> >> > 
> >> > 
> >> 
> >> 
> >> --
> >> [EMAIL PROTECTED] mailing list
> > 
> > 
> > --
> > [EMAIL PROTECTED] mailing list
> > 
> > 
> 
> 
> --
> [EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: Re: Mozilla and Java (Again)

2003-03-12 Thread Arthur Britto
On Wed, 2003-03-12 at 09:53, Richard Revis wrote:
> Arthur Britto wrote:
> 
> > I thought maybe the problem was with plugger overriding things, so I
> > pulled out plugger.  I already have rpnp.so symbolically linked to
> > /opt/RealPlayer8/rpnp.so.
> 
> In the readme it tells you to copy it in, not use a symlink (ISTR etc).

Well, Richard, you made me feel silly for not carefully reading the
README. ;)

I had assumed, if the program launched in some cases that the link was
sufficient.  Also, I had concluded since the program works when run as
realplay that all the permission were sufficient.

So, placing a copy of the file in place of the symbolic link does not
help.

Looking carefully at the link of realplayer known problems, they state
the installer should use a symbolic link and not a copy.  Looking at the
ebuild, apparently our wonderful gentoo developers do the right thing
and go out of their way to install a symbolic link. :)

Just to be sure, I did a ls -ld `qpkg -nc -l realplayer | egrep -v
':|-'` to check all the permissions which seem fine.

So, same symptoms as before. :(

Thanks for trying! :)

-Arthur

-- 
Copyright (c) 2003 Arthur Britto, All Rights Reserved, Redistribution of this message 
requires written permission.



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] media question

2003-03-12 Thread Nicholas Hockey




i just watched it fine with mplayer... so i'm guessing mplayer would be what you are looking for 



-- 
Nicholas Hockey (Tilt) <[EMAIL PROTECTED]>
Unix Administrator
Encrypted E-Mail is preferred..
 
GnuPG KeyID 4EDE2B84
Key fingerprint = B916 6032 BE3D 490D 2A08  F1BC 948A A4C1 4EDE 2B84
HKP: gpg --keyserver pgp.mit.edu --recv-keys 4EDE2B84
LDAP: gpg --keyserver ldap://keyserver.pgp.com --recv-keys 4EDE2B84







<>

Re: [gentoo-user] Advice for installing windowmanager

2003-03-12 Thread Nicholas Hockey




well enlightenment, i personally love enlightenment, i have been using e16 since it was released (some time ago) and have attempted to use other wm's but never felt comfortable, they were either far to plain (like wmaked and blackbox) or way more than i needed (kde/gnome) but e16 was always a happy medium for me, and if you one of those "where are the icons on my desktop" i recommend idesk, idesk isn't easy to set up but it does look nice (especially with the icon set from gentoo's site) well with that said i will give yah the url for a ss on my machine and be gone, thanks for letting me waste a few precious moments of your short life.
http://www.necrophile.net/tilt-ss.png




-- 
Nicholas Hockey (Tilt) <[EMAIL PROTECTED]>
Unix Administrator
Encrypted E-Mail is preferred..
 
GnuPG KeyID 4EDE2B84
Key fingerprint = B916 6032 BE3D 490D 2A08  F1BC 948A A4C1 4EDE 2B84
HKP: gpg --keyserver pgp.mit.edu --recv-keys 4EDE2B84
LDAP: gpg --keyserver ldap://keyserver.pgp.com --recv-keys 4EDE2B84









Re: [gentoo-user] Emerging galeon-1.2.8 using mozilla-1.3_beta

2003-03-12 Thread romildo
On Tue, Mar 11, 2003 at 05:23:04PM -, Dhruba Bandopadhyay wrote:
> > What is the procedure for emerging galeon-1.2.8
> > using mozilla-1.3_beta? Running the emerge
> > command gives me:
> >
> > -
> > # emerge --buildpkg --usepkg -uvp =net-www/galeon-1.2.8
> >
> > These are the packages that I would merge, in order:
> >
> > Calculating dependencies ...done!
> > [binary  N   ] dev-java/blackdown-jre-1.4.1
> > [binaryUD] net-www/mozilla-1.2.1-r5 [1.3_beta] +java +crypt -ipv6
> > -gtk2 +ssl -ldap +gnome -mozsvg -mozcalendar -mozaccess
> > -mozinterfaceinfo -mozp3p -mozxmlterm -moznoirc -moznomail -moznocompose
> > -moznoxft
> > [binary  N   ] net-www/galeon-1.2.8  +nls
> > -
> >
> > I do not intend to downgrade mozilla, as galeon 1.2.8
> > should work with the installed mozilla 1.3 version.
> 
> I'm not sure if this will work but try the -U switch for upgrade only.

No change in portage behaviour.

Romildo
-- 
Prof. Jos? Romildo Malaquias[EMAIL PROTECTED]
Departamento de Computa??o   [EMAIL PROTECTED]
Univ. Federal de Ouro Preto  http://uber.com.br/romildo

--
[EMAIL PROTECTED] mailing list



[gentoo-user] Re: Gnome 2.2 breaks Evolution 1.2.2?

2003-03-12 Thread Ben Ricker
Kurt Bechstein <[EMAIL PROTECTED]> writes:

After I did the gtkhtml updates and gal updates I just did an emerge
evolution and now it works just fine.  Have you tried that?
Yes. Twice, actually. I had updated gtkhtml and gal with the Gnome 
update and then did the Evolution update (in a world update) afterwards. 
Today, I just recompiled Evolution. No joy.

Ben Ricker <-- About to post a bug on bugs.gentoo.org




On Wed, 2003-03-12 at 12:31, Ben Ricker wrote:
Kurt Bechstein <[EMAIL PROTECTED]> writes:

> I had the same problem and just recompiled evolution against the new
> version of gtkhtml, gal, and libgtkhtml and all was well once again.
How exactly did you do this? I recompiled Evolution although I had 
updated Evolution AFTER updating Gnome. After the second recompile, it 
still cannot initialize gtkhtml, gal, libgtkhtml. Do I have to give some 
command line arguments?

Ben Ricker
Wellinx.com
> On Wed, 2003-03-12 at 10:45, Ben Ricker wrote:
>> I upgrade to the latest Gnome 2 (2.2-r2) and the latest Evolution
>> (1.2.2). The problem, it seems, is that the new Gnome updates gtkhtml to
>> 1.1.7-r1 when Evolution 1.2.2 uses gtkhtml 1.04 (at least, that is the
>> version it uses for Redhat; the actual gtkhtml version may be different
>> dut to Redhats funky versioning).
>> 
>> Anyway, I can no longer send emails because the gtkhtml component dies
>> an ignominious death. Has anyone had this problem? Could I slot gtkhtml?
>> I would doubt it. Anyway know a workaround? Shoudl I file a bug report?
>> 
>> Ben Ricker
>> Wellinx.com
>> 
>> 
>> --
>> [EMAIL PROTECTED] mailing list
> 
> 
> --
> [EMAIL PROTECTED] mailing list
> 
> 

--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list



--
[EMAIL PROTECTED] mailing list


[gentoo-user] Re: Re: Mozilla and Java (Again)

2003-03-12 Thread Richard Revis
Arthur Britto wrote:

> I thought maybe the problem was with plugger overriding things, so I
> pulled out plugger.  I already have rpnp.so symbolically linked to
> /opt/RealPlayer8/rpnp.so.

In the readme it tells you to copy it in, not use a symlink (ISTR etc).

-- 
Lightspeed - the less fattening alternative to fullspeed.
7:52:38  up 20 days, 19:15,  2 users,  load average: 0.70, 0.68, 0.31
RX bytes:1508664872 (1438.7 Mb)  TX bytes:1687530508 (1609.3 Mb)
E-mail address munged to prevent spam.



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] a "duh" kde question

2003-03-12 Thread brett holcomb
IIRC, check for a directory called Mail under your home 
directory.  I believe that's where the rest of the stuff 
is.  Also poke around in ~./kde?. I am not at a KDE 
machine now but there were two folders.  One had the rc, 
the other had a Kmail folder and stuff Kmail needs.  If 
you can't find it email me and I'll check when I get to 
the machine.

On Wed, 12 Mar 2003 12:22:47 -0500
 Ernie Schroder <[EMAIL PROTECTED]> wrote:
	So far, I've copied the kmailrc file to the new box. I 
can send and 
receive mail but my folders and filters aren't there. 
I've looked 
around but can't find anything that looks like a fix. 
There must be 
another file but I need help to find it. Perhaps there is 
a config 
option that I'm missing?
	I haven't copied the email as yet from 
/home/[user]/mail. Could this be 
the problem? I figured that I shouldn't copy the mail 
until the folders 
were set up.
--
Regards, Ernie
100% Microsoft and Intel free

--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list


[gentoo-user] RE: CDRW problem

2003-03-12 Thread Alberto Romero
All right, if I type:
cdrecord -scanbus

I get this:
Cdrecord 2.0 (i686-pc-linux-gnu) Copyright (C) 1995-2002 Jörg Schilling
cdrecord: No such file or directory. Cannot open '/dev/pg*'. Cannot open SCSI  
 
driver.
cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are 
root.
cdrecord: For possible transport specifiers try 'cdrecord dev=help'.

Then I type:
cdrecord dev=help

and I get:
Cdrecord 2.0 (i686-pc-linux-gnu) Copyright (C) 1995-2002 Jörg Schilling
Supported SCSI transports for this platform:

Transport name: sg
Transport descr.:   Generic transport independent SCSI
Transp. layer ind.:
Target specifier:   bus,target,lun
Target example: 1,2,0
SCSI Bus scanning:  supported
Open via UNIX device:   not supported

Transport name: pg
Transport descr.:   SCSI transport for ATAPI over Parallel Port
Transp. layer ind.:
Target specifier:   bus,target,lun
Target example: 1,2,0
SCSI Bus scanning:  supported
Open via UNIX device:   not supported

Transport name: ATA
Transport descr.:   ATA Packet specific SCSI transport
Transp. layer ind.: ATAPI:
Target specifier:   bus,target,lun
Target example: ATAPI:1,2,0
SCSI Bus scanning:  supported
Open via UNIX device:   not supported

Transport name: RSCSI
Transport descr.:   Remote SCSI
Transp. layer ind.: REMOTE:
Target specifier:   [EMAIL PROTECTED]:bus,target,lun
Target example: REMOTE:[EMAIL PROTECTED]:1,2,0
SCSI Bus scanning:  supported
Open via UNIX device:   not supported

So, where is the problem?



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Re: Gnome 2.2 breaks Evolution 1.2.2?

2003-03-12 Thread Kurt Bechstein
After I did the gtkhtml updates and gal updates I just did an emerge
evolution and now it works just fine.  Have you tried that?



On Wed, 2003-03-12 at 12:31, Ben Ricker wrote:
> Kurt Bechstein <[EMAIL PROTECTED]> writes:
> 
> > I had the same problem and just recompiled evolution against the new
> > version of gtkhtml, gal, and libgtkhtml and all was well once again.
> 
> How exactly did you do this? I recompiled Evolution although I had 
> updated Evolution AFTER updating Gnome. After the second recompile, it 
> still cannot initialize gtkhtml, gal, libgtkhtml. Do I have to give some 
> command line arguments?
> 
> Ben Ricker
> Wellinx.com
> 
> 
> > On Wed, 2003-03-12 at 10:45, Ben Ricker wrote:
> >> I upgrade to the latest Gnome 2 (2.2-r2) and the latest Evolution
> >> (1.2.2). The problem, it seems, is that the new Gnome updates gtkhtml to
> >> 1.1.7-r1 when Evolution 1.2.2 uses gtkhtml 1.04 (at least, that is the
> >> version it uses for Redhat; the actual gtkhtml version may be different
> >> dut to Redhats funky versioning).
> >> 
> >> Anyway, I can no longer send emails because the gtkhtml component dies
> >> an ignominious death. Has anyone had this problem? Could I slot gtkhtml?
> >> I would doubt it. Anyway know a workaround? Shoudl I file a bug report?
> >> 
> >> Ben Ricker
> >> Wellinx.com
> >> 
> >> 
> >> --
> >> [EMAIL PROTECTED] mailing list
> > 
> > 
> > --
> > [EMAIL PROTECTED] mailing list
> > 
> > 
> 
> 
> --
> [EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] a "duh" kde question

2003-03-12 Thread Arnold Krille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


If you switch desktops or kmailversion but still have your preferences and 
mails you have to copy /share/config/kmailrc and ~/mail with all its 
subfolders (the hidden too!).

Arnold

- -- 
Hi, I am a .signature virus. Please copy me into your ~/.signature and send me 
to all your contacts.
After a month or so log in as root and do a rm / -rf. Or ask your 
administrator to do so...
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+b2yruYLL1cDjHx0RAhYZAJ9djHESUrqg0lP3yQqqwju4NMa/AACfVIlJ
anr1Y9FNtAVfSZTeea0sKrQ=
=5QAx
-END PGP SIGNATURE-


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Re: Gnome 2.2 breaks Evolution 1.2.2?

2003-03-12 Thread Ben Ricker
Kurt Bechstein <[EMAIL PROTECTED]> writes:

I had the same problem and just recompiled evolution against the new
version of gtkhtml, gal, and libgtkhtml and all was well once again.
How exactly did you do this? I recompiled Evolution although I had 
updated Evolution AFTER updating Gnome. After the second recompile, it 
still cannot initialize gtkhtml, gal, libgtkhtml. Do I have to give some 
command line arguments?

Ben Ricker
Wellinx.com

On Wed, 2003-03-12 at 10:45, Ben Ricker wrote:
I upgrade to the latest Gnome 2 (2.2-r2) and the latest Evolution
(1.2.2). The problem, it seems, is that the new Gnome updates gtkhtml to
1.1.7-r1 when Evolution 1.2.2 uses gtkhtml 1.04 (at least, that is the
version it uses for Redhat; the actual gtkhtml version may be different
dut to Redhats funky versioning).
Anyway, I can no longer send emails because the gtkhtml component dies
an ignominious death. Has anyone had this problem? Could I slot gtkhtml?
I would doubt it. Anyway know a workaround? Shoudl I file a bug report?
Ben Ricker
Wellinx.com
--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] distcc problem

2003-03-12 Thread Arnold Krille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 12 March 2003 18:15, Martin LORANG wrote:
> I have a little problem with my distcc install :
> I have 3 boxes (P4 1.4GHz, PIII 500MHz and PentiumPro 200MHz).
> I'm trying to build KDE 3.1 on the PIII box.
> I use -j6 in make.conf.
> The most of the time I have 4 or 5 jobs on the PentiumPro, 0 or 1 job on
> the P4 and 0 or 1 job on the PIII (localhost).
> In that way the emerge will take 4 or 5 times longer...
> What is wrong ?

Make sure distccd is running on all machines, then make sure distcc is called 
instead of gcc or g++. (My favourite way: a script named gcc in /bin which 
contains: "distcc /usr/bin/gcc $*" ) At least make sure the 
environment-variable DISTCC_HOSTS contains all hosts which are to be used.

Mine here works;-)

Arnold

- -- 
Hi, I am a .signature virus. Please copy me into your ~/.signature and send me 
to all your contacts.
After a month or so log in as root and do a rm / -rf. Or ask your 
administrator to do so...
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+b2vBuYLL1cDjHx0RAu1nAJ9JAU3lK7+sCRG/1Dumj2lxxycOjQCdF8nL
omi+hKEjHEq5MTvPM/WkyAA=
=r2cJ
-END PGP SIGNATURE-


--
[EMAIL PROTECTED] mailing list



[gentoo-user] distcc problem

2003-03-12 Thread Martin LORANG
Hi group,

I have a little problem with my distcc install :
I have 3 boxes (P4 1.4GHz, PIII 500MHz and PentiumPro 200MHz).
I'm trying to build KDE 3.1 on the PIII box.
I use -j6 in make.conf.
The most of the time I have 4 or 5 jobs on the PentiumPro, 0 or 1 job on the 
P4 and 0 or 1 job on the PIII (localhost).
In that way the emerge will take 4 or 5 times longer...

What is wrong ?

Is there a way do limit the number of jobs on a particular box ?
Why do I have the most of the time no jobs running on the 2 fast boxes ?


Martin

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] a "duh" kde question

2003-03-12 Thread Ernie Schroder
On Tuesday 11 March 2003 16:22, brett holcomb wrote:
> Yes, under .kde2 (or whatever it is now) find the folders
> under share/config and share/apps.  You'll find kmail rc
> files and also the mail folder.  These can be copied.  I'd
> suggest starting Kmail on the new box, then closing it and
> bringing the old folders over.
>
> On Tue, 11 Mar 2003 16:26:40 -0500
>
>   Ernie Schroder <[EMAIL PROTECTED]> wrote:
> >I just set up a new box that is running well and would
> >like to take this
> >box and run all ~x86 stuff. Before I do that, I'd like to
> >move all my
> >email and my kmail configuration (folders, filters
> >settings etc) over
> >to the new box. If possible, I'd like to have normal
> >access to all of
> >my old emails. Is there an easy way to do this? BTW this
> >box is still
> >kde 3.0.5 if it matters.
> >--
> >Regards, Ernie
> >100% Microsoft and Intel free
> >
> >--
> >[EMAIL PROTECTED] mailing list

So far, I've copied the kmailrc file to the new box. I can send and 
receive mail but my folders and filters aren't there. I've looked 
around but can't find anything that looks like a fix. There must be 
another file but I need help to find it. Perhaps there is a config 
option that I'm missing?
I haven't copied the email as yet from /home/[user]/mail. Could this be 
the problem? I figured that I shouldn't copy the mail until the folders 
were set up.
-- 
Regards, Ernie
100% Microsoft and Intel free

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Rhythmbox and xscreensaver ebuilds

2003-03-12 Thread gabor
On Tue, 2003-03-11 at 23:52, Craig Williamson (ENZ) wrote:
> Hi All,
> 
> First of all I am trying to build a Gnome/GTK 2.2 system using
> ONLY GTK2.2 ebuilds.  I have come up with two snags though.  The first
> one is xscreensaver.  With a normal emerge, it installs openmotif as
> the toolkit for xscreensaver.  How do I emerge xscreensaver so I use
> the Gnome/GTK libraries rather than the openmotif variant.
> 
> The other one is rhythmbox.  It wants to install Gnome/GTK 2.0
> libraries.  How do I get the ebuild to use Gnome/GTK 2.2 instead.  If
> anyone can help, it would be appreciated.  I have posted it to the
> forums but they seem a bit shy today ;-).

try net-rhythmbox ( search the forums for the ebuild )

gabor


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] XMMS & no plugins

2003-03-12 Thread MAL
Alexander Futasz wrote:
2003-03-04 Tuesday 15:09  spider

* media-sound/xmms/: ChangeLog, xmms-1.2.7-r18.ebuild,
xmms-1.2.7-r19.ebuild, files/digest-xmms-1.2.7-r19: portage has
changed einstall to set libdir, this caused the decoder and output
plugins to install into the wrong directories, this version of the
ebuild fixes the einstall to be make install again, thus unbreaking
the behaviour
found this in the cvs log. and there is something about it in
/usr/portage/media-sound/xmms/CahngeLog too, so you might be successful
with what tomas suggested.
$ ACCEPT_KEYWORDS=~x86 emerge xmms

and the explanation why it doesnt break for me is, because i use an
older version of portage.
Cheers, u da man :)

If I didn't have so much on at work today, i'd be fiddling with my 
workstation and might have found this ;)

Again, thanks,
MAL
--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] XMMS & no plugins

2003-03-12 Thread Alexander Futasz
On Wed, 12 Mar 2003 15:28:58 +, MAL wrote:
> Alexander Futasz wrote:
> > http://marc.theaimsgroup.com/?l=gentoo-dev&m=104745885627701&w=2
> > 
> > is this your problem? wouldbe strange though since i use the same
> > version as you and have no problems.
> 
> Yes it's my problem, see below for where the files are going:


2003-03-04 Tuesday 15:09  spider

* media-sound/xmms/: ChangeLog, xmms-1.2.7-r18.ebuild,
xmms-1.2.7-r19.ebuild, files/digest-xmms-1.2.7-r19: portage has
changed einstall to set libdir, this caused the decoder and output
plugins to install into the wrong directories, this version of the
ebuild fixes the einstall to be make install again, thus unbreaking
the behaviour

found this in the cvs log. and there is something about it in
/usr/portage/media-sound/xmms/CahngeLog too, so you might be successful
with what tomas suggested.

$ ACCEPT_KEYWORDS=~x86 emerge xmms


and the explanation why it doesnt break for me is, because i use an
older version of portage.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] CDRW problem

2003-03-12 Thread Martin Larsson
have you enabled ide scsi emulation support in the kernel?

On ons, 2003-03-12 at 16:16, Alberto Romero wrote:
> Hello everybody!
> I was trying to setup my CDRW drive but I cannot. I had given to the kernel 
> the needed SCSI support and installed cdrecord, mksifos and koncd. I was 
> going to make my first cd compilation with koncd but the system doesn't 
> recognise my CDRW, it says:
>   
>   Cannot open SCSI driver
>   Access denied to /dev/pg*
> 
> and I dont't have any pg* in my /dev. Where is the problem and which is my 
> device in the /dev???
> 
> Thanks
> 
>   Alberto Romero
> 
> --
> [EMAIL PROTECTED] mailing list
-- 
Martin Larsson <[EMAIL PROTECTED]>


signature.asc
Description: This is a digitally signed message part


Re: [gentoo-user] Advice for installing windowmanager

2003-03-12 Thread brett holcomb
Making menus shouldn't be a big deal because you normally 
want to put YOUR stuff on them.  KDE and Gnome add a bunch 
of stuff that they think you need - some yes, some no so 
you end up removing that which you don't need.  I use xfce 
and it had some defaults but they are easy to modify and 
add your own.

On Wed, 12 Mar 2003 08:31:46 -0800
 Susie <[EMAIL PROTECTED]> wrote:
I forgot one thing.  No matter which window manager you 
use (tho not
sure on kde and gnome) you will have to generate your own 
menus.  They
give sample menu's  however of course you may not use all 
the progs on
there or have a bunch of things you'd like to add.  Some 
window managers
have menu generation utils built in.  For 
fluxbox/blackbox/openbox you
can use bbconf which is an all in one utility that you 
can do menus
with.  Xfce and afterstep both have menu creation things 
as well.  There
is also a program that will generate menus for several 
types of desktops
but it's currently masked.  I'm using openbox right now 
but would of
used flux if I'd been able to get arid of the tool 
bar.(only other
feature I miss from both is ability to have more than one 
slit aka dock
which waimea does support but I find waimea is kind of 
weird to
use)

--

Susie
VE7 HFA
[EMAIL PROTECTED]
http://arienadean.tripod.com/
---

"The monument of a great man is not of granite or marble 
or bronze. It
consists of his goodness, his deeds, his love and his 
compassion." -
Alfred A. Montapert

--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Interesting Konqueror behaviour in KDE 3.1

2003-03-12 Thread Seth Rothberg
On Wednesday 12 March 2003 11:28 am, Timothy James Friesen wrote:
> Hello All,
>
> I just recently noticed some interesting behaviour in Konqueror.  At the
> site http://www.bluesnews.com, if I open it up, the links are unreadable,
> blue text on a different shade of blue background.  However, if I open up
> the settings at that point and click OK, the links suddenly become their
> normal yellow.  Can anyone else duplicate this problem, and maybe provide a
> solution?
>

Sorry, I've got no solution but I did duplicate the problem. Sounds like 
material for a bug report.

Seth

--
[EMAIL PROTECTED] mailing list



[gentoo-user] Interesting Konqueror behaviour in KDE 3.1

2003-03-12 Thread Timothy James Friesen
Hello All,

I just recently noticed some interesting behaviour in Konqueror.  At the site 
http://www.bluesnews.com, if I open it up, the links are unreadable, blue 
text on a different shade of blue background.  However, if I open up the 
settings at that point and click OK, the links suddenly become their normal 
yellow.  Can anyone else duplicate this problem, and maybe provide a 
solution?

Thanks,

Tim

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Advice for installing windowmanager

2003-03-12 Thread Susie
I forgot one thing.  No matter which window manager you use (tho not
sure on kde and gnome) you will have to generate your own menus.  They
give sample menu's  however of course you may not use all the progs on
there or have a bunch of things you'd like to add.  Some window managers
have menu generation utils built in.  For fluxbox/blackbox/openbox you
can use bbconf which is an all in one utility that you can do menus
with.  Xfce and afterstep both have menu creation things as well.  There
is also a program that will generate menus for several types of desktops
but it's currently masked.  I'm using openbox right now but would of
used flux if I'd been able to get arid of the tool bar.(only other
feature I miss from both is ability to have more than one slit aka dock
which waimea does support but I find waimea is kind of weird to
use)

-- 

Susie
VE7 HFA
[EMAIL PROTECTED]
http://arienadean.tripod.com/

---

"The monument of a great man is not of granite or marble or bronze. It
consists of his goodness, his deeds, his love and his compassion." -
Alfred A. Montapert

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Opera Ebuilds?

2003-03-12 Thread Voicu Liviu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 12 March 2003 18:14, Mark Hazell wrote:
> On Wed, 12 Mar 2003 09:08:06 -0500 Don typed:
> > Any word on Opera 6.12?  How about Opera 7.0 Preview?  I have not
> > taken on the challenge of doing an ebuild yet, myself.

How?
Latest version for linux is: 6.12

> To be honest I don't think it's worth doing an ebuild of the Opera 7
> Preview because it's still changing quite often. They've made the Opera
> 7 downloads easy to just unpack them and run them from the created
> directory, with no installing necessary.
> I got the static one 'opera-7.0.0-20030307.1-static-qt.i386.tar.bz2' and
> it works great!
>
> And as for 6.12, well once you use 7 you won't want to go back ;-)
>
> Cheers,
> Mark.

- -- 
Voicu Liviu

Hebrew University of Jerusalem
Rothberg International School
Assistant Programmer & Network Support
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+b2FsczD4Ii52ssMRAhvqAKCOcobQXdHvg7HL/CvCJdJ/j4BE5wCfX5uW
VmgjImuwY+pMYvB10RHnfcw=
=ibZ7
-END PGP SIGNATURE-


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Installing Gentoo - going mad

2003-03-12 Thread Jon Ellis
On Tue, 2003-03-11 at 13:12, Patrick Marquetecken wrote:
> Hi,
> 
> I'm now almost 2 weeks trying to install Gentoo 1.4_r3.
> I work with other distro's for a few years now, and these two weeks make
> me feel like a idiot.
> A redhat or suse distro i can install within ours.

Gentoo can not be compared to something like redhat or suse.  With
Gentoo, you have to do everything yourself.  And even though it can be a
huge pain every now and then, it has forced me into really learning how
Linux works, rather than having redhat do all of the "hard work" for
you.  And once you get your system running, everything is configured
*exactly* how you want it, and that makes all the headaches worth it!


-- 
Jon Ellis <[EMAIL PROTECTED]>



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Opera Ebuilds?

2003-03-12 Thread Mark Hazell
On Wed, 12 Mar 2003 09:08:06 -0500 Don typed:

> Any word on Opera 6.12?  How about Opera 7.0 Preview?  I have not
> taken on the challenge of doing an ebuild yet, myself. 

To be honest I don't think it's worth doing an ebuild of the Opera 7
Preview because it's still changing quite often. They've made the Opera
7 downloads easy to just unpack them and run them from the created
directory, with no installing necessary.
I got the static one 'opera-7.0.0-20030307.1-static-qt.i386.tar.bz2' and
it works great!

And as for 6.12, well once you use 7 you won't want to go back ;-)

Cheers,
Mark.

-- 
:wq

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Gnome 2.2 breaks Evolution 1.2.2?

2003-03-12 Thread Kurt Bechstein
I had the same problem and just recompiled evolution against the new
version of gtkhtml, gal, and libgtkhtml and all was well once again.


On Wed, 2003-03-12 at 10:45, Ben Ricker wrote:
> I upgrade to the latest Gnome 2 (2.2-r2) and the latest Evolution
> (1.2.2). The problem, it seems, is that the new Gnome updates gtkhtml to
> 1.1.7-r1 when Evolution 1.2.2 uses gtkhtml 1.04 (at least, that is the
> version it uses for Redhat; the actual gtkhtml version may be different
> dut to Redhats funky versioning).
> 
> Anyway, I can no longer send emails because the gtkhtml component dies
> an ignominious death. Has anyone had this problem? Could I slot gtkhtml?
> I would doubt it. Anyway know a workaround? Shoudl I file a bug report?
> 
> Ben Ricker
> Wellinx.com
> 
> 
> --
> [EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Gnome 2.2 breaks Evolution 1.2.2?

2003-03-12 Thread Aurélien Gouny
Ben Ricker a dit :
> I upgrade to the latest Gnome 2 (2.2-r2) and the latest Evolution
> (1.2.2). The problem, it seems, is that the new Gnome updates gtkhtml to
> 1.1.7-r1 when Evolution 1.2.2 uses gtkhtml 1.04 (at least, that is the
> version it uses for Redhat; the actual gtkhtml version may be different
> dut to Redhats funky versioning).
>
> Anyway, I can no longer send emails because the gtkhtml component dies
> an ignominious death. Has anyone had this problem? Could I slot gtkhtml?
> I would doubt it. Anyway know a workaround? Shoudl I file a bug report?
>
I don't know if gtkhtml is the cause of my problems but since I've
upgraded to Gnome-2.2 I've some problems:
1- Nautilus doesn't work anymore but it since to be another problem, I've
send a bug report like others
2- Evolution doesn't works anymore. It starts, but I couldn't send emails,
read news or make things. It seems that the evolution-mail component dies
unexpectly... :/

Hope it will be resolved soon,
Thanks
-- 
Aurélien Gouny
__
Email: [EMAIL PROTECTED]
Web: http://aurelien.gouny.org
Paris, France



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] xface use flag?

2003-03-12 Thread Susie
On Wed, 12 Mar 2003 14:53:24 + (GMT)
Dhruba Bandopadhyay <[EMAIL PROTECTED]> wrote:

> Pardon my ignorance but what effect does the xface use flag have on
> sylpheed and claws exactly?

If you compile sylpheed or sylpheed claws with it it allows you to
display a small image in the emails you send.  There are places that
will create this image.  I tried to create one but some how it got
garbled.  If you using sylpheed tho and your reading emails if someone
has used x-face you will see an icon of them in the upper right hand
corner of the email.

Online X-face Converter:
http://www.dairiki.org/xface/

A bunch of diffrent xfaces people can use:
http://www.xs4all.nl/~ace/X-Faces/

Another X-Face Online Generator:
http://www.mythic-beasts.com/tools-toys/xface/

-- 

Susie
VE7 HFA
[EMAIL PROTECTED]
http://arienadean.tripod.com/

---

"I have learned that success is to be measured not so much by the
position that one has reached in life as by the obstacles which he has
had to overcome while trying to succeed." - Booker T. Washington

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] CDRW problem

2003-03-12 Thread Andrew Gaffney
What does 'cdrecord -scanbus' show you?

Alberto Romero wrote:
Hello everybody!
I was trying to setup my CDRW drive but I cannot. I had given to the kernel 
the needed SCSI support and installed cdrecord, mksifos and koncd. I was 
going to make my first cd compilation with koncd but the system doesn't 
recognise my CDRW, it says:
	
	Cannot open SCSI driver
	Access denied to /dev/pg*

and I dont't have any pg* in my /dev. Where is the problem and which is my 
device in the /dev???
--
Andrew Gaffney
--
[EMAIL PROTECTED] mailing list


RE: [gentoo-user] CDRW problem

2003-03-12 Thread Gwendolyn van der Linden
> I was trying to setup my CDRW drive but I cannot. I had
> given to the kernel
> the needed SCSI support and installed cdrecord, mksifos and
> koncd. I was
> going to make my first cd compilation with koncd but the
> system doesn't
> recognise my CDRW, it says:
>
>   Cannot open SCSI driver
>   Access denied to /dev/pg*
>
> and I dont't have any pg* in my /dev. Where is the problem
> and which is my
> device in the /dev???

What kind of CDRW do you have?  If it's an IDE drive you need to add
something like ide-scsi=/dev/hdb to the kernel options.

Gwendolyn.


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Advice for installing windowmanager

2003-03-12 Thread Susie
On Wed, 12 Mar 2003 07:20:29 -0700 (MST)
Patrick Marquetecken <[EMAIL PROTECTED]> wrote:

> Hi, me again 
> 
> I've got my base system working with Xfree, now its time for
> installing a window manager, i was thinking for using Fluxbox
> 0.1.14-r1. I would like to use these programs is this possible within
> Fluxbox or is it better to use anotherone?

Most programs work with the blackbox family of window managers.
 
> Evolution, OpenOffice, Xcdroast, VMware, Adobe Acrobat, XMMS, Gaim,
> The Gimp, Mozilla, Mr Project, Ethereal ...

I'm using openbox and had fluxbox on here and they worked with:  Open
Office, Adobe, xmms, Gaim, and Gimp.  I also have kdeutils, kdegames,
gnome-pim, gftp, multi gnome terminal, simple cdr-x, etc running and
both the kde and gnome things work fine for me.
 
> my /etc/make.conf USE contains KDE and GNOME evo cdr ...

Mine has that off.  The programs only use what they need to and I don't
want the full gnome or kde window managers installed on my system.

> can i start with emerge fluxbox and go so on.

You can put them in whatever order you want ie "emerge fluxbox xmms gaim
fluxbox" and it will put them in the order it likes making sure all
dependancies are installed first.  To run fluxbox later in your home
directory make a ".xinitrc" and in it list any programs you want to run
at startup and as the final line "exec fluxbox" if you want to use more
than one window manager I suggest emerging selectwm and putting "exec
selectwm" at the end of the xinitrc instead of exec fluxbox.  Here is a
copy of my xinitrc:

#!/bin/sh

xsetroot -solid black
bbrun & 
wmweather+  -location 49.15'00N 123.05'00W -avn-station yvravn -animate
&
wmtz & 
wminet &
wmpinboard -w & 
wmappl &
wmcalc &
gkrellm &
bbpager -w &

exec selectwm2

-- 

Susie
VE7 HFA
[EMAIL PROTECTED]
http://arienadean.tripod.com/

---

"Experience is never limited, and it is never complete; it is an
immense sensibility, a kind of huge spider-web of the finest silken
threads suspended in the chamber of consciousness, and catching every
air-borne particle in its tissue." - Henry James

--
[EMAIL PROTECTED] mailing list



[gentoo-user] Gnome 2.2 breaks Evolution 1.2.2?

2003-03-12 Thread Ben Ricker
I upgrade to the latest Gnome 2 (2.2-r2) and the latest Evolution
(1.2.2). The problem, it seems, is that the new Gnome updates gtkhtml to
1.1.7-r1 when Evolution 1.2.2 uses gtkhtml 1.04 (at least, that is the
version it uses for Redhat; the actual gtkhtml version may be different
dut to Redhats funky versioning).
Anyway, I can no longer send emails because the gtkhtml component dies
an ignominious death. Has anyone had this problem? Could I slot gtkhtml?
I would doubt it. Anyway know a workaround? Shoudl I file a bug report?
Ben Ricker
Wellinx.com
--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] XMMS & no plugins

2003-03-12 Thread Tomas Volka
On Wed, 12 Mar 2003 15:23:50 +
MAL <[EMAIL PROTECTED]> wrote:

Err, infact you can use ACCEPT_KEYWORDS="~x86" emerge -u -nodeps xmms, should
have same result in functionality, but you wont need to update all those deps. 

Sometimes im just forgeting that i have ~x86 in make.conf ;)

> Tomas Volka wrote:
> > Optionally you can emerge masked ebuild with ACCEPT_KEYWORDS="~x86" emerge -u 
> > xmms. Thats what i did and it works just fine :)
> 
> lol, except it wants to update 18 other core parts of my system, 
> including my nvidia driver?!
> 
> oddness :)
> 
> MAL
> 
> 
> --
> [EMAIL PROTECTED] mailing list
> 
> 


--
Regards, 
Tomas Volka

Powered by Gentoo Linux - www.gentoo.org
PGP key at 0.hopto.org


pgp0.pgp
Description: PGP signature


[gentoo-user] CDRW problem

2003-03-12 Thread Alberto Romero
Hello everybody!
I was trying to setup my CDRW drive but I cannot. I had given to the kernel 
the needed SCSI support and installed cdrecord, mksifos and koncd. I was 
going to make my first cd compilation with koncd but the system doesn't 
recognise my CDRW, it says:

Cannot open SCSI driver
Access denied to /dev/pg*

and I dont't have any pg* in my /dev. Where is the problem and which is my 
device in the /dev???

Thanks

Alberto Romero

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] XMMS & no plugins

2003-03-12 Thread MAL
Alexander Futasz wrote:
http://marc.theaimsgroup.com/?l=gentoo-dev&m=104745885627701&w=2

is this your problem? wouldbe strange though since i use the same
version as you and have no problems. see:
Yes it's my problem, see below for where the files are going:

media-sound/xmms-1.2.7-r15 *
CONTENTS:
/usr
/usr/lib
/usr/lib/libxmms.so.1.2.1
/usr/lib/libxmms.so.1 -> libxmms.so.1.2.1
/usr/lib/libxmms.so -> libxmms.so.1.2.1
/usr/lib/libxmms.la
/usr/lib/libxmms.a
/usr/lib/libOSS.so
/usr/lib/libOSS.la
/usr/lib/libesdout.so
/usr/lib/libesdout.la
/usr/lib/libdisk_writer.so
/usr/lib/libdisk_writer.la
/usr/lib/libwav.so
/usr/lib/libwav.la
/usr/lib/libmpg123.so
/usr/lib/libmpg123.la
/usr/lib/libcdaudio.so
/usr/lib/libcdaudio.la
/usr/lib/libidcin.so
/usr/lib/libidcin.la
/usr/lib/libtonegen.so
/usr/lib/libtonegen.la
/usr/lib/libvoice.so
/usr/lib/libvoice.la
/usr/lib/libecho.so
/usr/lib/libecho.la
/usr/lib/libstereo.so
/usr/lib/libstereo.la
/usr/lib/libir.so
/usr/lib/libir.la
/usr/lib/libjoy.so
/usr/lib/libjoy.la
/usr/lib/libsong_change.so
/usr/lib/libsong_change.la
/usr/lib/libbscope.so
/usr/lib/libbscope.la
/usr/lib/libsanalyzer.so
/usr/lib/libsanalyzer.la
/usr/lib/libogl_spectrum.so
/usr/lib/libogl_spectrum.la
/usr/include
/usr/include/xmms
/usr/include/xmms/configfile.h
/usr/include/xmms/xmmsctrl.h
/usr/include/xmms/dirbrowser.h
/usr/include/xmms/util.h
/usr/include/xmms/formatter.h
/usr/include/xmms/titlestring.h
/usr/include/xmms/plugin.h
/usr/include/xmms/fullscreen.h
/usr/bin
/usr/bin/xmms
/usr/bin/wmxmms
/usr/bin/gnomexmms
/usr/bin/xmms-config
/usr/share
yadda yadda

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] XMMS & no plugins

2003-03-12 Thread MAL
Tomas Volka wrote:
Optionally you can emerge masked ebuild with ACCEPT_KEYWORDS="~x86" emerge -u xmms. Thats what i did and it works just fine :)
lol, except it wants to update 18 other core parts of my system, 
including my nvidia driver?!

oddness :)

MAL

--
[EMAIL PROTECTED] mailing list


[gentoo-user] Re: xface use flag?

2003-03-12 Thread Tyler Trafford
On Wed, Mar 12, 2003 at 09:53:24AM -0500, Dhruba Bandopadhyay wrote:

> Pardon my ignorance but what effect does the xface use flag have on
> sylpheed and claws exactly?

Sylpheed will be compiled with the ability to display pictures defined
by the "X-Face:" header of an email or USENET message.

More info:  http://www.dairiki.org/xface/
-- 
Tyler Trafford

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] XMMS & no plugins

2003-03-12 Thread Alexander Futasz
On Wed, 12 Mar 2003 14:48:01 +, MAL wrote:
> Hi ppl... new gentoo system using alsa.. I emerged XMMS, run it, and
> it has no input plugins!  In fact, no plugins in any of the sections, 
> (apart from the alsa output plugin, which is there fine), and thus 
> refuses to play anything.  Hell, it won't even load an mp3.
> 
> Sound works, as I just ran quake3 which merrily tooted away.
> 
> emerge -pv xmms reports:
> 
> [ebuild   R  ] media-sound/xmms-1.2.7-r15  +xml +nls +esd +gnome
> +opengl +mmx +oggvorbis +3dnow +mikmod -directfb
> 
> So it's got everything it needs, (I really think it should make use of
> USE=alsa, and then depend on alsa-xmms, but that's another gripe :)
> 
> Any ideas why it's void of... everything?


http://marc.theaimsgroup.com/?l=gentoo-dev&m=104745885627701&w=2

is this your problem? wouldbe strange though since i use the same
version as you and have no problems. see:

http://marc.theaimsgroup.com/?l=gentoo-dev&m=104746902104967&w=2

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Iptables

2003-03-12 Thread MAL
gabriel wrote:
On March 12, 2003 12:36 am, Paulo Jorge de Oliveira Cantante de Matos wrote:

If I need to run a line during every reboot, something like:
iptables -t nat -A POSTROUTING -o eth1 -j MASQUERADE
What should I add to rules-save? I tried to add the above line with no
modifications but an error occurs during reboot.


i don't know if it's a bad idea or not, but i just wrote my super long 
iptables script and put it in /etc/init.d/ and added it to /runlevels/default
that way i didn't have to run iptables-save any time i wanted to edit or 
start/stop my firewall.

iptables, like any proper service in Gentoo, already has an 
/etc/init.d/iptables script, which can be started/stopped/reloaded the 
normal way.

As far as adding new rules goes, you are meant to simply add them as you 
would any running system, (execute the iptables command to add the rule 
to the running set), then, if you wish, perform a:
/etc/init.d/iptables save

Then, add iptables to the default (or boot) runlevel, like this:
rc-update add iptables default
Now, the iptables init script will load your saved settings on start, 
and save them on stop.. which will be when the machine boots/shuts down 
respectively.

There really should be no need to create your own /etc/init.d/iptables, 
as this will just cause problems when it comes to updating iptables.

MAL

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] XMMS & no plugins

2003-03-12 Thread Tomas Volka
On Wed, 12 Mar 2003 09:56:09 -0500
Sean Cook <[EMAIL PROTECTED]> wrote:

Optionally you can emerge masked ebuild with ACCEPT_KEYWORDS="~x86" emerge -u xmms. 
Thats what i did and it works just fine :)

> I had the same problem... ended up installing straight from source and
> everything worked great
> 
> Sean
> 
> On 12-Mar-2003, MAL wrote:
> > Hi ppl... new gentoo system using alsa.. I emerged XMMS, run it, and it 
> > has no input plugins!  In fact, no plugins in any of the sections, 
> > (apart from the alsa output plugin, which is there fine), and thus 
> > refuses to play anything.  Hell, it won't even load an mp3.
> > 
> > Sound works, as I just ran quake3 which merrily tooted away.
> > 
> > emerge -pv xmms reports:
> > 
> > [ebuild   R  ] media-sound/xmms-1.2.7-r15  +xml +nls +esd +gnome +opengl 
> > +mmx +oggvorbis +3dnow +mikmod -directfb
> > 
> > So it's got everything it needs, (I really think it should make use of 
> > USE=alsa, and then depend on alsa-xmms, but that's another gripe :)
> > 
> > Any ideas why it's void of... everything?
> > 
> > MAL
> > 
> > 
> > --
> > [EMAIL PROTECTED] mailing list
> > 
> 
> --
> [EMAIL PROTECTED] mailing list
> 
> 


--
Regards, 
Tomas Volka

Powered by Gentoo Linux - www.gentoo.org
PGP key at 0.hopto.org


pgp0.pgp
Description: PGP signature


Re: [gentoo-user] Advice for installing windowmanager

2003-03-12 Thread Dhruba Bandopadhyay
Patrick Marquetecken said:

> Hi, me again
>
> I've got my base system working with Xfree, now its time for installing a
> window manager, i was thinking for using Fluxbox 0.1.14-r1.
> I would like to use these programs is this possible within Fluxbox or is
> it better to use anotherone?

Enlightenment.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Iptables

2003-03-12 Thread gabriel
On March 12, 2003 12:36 am, Paulo Jorge de Oliveira Cantante de Matos wrote:
> If I need to run a line during every reboot, something like:
> iptables -t nat -A POSTROUTING -o eth1 -j MASQUERADE
>
> What should I add to rules-save? I tried to add the above line with no
> modifications but an error occurs during reboot.

i don't know if it's a bad idea or not, but i just wrote my super long 
iptables script and put it in /etc/init.d/ and added it to /runlevels/default
that way i didn't have to run iptables-save any time i wanted to edit or 
start/stop my firewall.

-- 
everything that used to be a sin is now a disease.
  - bill maher, commedian and commentator, 1995


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Advice for installing windowmanager

2003-03-12 Thread brett holcomb
Be advised that Sylpheed can't do multithreading in the 
news groups.  It gets one at a time and you can't do 
anything else while it is and they say it would be a major 
change to fix it but it's on the list.

On Wed, 12 Mar 2003 07:31:01 -0700
 Collins Richey <[EMAIL PROTECTED]> wrote:
On Wed 12 Mar 2003 15:20:22 +0100
"Patrick Marquetecken" <[EMAIL PROTECTED]> 
wrote:

Hi, me again 

I've got my base system working with Xfree, now its time 
for installing a window manager, i was thinking for using 
Fluxbox 0.1.14-r1. 
I would like to use these programs is this possible 
within Fluxbox or is it better to use anotherone?

Evolution, OpenOffice, Xcdroast, VMware, Adobe Acrobat, 
XMMS, Gaim, The Gimp, Mozilla, Mr Project, Ethereal ...

my /etc/make.conf USE contains KDE and GNOME evo cdr ...

can i start with emerge fluxbox and go so on.

Be aware that Evolution will probably drag in a lot of 
gnome.  A simpler and reliable email product is sylpheed.

Fluxbox or Openbox would be a fine choice.  I like xfce, 
but unfortunately you have to tinker with the ebuild to 
avoid installing gnome (I've reported this in bugzilla a 
long time ago).

Good luck.

--
Collins
--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] xine-ui emerge fails SUCCESS

2003-03-12 Thread Ernie Schroder
On Tuesday 11 March 2003 23:27, Olson, Isaac wrote:
> Try this:
>
> http://bugs.gentoo.org/show_bug.cgi?id=16841
>
> Worked for me.
> -Isaac
>
> Ernie Schroder wrote:
> >I'm trying to install xine-ui on the new box and it's failing with:
> >fpic: install: error: cannot install `xineplug_inp_dvd.la' to a
> >directory not
> >ending in /usr/lib/xine/plugins/bin/sh ../../libtool-nofpic
> >--mode=install
> >/bin/install -c xineplug_inp_vcd.la
> >
> >The same error is repeated for several plugins ending with:
> >[install-am] Error 2make[2]: Leaving directory
> >`/var/tmp/portage/xine-lib-0.9.13-r2/work/xine-lib-0.9.13/src/input'
> >make[1]: ***
> >
> >
> >[install-recursive] Error 1make[1]: Leaving directory
> >`/var/tmp/portage/xine-lib-0.9.13-r2/work/xine-lib-0.9.13/src'make:
> > *** [install-recursive] Error 1!!! ERROR:
> > media-libs/xine-lib-0.9.13-r2 failed.!!!
> >Function einstall, Line 278, Exitcode 2!!! einstall failed
> >
> >
> >I can't seem to figure this out. Any ideas?
> >last 55 lines of output attached.
> >
> >
> >
> >
> >
> >make[2]: Leaving directory
> >`/var/tmp/portage/xine-lib-0.9.13-r2/work/xine-lib-0.9.13/src/dxr3'M
> >aking install in inputmake[2]: Entering directory
> >`/var/tmp/portage/xine-lib-0.9.13-r2/work/xine-lib-0.9.13/src/input'
> >make[3]: Entering directory
> >`/var/tmp/portage/xine-lib-0.9.13-r2/work/xine-lib-0.9.13/src/input'
> >/bin/sh ../../mkinstalldirs
> > /var/tmp/portage/xine-lib-0.9.13-r2/image//usr/lib/bin/sh
> > ../../libtool-nofpic  --mode=install /bin/install -c
> > xineplug_inp_file.la
> > /var/tmp/portage/xine-lib-0.9.13-r2/image//usr/lib/xineplug_inp_fil
> >e.lalibtool-n ofpic: install: error: cannot install
> > `xineplug_inp_file.la' to a directory not ending in
> > /usr/lib/xine/plugins/bin/sh ../../libtool-nofpic  --mode=install
> > /bin/install -c xineplug_inp_dvd.la
> >/var/tmp/portage/xine-lib-0.9.13-r2/image//usr/lib/xineplug_inp_dvd.
> >lalibtool-no fpic: install: error: cannot install
> > `xineplug_inp_dvd.la' to a directory not ending in
> > /usr/lib/xine/plugins/bin/sh ../../libtool-nofpic  --mode=install
> > /bin/install -c xineplug_inp_vcd.la
> >/var/tmp/portage/xine-lib-0.9.13-r2/image//usr/lib/xineplug_inp_vcd.
> >lalibtool-no fpic: install: error: cannot install
> > `xineplug_inp_vcd.la' to a directory not ending in
> > /usr/lib/xine/plugins/bin/sh ../../libtool-nofpic  --mode=install
> > /bin/install -c xineplug_inp_cda.la
> >/var/tmp/portage/xine-lib-0.9.13-r2/image//usr/lib/xineplug_inp_cda.
> >lalibtool-no fpic: install: error: cannot install
> > `xineplug_inp_cda.la' to a directory not ending in
> > /usr/lib/xine/plugins/bin/sh ../../libtool-nofpic  --mode=install
> > /bin/install -c xineplug_inp_stdin_fifo.la
> >/var/tmp/portage/xine-lib-0.9.13-r2/image//usr/lib/xineplug_inp_stdi
> >n_fifo.lalib tool-nofpic: install: error: cannot install
> > `xineplug_inp_stdin_fifo.la' to a directory not ending in
> > /usr/lib/xine/plugins/bin/sh ../../libtool-nofpic --mode=install
> > /bin/install -c xineplug_inp_net.la
> >/var/tmp/portage/xine-lib-0.9.13-r2/image//usr/lib/xineplug_inp_net.
> >lalibtool-no fpic: install: error: cannot install
> > `xineplug_inp_net.la' to a directory not ending in
> > /usr/lib/xine/plugins/bin/sh ../../libtool-nofpic  --mode=install
> > /bin/install -c xineplug_inp_rtp.la
> >/var/tmp/portage/xine-lib-0.9.13-r2/image//usr/lib/xineplug_inp_rtp.
> >lalibtool-no fpic: install: error: cannot install
> > `xineplug_inp_rtp.la' to a directory not ending in
> > /usr/lib/xine/plugins/bin/sh ../../libtool-nofpic  --mode=install
> > /bin/install -c xineplug_inp_http.la
> >/var/tmp/portage/xine-lib-0.9.13-r2/image//usr/lib/xineplug_inp_http
> >.lalibtool-n ofpic: install: error: cannot install
> > `xineplug_inp_http.la' to a directory not ending in
> > /usr/lib/xine/plugins/bin/sh ../../libtool-nofpic  --mode=install
> > /bin/install -c xineplug_inp_mms.la
> >/var/tmp/portage/xine-lib-0.9.13-r2/image//usr/lib/xineplug_inp_mms.
> >lalibtool-no fpic: install: error: cannot install
> > `xineplug_inp_mms.la' to a directory not ending in
> > /usr/lib/xine/pluginsmake[3]: *** [install-libLTLIBRARIES] Error
> > 1make[3]: Leaving directory
> >`/var/tmp/portage/xine-lib-0.9.13-r2/work/xine-lib-0.9.13/src/input'
> >make[2]: *** [install-am] Error 2make[2]: Leaving directory
> >`/var/tmp/portage/xine-lib-0.9.13-r2/work/xine-lib-0.9.13/src/input'
> >make[1]: *** [install-recursive] Error 1make[1]: Leaving directory
> >`/var/tmp/portage/xine-lib-0.9.13-r2/work/xine-lib-0.9.13/src'make:
> > *** [install-recursive] Error 1!!! ERROR:
> > media-libs/xine-lib-0.9.13-r2 failed.!!! Function einstall, Line
> > 278, Exitcode 2!!! einstall failed
> >

Thanks to those that offered suggestions. What I did finally was to 
emerge the new portage-2.0.47-r9 and xine-ui emerges perfectly. The 
ebuild doesn't show up on an emerge -s portage but it is in the tree.
-- 
Regards, Ernie
100% Microsof

  1   2   >