diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2010-08-12 10:03:42 +0000 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2010-08-12 10:03:42 +0000 |
commit | f291b63378e0b72937324f0aa3f1d14998098d7f (patch) | |
tree | 54d31bdabb2d7d5f04997dd19bb5a59a5cfd7928 /www-plugins/lightspark | |
parent | New snapshot. Remove old. (diff) | |
download | gentoo-2-f291b63378e0b72937324f0aa3f1d14998098d7f.tar.gz gentoo-2-f291b63378e0b72937324f0aa3f1d14998098d7f.tar.bz2 gentoo-2-f291b63378e0b72937324f0aa3f1d14998098d7f.zip |
Version bump, fixes bug #331757. Remove old
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'www-plugins/lightspark')
-rw-r--r-- | www-plugins/lightspark/ChangeLog | 10 | ||||
-rw-r--r-- | www-plugins/lightspark/files/lightspark-0.4.2.2-fix-disabled-plugin.diff | 32 | ||||
-rw-r--r-- | www-plugins/lightspark/lightspark-0.4.3.ebuild (renamed from www-plugins/lightspark/lightspark-0.4.2.2.ebuild) | 8 |
3 files changed, 11 insertions, 39 deletions
diff --git a/www-plugins/lightspark/ChangeLog b/www-plugins/lightspark/ChangeLog index 932f994ce985..4a3cf0cbd64b 100644 --- a/www-plugins/lightspark/ChangeLog +++ b/www-plugins/lightspark/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for www-plugins/lightspark # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/lightspark/ChangeLog,v 1.12 2010/07/31 14:50:36 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/lightspark/ChangeLog,v 1.13 2010/08/12 10:03:42 chithanh Exp $ + +*lightspark-0.4.3 (12 Aug 2010) + + 12 Aug 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> + -lightspark-0.4.2.2.ebuild, + -files/lightspark-0.4.2.2-fix-disabled-plugin.diff, + +lightspark-0.4.3.ebuild: + Version bump, fixes bug #331757. Remove old *lightspark-0.4.2.2 (31 Jul 2010) diff --git a/www-plugins/lightspark/files/lightspark-0.4.2.2-fix-disabled-plugin.diff b/www-plugins/lightspark/files/lightspark-0.4.2.2-fix-disabled-plugin.diff deleted file mode 100644 index a56fc8f6a726..000000000000 --- a/www-plugins/lightspark/files/lightspark-0.4.2.2-fix-disabled-plugin.diff +++ /dev/null @@ -1,32 +0,0 @@ -=== modified file 'swf.cpp' ---- swf.cpp 2010-07-28 22:52:35 +0000 -+++ swf.cpp 2010-07-29 16:21:13 +0000 -@@ -497,6 +497,7 @@ - //Check if we should fall back on gnash - if(useGnashFallback && engine==GTKPLUG && vmVersion!=AVM2) - { -+#ifdef COMPILE_PLUGIN - if(dumpedSWFPath.len()==0) //The path is not known yet - { - waitingForDump=true; -@@ -565,11 +566,19 @@ - stopEngines(); - return; - } -+#else -+ //COMPILE_PLUGIN not defined -+ throw new UnsupportedException("GNASH fallback not available when not built with COMPILE_PLUGIN"); -+#endif - } - - if(engine==GTKPLUG) //The engines must be created int the context of the main thread - { -+#ifdef COMPILE_PLUGIN - npapiParams.helper(npapiParams.helperArg, (helper_t)delayedCreation, this); -+#else -+ throw new UnsupportedException("Plugin engine not available when not built with COMPILE_PLUGIN"); -+#endif - } - else //SDL engine - { - diff --git a/www-plugins/lightspark/lightspark-0.4.2.2.ebuild b/www-plugins/lightspark/lightspark-0.4.3.ebuild index 8b0b0c4d621e..b62634fd317e 100644 --- a/www-plugins/lightspark/lightspark-0.4.2.2.ebuild +++ b/www-plugins/lightspark/lightspark-0.4.3.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/lightspark/lightspark-0.4.2.2.ebuild,v 1.1 2010/07/31 14:50:36 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/lightspark/lightspark-0.4.3.ebuild,v 1.1 2010/08/12 10:03:42 chithanh Exp $ EAPI=3 inherit cmake-utils nsplugins multilib DESCRIPTION="High performance flash player" HOMEPAGE="https://launchpad.net/lightspark/" -SRC_URI="http://launchpad.net/${PN}/trunk/${PN}-0.4.2/+download/${P}.tar.gz" +SRC_URI="http://launchpad.net/${PN}/trunk/${P}/+download/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0" @@ -41,10 +41,6 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${P/_rc*/} -src_prepare() { - epatch "${FILESDIR}"/${P}-fix-disabled-plugin.diff -} - src_configure() { local mycmakeargs=( $(cmake-utils_use nsplugin COMPILE_PLUGIN) |