Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 499396 - www-plugins/gnash-0.8.10_p20131019 ignores the dump and fbcon USE flags if the gtk USE flag is set
Summary: www-plugins/gnash-0.8.10_p20131019 ignores the dump and fbcon USE flags if th...
Status: RESOLVED DUPLICATE of bug 491120
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Library (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Chí-Thanh Christopher Nguyễn
URL:
Whiteboard:
Keywords: PATCH
Depends on:
Blocks:
 
Reported: 2014-01-26 20:33 UTC by Euan Kemp
Modified: 2014-08-22 14:52 UTC (History)
0 users

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


Attachments
Fixes gui flag handling (gnash-0.8.10_p20131019-r1.ebuild,7.43 KB, text/plain)
2014-01-26 20:33 UTC, Euan Kemp
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Euan Kemp 2014-01-26 20:33:25 UTC
Created attachment 368834 [details]
Fixes gui flag handling

The current gnash ebuild, www-plugins/gnash-0.8.10_p20131019, ignores the dump and fbcon use flags if the gtk use flag is set. This results in some files not being compiled / installed (such as dump-gnash). This only effects users who had that combination of flags.

I'm not sure if it's appropriate to bump the revision number or not in this case. I've attached an -r1 ebuild, but the below could be applied to the current one just as easily:

==> gnash-0.8.10_p20131019.patch <==
192c192
< 	use gtk && gui=",gtk"
---
> 	use gtk && gui="${gui},gtk"




Cheers,
Euan
Comment 1 Jeroen Roovers (RETIRED) gentoo-dev 2014-01-26 20:40:22 UTC
Comment on attachment 368834 [details]
Fixes gui flag handling

--- gnash-0.8.10_p20131019.ebuild       2013-12-05 14:01:14.684171045 +0100
+++ -   2014-01-26 21:40:09.630620112 +0100
@@ -189,7 +189,7 @@
        # Set gui.
        use dump && gui="${gui},dump"
        use fbcon && gui="${gui},fb"
-       use gtk && gui=",gtk"
+       use gtk && gui="${gui},gtk"
        use kde && gui="${gui},kde4"
        use sdl && gui="${gui},sdl"
Comment 2 Jeroen Roovers (RETIRED) gentoo-dev 2014-08-22 14:52:04 UTC

*** This bug has been marked as a duplicate of bug 491120 ***