vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Oh ye Gurus, Every time I need up upgrade my KDE, I run into a problem: > !!! ERROR: kde-base/kuickshow-3.4.1 failed. > > grep: /usr/lib/libungif.la: No such file or directory > /bin/sed: can't read /usr/lib/libungif.la: No such file or directory > libtool: link: `/usr/lib/libungif.la' is not a valid libtool archive > make[3]: *** [libkdeinit_kuickshow.la] Error 1 > make[3]: Leaving directory > '/var/tmp/portage/kuickshow-3.4.1/work/kuickshow-3.4.1/kuickshow/src' >make[2]: *** [all-recursive] Error 1 >make[2]: Leaving directory >`/var/tmp/portage/kuickshow-3.4.1/work/kuickshow-3.4.1/kuickshow' >make[1]: *** [all-recursive] Error 1 >make[1]: Leaving directory >`/var/tmp/portage/kuickshow-3.4.1/work/kuickshow-3.4.1 I am fairly experienced in maintaining Debian systems, but this Gentoo is my home workstation, and there are still some things I haven't figured out. For example, why don't I have a libungif.la. My USE flags are: > USE="X kde yaz x86 alsa qt perl tcltk tk java svg real live logrotate\ > 3dfx 3dnow directfb dvd dvdread i8x0 dv mmx mmxext usb rtc sse sse2 \ > win32codecs xanim xinerama xvid -ipv6 " Anything else I should add to this report? Thanks in advance to all who answer. Heikki Levanto |
| |||
| Heikki wrote: > Oh ye Gurus, > > Every time I need up upgrade my KDE, I run into a problem: > >> !!! ERROR: kde-base/kuickshow-3.4.1 failed. >> >> grep: /usr/lib/libungif.la: No such file or directory >> /bin/sed: can't read /usr/lib/libungif.la: No such file or directory >> libtool: link: `/usr/lib/libungif.la' is not a valid libtool archive >> make[3]: *** [libkdeinit_kuickshow.la] Error 1 >> make[3]: Leaving directory >> '/var/tmp/portage/kuickshow-3.4.1/work/kuickshow-3.4.1/kuickshow/src' >> make[2]: *** [all-recursive] Error 1 >> make[2]: Leaving directory >> `/var/tmp/portage/kuickshow-3.4.1/work/kuickshow-3.4.1/kuickshow' >> make[1]: *** [all-recursive] Error 1 >> make[1]: Leaving directory >> `/var/tmp/portage/kuickshow-3.4.1/work/kuickshow-3.4.1 > > I am fairly experienced in maintaining Debian systems, but this Gentoo is my > home workstation, and there are still some things I haven't figured out. > For example, why don't I have a libungif.la. Not all programs has properly been updated to use giflib instead of ungif. There was a lot of issues when giflib replaced ungif, think you could have those at the same time installed for a while, when giflib didn't make the symlink. ln -s /usr/lib/libgif.so.4 /usr/lib/libungif.so.4 should fix your trouble, if you have giflib installed. //Aho |
| |||
| J.O. Aho wrote: > Not all programs has properly been updated to use giflib instead of ungif. > There was a lot of issues when giflib replaced ungif, think you could have > those at the same time installed for a while, when giflib didn't make the > symlink. > > ln -s /usr/lib/libgif.so.4 /usr/lib/libungif.so.4 > > should fix your trouble, if you have giflib installed. > Thanks. Indeed it turns out I have giflib. I had to improve your advice a bit, and do also # ln -s /usr/lib/libgif.a /usr/lib/libungif.a # ln -s /usr/lib/libgif.la /usr/lib/libungif.la # ln -s /usr/lib/libgif.so /usr/lib/libungif.so Not quite sure if all of them were needed, but now it emerged kuickshow without a complaint. That's what I love about Gentoo - lots of qualified help available. - Heikki |
| ||||
| Heikki wrote: > J.O. Aho wrote: >> Not all programs has properly been updated to use giflib instead of ungif. >> There was a lot of issues when giflib replaced ungif, think you could have >> those at the same time installed for a while, when giflib didn't make the >> symlink. >> >> ln -s /usr/lib/libgif.so.4 /usr/lib/libungif.so.4 >> >> should fix your trouble, if you have giflib installed. >> > > Thanks. Indeed it turns out I have giflib. I had to improve your advice a > bit, and do also > # ln -s /usr/lib/libgif.a /usr/lib/libungif.a > # ln -s /usr/lib/libgif.la /usr/lib/libungif.la > # ln -s /usr/lib/libgif.so /usr/lib/libungif.so > > Not quite sure if all of them were needed, but now it emerged kuickshow > without a complaint. > > That's what I love about Gentoo - lots of qualified help available. It had been better if it had worked without trouble in the first place, tai mitä? Think this will be fixed next time you emerge giflib, but it don't hurt to have this written down on a small text file, just in case. //Aho |