Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 34555 - app-emulation/fuse-0.6.1.1.ebuild
Summary: app-emulation/fuse-0.6.1.1.ebuild
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Unspecified (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: SpanKY
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: 34553
  Show dependency tree
 
Reported: 2003-11-27 15:43 UTC by Spider (RETIRED)
Modified: 2003-12-07 08:12 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Spider (RETIRED) gentoo-dev 2003-11-27 15:43:28 UTC
IUSE="" is incomplete (xml2 for example)

gtk+ dependencies badly broken.  interaction with gnome? use flag to be considered.
Comment 1 SpanKY gentoo-dev 2003-11-29 13:04:23 UTC
changed to
            gtk? (
                gtk2? ( =x11-libs/gtk+-2* )
                =x11-libs/gtk+-1*  
            )
Comment 2 Spider (RETIRED) gentoo-dev 2003-12-01 11:11:41 UTC
erm,  explain this (in the bug) syntax:

if I have USE="gtk gtk2"  you will force both versions on me?  Does it actually use both versions then?

build test here shows that in that case it only links to gtk+ 2, so 1 shouldn't even be in the dep list.

 # emerge info |grep USE
USE="x86 X gtk gtk2 gnome ssl crypt mmx 3dnow samba perl python acl acp avi cdr cups cscope gpm gphoto2 guile imap jikes mozilla ncurses nls sdl tiff truetype usb xosd zlib xine xml2 jpeg readline unicode ruby"

emerge -v fuse

# ldd /usr/bin/fuse |grep gtk 
        libgtk-x11-2.0.so.0 => /usr/lib/libgtk-x11-2.0.so.0 (0x4003c000)
Comment 3 SpanKY gentoo-dev 2003-12-01 11:58:53 UTC
it was part of a larger DEPEND so i was using it diff ...
changed it to:
    || (
        X? (
            virtual/x11
            gtk? (
                gtk2? ( =x11-libs/gtk+-2* ) : =x11-libs/gtk+-1*
            )
        )
        sdl? ( media-libs/libsdl )
        svga? ( media-libs/svgalib )
        fbcon? ( )
        virtual/x11
    )