Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 310349 - www-plugins/gnash-0.8.7: media handler check wrong
Summary: www-plugins/gnash-0.8.7: media handler check wrong
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Romain Perier (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-03-20 10:19 UTC by Dennis Schridde
Modified: 2010-03-23 23:48 UTC (History)
1 user (show)

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 Dennis Schridde 2010-03-20 10:19:46 UTC
On my system the gnash ebuild complains:
* Gnash was built without a media handler and or http handler !

The ebuild does these checks during src_configure:
    # Set media handler.
    if use ffmpeg; then
        myconf="${myconf} --enable-media=ffmpeg"
    elif use gstreamer; then
        myconf="${myconf} --enable-media=gst"
    else
        myconf="${myconf} --enable-media=none"
    fi
-> ffmpeg is preffered over gstreamer

However, during pgk_postinst it checks:
if use !ffmpeg && use !gstreamer || use gstreamer && ( ! use gnome ); then
Which will result in the warning if ffmpeg and gstreamer are set (ffmpeg will be used as media handler, see above), but gnome is not.

Correct would be:
use !ffmpeg && ( use !gstreamer || use gstreamer && use !gnome )

Reproducible: Always
Comment 1 Chí-Thanh Christopher Nguyễn gentoo-dev 2010-03-23 23:48:52 UTC
Fixed in CVS.