Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 286274 - www-plugins/gnash 0.8.6 is out
Summary: www-plugins/gnash 0.8.6 is out
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Romain Perier (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-09-24 17:37 UTC by jalan
Modified: 2010-03-31 11:24 UTC (History)
2 users (show)

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


Attachments
proposed ebuild for www-plugins/gnash-0.8.6 (gnash-0.8.6.ebuild,6.55 KB, text/plain)
2009-09-24 17:42 UTC, jalan
Details
patch to make gnash find QT4's uic and moc in /usr/bin (gnash-0.8.6-moc-qt4.patch,760 bytes, patch)
2009-09-24 17:48 UTC, jalan
Details | Diff
patch to make gnash find QT4's uic and moc in /usr/bin (gnash-0.8.6-moc-qt4.patch,760 bytes, patch)
2009-09-24 17:54 UTC, jalan
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description jalan 2009-09-24 17:37:43 UTC
gnash 0.8.6 is out. Information on the release is here: http://gnashdev.org/?q=node/71

I'll post an ebuild in a minute

Reproducible: Always

Steps to Reproduce:
Comment 1 jalan 2009-09-24 17:42:21 UTC
Created attachment 205128 [details]
proposed ebuild for www-plugins/gnash-0.8.6

Here's the ebuild. No major changes from 0.8.5
Comment 2 jalan 2009-09-24 17:48:48 UTC
Created attachment 205129 [details, diff]
patch to make gnash find QT4's uic and moc in /usr/bin

This is the only patch I modified. It's the same as shown here: https://savannah.gnu.org/bugs/?func=detailitem&item_id=25758#comment8

For the other patches I just changed all the names to start with 'gnash-0.8.6'
Comment 3 jalan 2009-09-24 17:54:08 UTC
Created attachment 205131 [details, diff]
patch to make gnash find QT4's uic and moc in /usr/bin

Eh, whoops, I put some brackets in the wrong place the first time
Comment 4 jalan 2009-09-24 18:17:50 UTC
I have tested 0.8.6 a little now: agg, cairo, and opengl renderers; nsplugin, gtk frontend, sdl frontend. I have not and don't plan to test the kde frontend, so maybe somebody else should try it out
Comment 5 Jeroen Roovers (RETIRED) gentoo-dev 2009-09-25 15:44:09 UTC
# ChangeLog for www-plugins/gnash
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/www-plugins/gnash/ChangeLog,v 1.13 2009/09/25 15:38:05 mrpouet Exp $

*gnash-0.8.6 (25 Sep 2009)

  25 Sep 2009; Romain Perier <mrpouet@gentoo.org>
  -gnash-0.8.4.ebuild, +gnash-0.8.6.ebuild,
  +files/gnash-0.8.6-libcore-as3-headers.patch, metadata.xml:
  Version bump, remove old revision.
Comment 6 jalan 2009-09-25 16:21:55 UTC
The moc-qt4 patch needs changed for this version. Upstream modified the file in question, but not quite in the way to make it work for us. They changed:

    AC_PATH_PROG(MOC4, moc-qt4, ,[${QTDIR}/bin /usr/lib/qt4/bin /usr/share/qt4/bin/ ${pathlist}])
    AC_PATH_PROG(UIC4, uic-qt4, ,[${QTDIR}/bin /usr/lib/qt4/bin /usr/share/qt4/bin/ ${pathlist}])

to:

    AC_PATH_PROGS(MOC4, [moc-qt4 moc], ,[${QTDIR}/bin /usr/lib/qt4/bin /usr/share/qt4/bin/ ${pathlist}])
    AC_PATH_PROGS(UIC4, [uic-qt4 uic], ,[${QTDIR}/bin /usr/lib/qt4/bin /usr/share/qt4/bin/ ${pathlist}])

So now they check for 'moc' and 'uic' but they find it in /usr/qt/3
Comment 7 Chí-Thanh Christopher Nguyễn gentoo-dev 2009-10-18 02:01:53 UTC
I can confirm that the patch from attachment 205131 [details, diff] fixes the build for me.
Comment 8 Chí-Thanh Christopher Nguyễn gentoo-dev 2010-03-15 21:03:35 UTC
Fixed long ago