Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 34569 - net-analyzer/ethereal
Summary: net-analyzer/ethereal
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Unspecified (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: 34553
  Show dependency tree
 
Reported: 2003-11-27 16:20 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 16:20:40 UTC
DEPEND/src_compile mislogic


./net-analyzer/ethereal/ethereal-0.9.16.ebuild
        gtk2? ( >=dev-libs/glib-2.0.4 =x11-libs/gtk+-2* )
        !gtk2 ( gtk? ( =x11-libs/gtk+-1.2* ) )
Broken logic , won't detect "-gtk gtk2"  .invalid case, but should give the correct dependencies anyhow. 

gtk? (
	gtk2? ( >=dev-libs/glib-2.0.4 =x11-libs/gtk+-2* )
	!gtk2? ( =x11-libs/gtk+-1.2* ) 
)

The logic inside the build doesn't seem to detect USE="-gtk" if gtk+1.2 is disabled but installed.  (yes , this happens quite frequently. )
Comment 1 Spider (RETIRED) gentoo-dev 2003-11-27 18:08:01 UTC
commited a fix in the glib-1.2 handling