[gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Jeff Cranmer
Hi,

I'm getting an error when trying to emerge phonon-gstreamer on my
amdfam10 system.  The compilation error is 'undefined reference to
'typeinfo for Phonon::StreamInterface'

Has anyone else seem this error?  I'm trying to clear out all remaining
items in an emerge -NDuav world prior to debugging some kde startup
problems.

Thanks





Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Jeff Cranmer
On Sat, 2011-12-31 at 09:59 -0500, Jeff Cranmer wrote:
> Hi,
> 
> I'm getting an error when trying to emerge phonon-gstreamer on my
> amdfam10 system.  The compilation error is 'undefined reference to
> 'typeinfo for Phonon::StreamInterface'
> 
> Has anyone else seem this error?  I'm trying to clear out all remaining
> items in an emerge -NDuav world prior to debugging some kde startup
> problems.
> 
> Thanks
> 
> 
> 
PS:  I'm not sure what package requires this.  By individually updating
all the packages in world and system showing as updates, I now have the
situation where either an emerge -Duav system or emerge -Duav world only
returned new package media-libs/phonon-gstreamer as a requirement. 
revdep-rebuild returns that my system is consistent without this
package.

Jeff





Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Michael Mol
--tree

On Dec 31, 2011 10:30 AM, "Jeff Cranmer"  wrote:

> On Sat, 2011-12-31 at 09:59 -0500, Jeff Cranmer wrote:
> > Hi,
> >
> > I'm getting an error when trying to emerge phonon-gstreamer on my
> > amdfam10 system.  The compilation error is 'undefined reference to
> > 'typeinfo for Phonon::StreamInterface'
> >
> > Has anyone else seem this error?  I'm trying to clear out all remaining
> > items in an emerge -NDuav world prior to debugging some kde startup
> > problems.
> >
> > Thanks
> >
> >
> >
> PS:  I'm not sure what package requires this.  By individually updating
> all the packages in world and system showing as updates, I now have the
> situation where either an emerge -Duav system or emerge -Duav world only
> returned new package media-libs/phonon-gstreamer as a requirement.
> revdep-rebuild returns that my system is consistent without this
> package.
>
> Jeff
>
>
>
>


[gentoo-user] Problems starting KDE

2011-12-31 Thread Jeff Cranmer
I'm attempting to bring up a new system.  Processor is AMD Phenom 1055,
running on a Sabertooth 990FX motherboard.  Graphics card is an NVIDIA
GEForce GTX550Ti.

If I start X with twm, the xserver connection is made, and TWM comes up
correctly with three Xterm windows.  

I note that I get two errors reported,
(EE) NVIDIA: Failed to load module "dri2" (Module does not exist, 0)
/etc/X11/xinit/xinitrc: line 62: xclock: command not found

The first error is definitely on startup, but the latter could have
appeared on exit.

I have a file 20-nvidia.conf in the /usr/share/X11/xorg.conf.d directory
with the following information

Section "Device"
  Identifier "Device0"
  Driver "nvidia"
  VendorName "NVIDIA Corporation"
  BoardName "GeForce GTX550 Ti"
  BusID "PCI:5:0:0"
  Screen 0
EndSection

Section "Module"
  Disable "dri"
  Disable "dri2"
  Load "glx"
EndSection

If I add exec startkde to the top of the /etc/X11/xinit/xinitrc file,
then startx fails to start.  I get the same dri2 error as above, but
also get

startkde: Starting up...
Connecting to deprecated signal
QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
kded(13865): Communication Problem with "kded", it probably crashed.
Error message was: "org.freedesktop.DBus.Error.NoReply" : " "Message did
not receive a reply (timeout by message bus)" "

I verified using /etc/init.d/dbus status that the dbus service is
running.  Same for consolekit.

/var/log/kdm.log shows one error, repeated for each startup attempt.
KCrash: Appication 'kdmgreet' crashing
KCrash: Attempting to start /usr/lib64/kde4/libexec/drkonqi directly
Server Terminated successfully (0).  Closing log file.

Any assistance gratefully received.

Thanks

Jeff





Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Jeff Cranmer
On Sat, 2011-12-31 at 10:50 -0500, Michael Mol wrote:
> --tree
> 
Sorry - please could you be a little more verbose? :-)




Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Pandu Poluan
On Dec 31, 2011 11:02 PM, "Jeff Cranmer"  wrote:
>
> On Sat, 2011-12-31 at 10:50 -0500, Michael Mol wrote:
> > --tree
> >
> Sorry - please could you be a little more verbose? :-)
>

emerge -Duav --tree

Rgds,


Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Michael Mol
On Sat, Dec 31, 2011 at 10:59 AM, Jeff Cranmer  wrote:
> On Sat, 2011-12-31 at 10:50 -0500, Michael Mol wrote:
>> --tree
>>
> Sorry - please could you be a little more verbose? :-)

Sorry, had about ten second to tap that out on my phone.

Add "--tree" to your emerge command-line.

Actually, among other things, I have "--verbose --tree --keep-going"
in EMERGE_DEFAULT_OPTS in make.conf.

-- 
:wq



Re: [gentoo-user] Problems starting KDE

2011-12-31 Thread Claudio Roberto França Pereira
On Sat, Dec 31, 2011 at 13:53, Jeff Cranmer  wrote:
> I'm attempting to bring up a new system.  Processor is AMD Phenom 1055,
> running on a Sabertooth 990FX motherboard.  Graphics card is an NVIDIA
> GEForce GTX550Ti.
>
> If I start X with twm, the xserver connection is made, and TWM comes up
> correctly with three Xterm windows.
>
> I note that I get two errors reported,
> (EE) NVIDIA: Failed to load module "dri2" (Module does not exist, 0)
> /etc/X11/xinit/xinitrc: line 62: xclock: command not found

This is normal behavior. Don't know why, but nVidia drivers doesn't
use the dri2 module, I think it has it's own implementation or
something, you can safely ignore that, even if your 20-nvidia.conf
disables (or tries to) dri2.
The xclock error is also ok, you probably have twm emerged, but not
xclock. The default xinitrc (in /etc/X11/xinit/xinitrc) tries to run
twm, 3 xterms and xclock.

>
> The first error is definitely on startup, but the latter could have
> appeared on exit.
>
> I have a file 20-nvidia.conf in the /usr/share/X11/xorg.conf.d directory
> with the following information
>
> Section "Device"
>  Identifier "Device0"
>  Driver "nvidia"
>  VendorName "NVIDIA Corporation"
>  BoardName "GeForce GTX550 Ti"
>  BusID "PCI:5:0:0"
>  Screen 0
> EndSection
>
> Section "Module"
>  Disable "dri"
>  Disable "dri2"
>  Load "glx"
> EndSection
>
> If I add exec startkde to the top of the /etc/X11/xinit/xinitrc file,
> then startx fails to start.  I get the same dri2 error as above, but
> also get
>
> startkde: Starting up...
> Connecting to deprecated signal
> QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
> kded(13865): Communication Problem with "kded", it probably crashed.
> Error message was: "org.freedesktop.DBus.Error.NoReply" : " "Message did
> not receive a reply (timeout by message bus)" "

You should not edit this file, you should create a ~/.xinitrc and add
startkde to that. Try again without messing with the default system
xinitrc and using your own. You need to let the system xinitrc run, it
will call yours afterwards.


> I verified using /etc/init.d/dbus status that the dbus service is
> running.  Same for consolekit.
>
> /var/log/kdm.log shows one error, repeated for each startup attempt.
> KCrash: Appication 'kdmgreet' crashing
> KCrash: Attempting to start /usr/lib64/kde4/libexec/drkonqi directly
> Server Terminated successfully (0).  Closing log file.
>
> Any assistance gratefully received.
>
> Thanks
>
> Jeff
>
>
>



Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Dale

Jeff Cranmer wrote:

Hi,

I'm getting an error when trying to emerge phonon-gstreamer on my
amdfam10 system.  The compilation error is 'undefined reference to
'typeinfo for Phonon::StreamInterface'

Has anyone else seem this error?  I'm trying to clear out all remaining
items in an emerge -NDuav world prior to debugging some kde startup
problems.

Thanks




I'm getting the same here and there is a thread on the forums about it.  
On the forums someone posted that changing a USE flag fixes it but that 
is not really fixed since it disables something.


Anyway, you are not alone.

Dale

:-)  :-)

--
I am only responsible for what I said ... Not for what you understood or how 
you interpreted my words!

Miss the compile output?  Hint:
EMERGE_DEFAULT_OPTS="--quiet-build=n"




Re: [gentoo-user] xscreensaver-5.15 doesn't find images

2011-12-31 Thread sean

On 12/29/2011 08:02 AM, Philip Webb wrote:

I tried updating to Xscreensaver 5.15 , but it fails to load images
eg for the Jigsaw screensaver, using a default image instead.
Going back to 5.14 solves the problem.  Has anyone else seen this ?



Same problem here on 5.15.




Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Claudio Roberto França Pereira
Maybe some use flag inconsistency? Try adding --newuse or -N to your emerge.
Try this: emerge -uavDN world. If this still just pulls
phonon-gstreamer, then there should be some problem in the package
itself.



Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Dale

Claudio Roberto França Pereira wrote:

Maybe some use flag inconsistency? Try adding --newuse or -N to your emerge.
Try this: emerge -uavDN world. If this still just pulls
phonon-gstreamer, then there should be some problem in the package
itself.




http://forums.gentoo.org/viewtopic-p-6888730.html#6888730

Dale

:-)  :-)

--
I am only responsible for what I said ... Not for what you understood or how 
you interpreted my words!

Miss the compile output?  Hint:
EMERGE_DEFAULT_OPTS="--quiet-build=n"




Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Jeff Cranmer
On Sat, 2011-12-31 at 11:47 -0600, Dale wrote:
> Claudio Roberto França Pereira wrote:
> > Maybe some use flag inconsistency? Try adding --newuse or -N to your emerge.
> > Try this: emerge -uavDN world. If this still just pulls
> > phonon-gstreamer, then there should be some problem in the package
> > itself.
> >
> >
> 
> http://forums.gentoo.org/viewtopic-p-6888730.html#6888730
> 
> Dale
> 
> :-)  :-)
> 
Thanks for the link.
I tried changing the use flags for phonon to -gstreamer vlc, but for
some reason I'm still getting gstreamer pulled in as use flag
requirement, though it adds vlc.  Same error as before.

I'll try -makeopts="-j1", since at the moment I'm running
makeopts="-j6" 

Jeff





Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Jeff Cranmer
> > 
> > http://forums.gentoo.org/viewtopic-p-6888730.html#6888730
> > 
> > Dale
> > 
> > :-)  :-)
> > 
> Thanks for the link.
> I tried changing the use flags for phonon to -gstreamer vlc, but for
> some reason I'm still getting gstreamer pulled in as use flag
> requirement, though it adds vlc.  Same error as before.
> 
> I'll try -makeopts="-j1", since at the moment I'm running
> makeopts="-j6" 
> 
> Jeff

No luck with makeopts="-j1" either.






Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Dale

Jeff Cranmer wrote:

On Sat, 2011-12-31 at 11:47 -0600, Dale wrote:

Claudio Roberto França Pereira wrote:

Maybe some use flag inconsistency? Try adding --newuse or -N to your emerge.
Try this: emerge -uavDN world. If this still just pulls
phonon-gstreamer, then there should be some problem in the package
itself.



http://forums.gentoo.org/viewtopic-p-6888730.html#6888730

Dale

:-)  :-)


Thanks for the link.
I tried changing the use flags for phonon to -gstreamer vlc, but for
some reason I'm still getting gstreamer pulled in as use flag
requirement, though it adds vlc.  Same error as before.

I'll try -makeopts="-j1", since at the moment I'm running
makeopts="-j6"

Jeff




I tried -j1 with no change.  I didn't try the USE flag change tho.

Maybe one day soon.  :/

Dale

:-)  :-)

--
I am only responsible for what I said ... Not for what you understood or how 
you interpreted my words!

Miss the compile output?  Hint:
EMERGE_DEFAULT_OPTS="--quiet-build=n"




Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Michael Mol
On Sat, Dec 31, 2011 at 2:46 PM, Jeff Cranmer  wrote:
>> >
>> > http://forums.gentoo.org/viewtopic-p-6888730.html#6888730
>> >
>> > Dale
>> >
>> > :-)  :-)
>> >
>> Thanks for the link.
>> I tried changing the use flags for phonon to -gstreamer vlc, but for
>> some reason I'm still getting gstreamer pulled in as use flag
>> requirement, though it adds vlc.  Same error as before.
>>
>> I'll try -makeopts="-j1", since at the moment I'm running
>> makeopts="-j6"
>>
>> Jeff
>
> No luck with makeopts="-j1" either.

If you add "--tree" to your emerge line, you can see what's pulling in
gstreamer. If it comes to it, running a command like:

emerge -pe --verbose --tree --with-bdeps=y @world

will give you a tree view showing the entire dependency tree on your
system. From there, you should be able to get a clue as to which
packages are pulling in packages you're having difficulty with.


-- 
:wq



Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Dale

Michael Mol wrote:

On Sat, Dec 31, 2011 at 2:46 PM, Jeff Cranmer  wrote:

http://forums.gentoo.org/viewtopic-p-6888730.html#6888730

Dale

:-)  :-)


Thanks for the link.
I tried changing the use flags for phonon to -gstreamer vlc, but for
some reason I'm still getting gstreamer pulled in as use flag
requirement, though it adds vlc.  Same error as before.

I'll try -makeopts="-j1", since at the moment I'm running
makeopts="-j6"

Jeff

No luck with makeopts="-j1" either.

If you add "--tree" to your emerge line, you can see what's pulling in
gstreamer. If it comes to it, running a command like:

emerge -pe --verbose --tree --with-bdeps=y @world

will give you a tree view showing the entire dependency tree on your
system. From there, you should be able to get a clue as to which
packages are pulling in packages you're having difficulty with.




Changing the USE flag may disable things that are needed tho.  It's not 
really a fix but a workaround at best.  Me, I want a fix so that it 
compiles as it should with the current USE flags.


I think I may mask that package version.  I'm sure it will have a 
different version whenever they fix it.  Since it is using the old one 
just fine, it shouldn't break anything but will try again when they do a 
fix'er upper.  ;-)


Dale

:-)  :-)

--
I am only responsible for what I said ... Not for what you understood or how 
you interpreted my words!

Miss the compile output?  Hint:
EMERGE_DEFAULT_OPTS="--quiet-build=n"




Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Jeff Cranmer
On Sat, 2011-12-31 at 14:52 -0500, Michael Mol wrote:
> On Sat, Dec 31, 2011 at 2:46 PM, Jeff Cranmer  wrote:
> >> >
> >> > http://forums.gentoo.org/viewtopic-p-6888730.html#6888730
> >> >
> >> > Dale
> >> >
> >> > :-)  :-)
> >> >
> >> Thanks for the link.
> >> I tried changing the use flags for phonon to -gstreamer vlc, but for
> >> some reason I'm still getting gstreamer pulled in as use flag
> >> requirement, though it adds vlc.  Same error as before.
> >>
> >> I'll try -makeopts="-j1", since at the moment I'm running
> >> makeopts="-j6"
> >>
> >> Jeff
> >
> > No luck with makeopts="-j1" either.
> 
> If you add "--tree" to your emerge line, you can see what's pulling in
> gstreamer. If it comes to it, running a command like:
> 
> emerge -pe --verbose --tree --with-bdeps=y @world
> 
> will give you a tree view showing the entire dependency tree on your
> system. From there, you should be able to get a clue as to which
> packages are pulling in packages you're having difficulty with.
> 
> 
doing an emerge -pDv world, I can see the following tree
kde-base/kdeedu-meta-4.7.4
  kde-base/kmplot-4.7.4
x11-libs/qt-webkit-4.7.4
  media-libs/phonon-4.6.0-r1
media-libs/phonon-gstreamer-4.5.1

Phonon reports a use flag of gstreamer, despite me calling -gstreamer in
make.conf.  The calling packages don't report gstreamer as a use flag.




Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Dale

Jeff Cranmer wrote:

On Sat, 2011-12-31 at 14:52 -0500, Michael Mol wrote:

On Sat, Dec 31, 2011 at 2:46 PM, Jeff Cranmer  wrote:

http://forums.gentoo.org/viewtopic-p-6888730.html#6888730

Dale

:-)  :-)


Thanks for the link.
I tried changing the use flags for phonon to -gstreamer vlc, but for
some reason I'm still getting gstreamer pulled in as use flag
requirement, though it adds vlc.  Same error as before.

I'll try -makeopts="-j1", since at the moment I'm running
makeopts="-j6"

Jeff

No luck with makeopts="-j1" either.

If you add "--tree" to your emerge line, you can see what's pulling in
gstreamer. If it comes to it, running a command like:

emerge -pe --verbose --tree --with-bdeps=y @world

will give you a tree view showing the entire dependency tree on your
system. From there, you should be able to get a clue as to which
packages are pulling in packages you're having difficulty with.



doing an emerge -pDv world, I can see the following tree
kde-base/kdeedu-meta-4.7.4
   kde-base/kmplot-4.7.4
 x11-libs/qt-webkit-4.7.4
   media-libs/phonon-4.6.0-r1
 media-libs/phonon-gstreamer-4.5.1

Phonon reports a use flag of gstreamer, despite me calling -gstreamer in
make.conf.  The calling packages don't report gstreamer as a use flag.





Most likely you would have to change the USE flag in make.conf and then 
do a emerge -N world.  Thing about all this, in a couple days or so, 
there will be a fix and you get to undo all this stuff.  I'm just going 
to mask it and wait for the fix to hit the tree or the new KDE release 
may fix it and it should be out before to long too.


Dale

:-)  :-)

--
I am only responsible for what I said ... Not for what you understood or how 
you interpreted my words!

Miss the compile output?  Hint:
EMERGE_DEFAULT_OPTS="--quiet-build=n"




Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Michael Mol
On Sat, Dec 31, 2011 at 3:26 PM, Jeff Cranmer  wrote:
> On Sat, 2011-12-31 at 14:52 -0500, Michael Mol wrote:
>> On Sat, Dec 31, 2011 at 2:46 PM, Jeff Cranmer  
>> wrote:
>> >> >
>> >> > http://forums.gentoo.org/viewtopic-p-6888730.html#6888730
>> >> >
>> >> > Dale
>> >> >
>> >> > :-)  :-)
>> >> >
>> >> Thanks for the link.
>> >> I tried changing the use flags for phonon to -gstreamer vlc, but for
>> >> some reason I'm still getting gstreamer pulled in as use flag
>> >> requirement, though it adds vlc.  Same error as before.
>> >>
>> >> I'll try -makeopts="-j1", since at the moment I'm running
>> >> makeopts="-j6"
>> >>
>> >> Jeff
>> >
>> > No luck with makeopts="-j1" either.
>>
>> If you add "--tree" to your emerge line, you can see what's pulling in
>> gstreamer. If it comes to it, running a command like:
>>
>> emerge -pe --verbose --tree --with-bdeps=y @world
>>
>> will give you a tree view showing the entire dependency tree on your
>> system. From there, you should be able to get a clue as to which
>> packages are pulling in packages you're having difficulty with.
>>
>>
> doing an emerge -pDv world, I can see the following tree
> kde-base/kdeedu-meta-4.7.4
>  kde-base/kmplot-4.7.4
>    x11-libs/qt-webkit-4.7.4
>      media-libs/phonon-4.6.0-r1
>        media-libs/phonon-gstreamer-4.5.1
>
> Phonon reports a use flag of gstreamer, despite me calling -gstreamer in
> make.conf.  The calling packages don't report gstreamer as a use flag.

What about /etc/portage/package.use? Is media-libs/phonon in there anywhere?


-- 
:wq



Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Dale

Dale wrote:
I'm just going to mask it and wait for the fix to hit the tree or the 
new KDE release may fix it and it should be out before to long too.


Dale

:-)  :-)



This is just plain ole broke.  I masked that version and tried to 
recompile the older version, it failed too.  I think something is broke 
besides just USE flags.  I have only seen one person able to change a 
USE flag and it compile.


I think we need to file a bug report on this one.  Any volunteers?  If 
someone files it, post a linky.


Dale

:-)  :-)

--
I am only responsible for what I said ... Not for what you understood or how 
you interpreted my words!

Miss the compile output?  Hint:
EMERGE_DEFAULT_OPTS="--quiet-build=n"




[gentoo-user] Re: [gentoo-embedded] gdb debugging of small system built with catalyst

2011-12-31 Thread Mike Frysinger
FEATURES=installsources would probably get what you need by normalizing all 
source trees into /usr/src/debug/.
-mike


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


Re: [gentoo-user] Error compiling phonon-gstreamer

2011-12-31 Thread Dale

Dale wrote:


I think we need to file a bug report on this one.  Any volunteers?  If 
someone files it, post a linky.


Dale

:-)  :-)



Already filed and it is fixed.  Sync and try again.

https://bugs.gentoo.org/show_bug.cgi?id=396109

Go undo whatever you did while trying to get it to work.  lol

Dale

:-)  :-)

--
I am only responsible for what I said ... Not for what you understood or how 
you interpreted my words!

Miss the compile output?  Hint:
EMERGE_DEFAULT_OPTS="--quiet-build=n"