debian/0000755000000000000000000000000012210054363007162 5ustar debian/control0000644000000000000000000000515112210053732010566 0ustar Source: gecko-mediaplayer Section: video Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Multimedia Maintainers Uploaders: Julien Lavergne , Aron Xu , Sebastian Ramacher Build-Depends: debhelper (>= 9), dh-autoreconf, pkg-config (>= 0.26), libglib2.0-dev (>= 2.14), xulrunner-dev | firefox-dev, libdbus-1-dev (>= 0.95), libdbus-glib-1-dev (>= 0.70), libx11-dev, libgmlib-dev (>= 1.0.7), libgconf2-dev, libcurl4-gnutls-dev | libcurl-dev, libnspr4-dev Standards-Version: 3.9.4 Homepage: http://code.google.com/p/gecko-mediaplayer/ Vcs-Git: git://anonscm.debian.org/pkg-multimedia/gecko-mediaplayer.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-multimedia/gecko-mediaplayer.git Package: gecko-mediaplayer Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, gnome-mplayer (>= 1.0.7) Xb-Npp-Applications: ec8030f7-c20a-464f-9b0e-13a3a9e97384, 92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a, aa5ca914-c309-495d-91cf-3141bbb04115 Xb-Npp-Name: Gecko Media Player Xb-Npp-Description: Play media off the net using the gnome-mplayer Xb-Npp-File: gecko-mediaplayer Xb-Npp-MimeType: video/mpeg, audio/mpeg, video/x-mpeg, video/x-mpeg2, audio/x-mpeg, audio/mpeg2, audio/x-mpeg2, audio/mpeg3, audio/x-mpeg3, audio/mp3, audio/x-mpegurl, video/mp4, application/x-ogg, audio/ogg, application/ogg, video/fli, video/x-fli, video/vnd.vivo, application/x-nsv-vp3-mp3, audio/basic, audio/x-basic, audio/x-scpls, video/divx, video/vnd.divx, video/quicktime, video/x-quicktime, image/x-quicktime, video/quicktime, video/quicktime, application/x-quicktimeplayer, application/asx, video/x-ms-asf-plugin, video/x-msvideo, video/msvideo, application/x-mplayer2, application/x-ms-wmv, video/x-ms-asf, video/x-ms-wm, video/x-ms-wmv, audio/x-ms-wmv, video/x-ms-wmp, video/x-ms-wvx, audio/x-ms-wax, audio/x-ms-wma, application/x-drm-v2, audio/wav, audio/x-wav, audio/x-pn-realaudio, application/vnd.rn-realmedia, application/vnd.rn-realaudio, video/vnd.rn-realvideo, audio/x-realaudio, audio/x-pn-realaudio-plugin, application/smil, audio/x-mod Description: Multimedia plug-in for Gecko browsers Gecko Media Player is a browser plug-in that uses GNOME MPlayer and Mplayer to play media in a browser. It uses the NS4 API and is therefore compatible with all NS4 derived browsers: Iceweasel, Firefox, Iceape, Epiphany, Galeon, Midbrowser, Xulrunner as well as with Konqueror, Opera and Google Chromium. . It is the modern replacement for mplayerplug-in (from the same author). debian/watch0000644000000000000000000000046412210053732010216 0ustar version=3 opts=downloadurlmangle=s#.*(gecko-mediaplayer-([\d.]+)\.tar\.gz).*#http://gecko-mediaplayer.googlecode.com/files/$1#,filenamemangle=s#.*(gecko-mediaplayer-([\d.]+)\.tar\.gz).*#$1# \ http://code.google.com/p/gecko-mediaplayer/downloads/list ^.*detail\?name=gecko-mediaplayer-([\d.]+)\.tar\.gz.* debian/source/0000755000000000000000000000000012210054362010461 5ustar debian/source/format0000644000000000000000000000001412210053732011667 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000110112210053732010232 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 export DEB_CXXFLAGS_MAINT_APPEND=-std=gnu++0x export DEB_CPPFLAGS_MAINT_APPEND=-DMOZ_NO_MOZALLOC export DEB_LDFLAGS_MAINT_APPEND=-Wl,-z,defs -Wl,--as-needed # Build with verbose build output export V=1 %: dh $@ --parallel --with autoreconf override_dh_auto_configure: dh_auto_configure -- \ --with-plugin-dir=/usr/lib/mozilla/plugins override_dh_auto_install: dh_auto_install # remove upstream documentation rm -rf $(CURDIR)/debian/gecko-mediaplayer/usr/share/doc/gecko-mediaplayer debian/gbp.conf0000644000000000000000000000006512210054022010572 0ustar [DEFAULT] pristine-tar = True debian-branch = master debian/compat0000644000000000000000000000000212210053732010357 0ustar 9 debian/docs0000644000000000000000000000003112210053732010026 0ustar DOCS/tech/javascript.txt debian/patches/0000755000000000000000000000000012210054362010610 5ustar debian/patches/functable-check.patch0000644000000000000000000000211512210054022014637 0ustar Description: Fix function table check We only need to know if we have access to all the values we need. Everything else is not necessary. Author: Sebastian Ramacher Last-Update: 2013-06-24 Forwarded: https://code.google.com/p/gecko-mediaplayer/issues/detail?id=184 --- a/src/np_entry.cpp +++ b/src/np_entry.cpp @@ -42,6 +42,7 @@ #include #include #include "npupp.h" +#include #ifdef HAVE_CONFIG_H #include @@ -117,9 +118,14 @@ if (HIBYTE(pFuncs->version) > NP_VERSION_MAJOR) return NPERR_INCOMPATIBLE_VERSION_ERROR; - if (pFuncs->size < sizeof(NPNetscapeFuncs)) + if (pFuncs->size < offsetof(NPNetscapeFuncs, setexception) + sizeof(NPN_SetExceptionProcPtr)) return NPERR_INVALID_FUNCTABLE_ERROR; +#ifdef XP_UNIX + if (pluginFuncs->size < offsetof(NPPluginFuncs, getvalue) + sizeof(NPP_GetValueProcPtr)) + return NPERR_INVALID_FUNCTABLE_ERROR; +#endif + NPNFuncs.size = pFuncs->size; NPNFuncs.version = pFuncs->version; NPNFuncs.geturlnotify = pFuncs->geturlnotify; debian/patches/0002-require-nspr.patch0000644000000000000000000000150712210053732014647 0ustar Description: require nspr to build plugin firefox-dev in quantal only provides the npapi headers so we need nspr to build the plugin. (Perhaps firefox-dev should provide npapi-sdk.pc instead? Then this patch wouldn't be required.) Author: Jason Conti Last-Update: 2012-09-24 Bug-Ubuntu: https://launchpad.net/bugs/1055639 --- gecko-mediaplayer-1.0.6.orig/configure.in +++ gecko-mediaplayer-1.0.6/configure.in @@ -68,8 +68,9 @@ PKG_CHECK_MODULES(GECKO, [libxul-unstabl fi if test "$GECKO_CFLAGS" = ""; then -PKG_CHECK_MODULES(GECKO, [mozilla-plugin mozilla-xpcom],[ AC_MSG_NOTICE([Using mozilla]) +PKG_CHECK_MODULES(GECKO, [mozilla-plugin],[ AC_MSG_NOTICE([Using mozilla]) ],[AC_MSG_WARN([mozilla-plugin not found, trying another])]) + require_nspr="yes" fi if test "$GECKO_CFLAGS" = ""; then debian/patches/0001-nomozalloc.patch0000644000000000000000000000145612210053732014372 0ustar Description: link against xpcomglue_s_nomozalloc Author: Mike Hommey Last-Update: 2012-04-07 diff --git a/configure.in b/configure.in index 8d0c87d..271a4f7 100644 --- a/configure.in +++ b/configure.in @@ -42,7 +42,7 @@ AC_ARG_WITH([xulrunner-sdk], [ XULRUNNER_SDK_PREFIX=$with_xulrunner_sdk GECKO_CFLAGS="-I$XULRUNNER_SDK_PREFIX/include -I$XULRUNNER_SDK_PREFIX/include/plugin -I$XULRUNNER_SDK_PREFIX/include/nspr -I$XULRUNNER_SDK_PREFIX/include/xpcom -I$XULRUNNER_SDK_PREFIX/include/string -I$XULRUNNER_SDK_PREFIX/include/java" - GECKO_LIBS="-L$XULRUNNER_SDK_PREFIX/lib -lxpcomglue_s -lxul -lxpcom -lplds4 -lplc4 -lnspr4 -lpthread -ldl" + GECKO_LIBS="-L$XULRUNNER_SDK_PREFIX/lib -lxpcomglue_s_nomozalloc -lxul -lxpcom -lplds4 -lplc4 -lnspr4 -lpthread -ldl" ], []) debian/patches/series0000644000000000000000000000010412210054022012011 0ustar 0001-nomozalloc.patch 0002-require-nspr.patch functable-check.patch debian/changelog0000644000000000000000000004172212210054357011045 0ustar gecko-mediaplayer (1.0.8-4ubuntu1) saucy; urgency=low * Merge from Debian testing, remaining ubuntu changes: - debian/rules: Drop --with-xulrunner-sdk flag, it's empty and cause FTBFS. - debian/control: Build depend on libnspr4-dev - debian/patches/0002-require-nspr.patch: firefox-dev now only provides npapi headers so require nspr to build -- Jackson Doak Fri, 30 Aug 2013 07:26:44 +1000 gecko-mediaplayer (1.0.8-4) unstable; urgency=low * debian/patches/functable-check.patch: Actually check the correct function table. This should now cover all cases correctly. -- Sebastian Ramacher Mon, 24 Jun 2013 12:51:09 +0200 gecko-mediaplayer (1.0.8-3) unstable; urgency=low * debian/patches/functable-check.patch: Fix function table check. This improves the compatibility with browser other than iceweasel and with older versions of iceweasel if built against a newer one. (LP: #870115, #1069635) -- Sebastian Ramacher Sun, 23 Jun 2013 17:44:51 +0200 gecko-mediaplayer (1.0.8-2) unstable; urgency=low * Upload to unstable. * debian/install: Don't install obsolete gconf2 scheme. -- Sebastian Ramacher Thu, 06 Jun 2013 22:42:00 +0200 gecko-mediaplayer (1.0.8-1ubuntu1) raring; urgency=low * Merge from Debian experimental, Ubuntu remaining changes : * debian/rules: - Drop --with-xulrunner-sdk flag, it's empty and cause FTBFS. * debian/control: - Build depend on libnspr4-dev * debian/patches/0002-require-nspr.patch: - firefox-dev now only provides npapi headers so require nspr to build (LP: #1055639) -- Julien Lavergne Thu, 07 Mar 2013 11:00:21 +0100 gecko-mediaplayer (1.0.8-1) experimental; urgency=low * New upstream release. * debian/rules: Build with -DMOZ_NO_MOZALLOC again. The proper flags for ./configure got lost in 1.0.5-1. * debian/copyright: Update copyright years. -- Sebastian Ramacher Sun, 03 Mar 2013 19:23:44 +0100 gecko-mediaplayer (1.0.7-1ubuntu1) raring; urgency=low * Merge from Debian experimental, Ubuntu remaining changes : * debian/rules: - Disable --as-needed to fix another FTBFS on Ubuntu. * debian/control: - Build depend on libnspr4-dev * debian/patches/0002-require-nspr.patch: - firefox-dev now only provides npapi headers so require nspr to build (LP: #1055639) -- Julien Lavergne Wed, 21 Nov 2012 22:33:14 +0100 gecko-mediaplayer (1.0.7-1) experimental; urgency=low * New upstream release. * debian/control: - Update my address. - Bump gnome-mplayer Dep to 1.0.7. - Bump libgmlib-dev Build-Dep to 1.0.7. - Bump Standards-Version to 3.9.4 (no changes required). - Remove audio/midi from Xb-Npp-MimeType (see #686762 for details). * debian/copyright: Update my address. * debian/rules: Compile with -std=gnu++0x to get rid of the xulrunner SDK warning. -- Sebastian Ramacher Sun, 18 Nov 2012 11:33:04 +0100 gecko-mediaplayer (1.0.6-1ubuntu2) quantal; urgency=low * debian/patches/0002-require-nspr.patch: - firefox-dev now only provides npapi headers so require nspr to build (LP: #1055639) * debian/rules: - Drop --with-xulrunner-sdk * debian/control: - Build depend on libnspr4-dev -- Jason Conti Mon, 24 Sep 2012 12:57:53 -0400 gecko-mediaplayer (1.0.6-1ubuntu1) quantal; urgency=low * Sync with Debian (LP: #928101) * Ubuntu remaining changes : - debian/rules: + Add --with-xulrunner-sdk to fix FTBFS on Ubuntu (LP: #935501) + Disable --as-needed to fix another FTBFS on Ubuntu. -- Julien Lavergne Fri, 04 May 2012 19:11:21 +0200 gecko-mediaplayer (1.0.6-1) unstable; urgency=low * New upstream release. * debian/patches: - Update 0001-mozalloc.patch. - Remove 0002-fix-spelling-error.patch (not needed anymore). * debian/control: - Bump Standards version to 3.9.3 (no changes required). - Bump Depends on gnome-mplayer to 1.0.6 to keep them in sync. - Bump Build-Dep on debhelper to >= 9. - Drop unnecessary Build-Dep on dpkg-dev. * debian/copyright: Update Format URL. * debian/rules: - Enable verbose build output. - Enable parallel build. - Drop include of /usr/share/dpkg/buildflags.mk. The flags are exported by debhelper with compat level 9. * debian/compat: Bump to 9. -- Sebastian Ramacher Sun, 29 Apr 2012 20:02:19 +0200 gecko-mediaplayer (1.0.5-1) unstable; urgency=low [ Sebastian Ramacher ] * New upstream release (Closes: #652152). * debian/control: - add myself to Uploaders. - don't depend on specific browsers (Closes: #567169) - Build-Dep on dh-autoreconf instead of autotools-dev. - Build-Dep on pkg-config (>= 2.26). - Remove unnecessary Build-Dep on libidl0. * debian/rules: - regenerate configure with dh-autoreconf. * debian/patches: - add 0002-fix-spelling-error.patch to fix spelling mistake in src/plugin.cpp. - update 0001-nomozalloc.patch to not include diff for configure. [ Julien Lavergne ] * debian/patches: - force-no-gsettings.patch: Remove, since gnome-mplayer provide the gsettings schemas. [ Brandon Snider ] * debian/rules: convert package to dh short form (Closes: #638336). * debian/compat: bump compat to 8. * debian/control: - Build-Dep on debhelper (>= 8) - Build-Dep on libgmlib-dev * debian/copyright: make it DEP-5 compliant [ Aron Xu ] * debian/control: - Move to Debian Multimedia Team, add Julien and myself to Uploaders. (Closes: #628997) - Add Vcs-* fields. -- Sebastian Ramacher Thu, 05 Jan 2012 00:53:13 +0100 gecko-mediaplayer (1.0.4-2) unstable; urgency=high * QA upload. * Pass --with-plugin-dir=/usr/lib/mozilla/plugins to configure. (Closes: #636800) -- Aron Xu Sun, 07 Aug 2011 19:53:15 +0800 gecko-mediaplayer (1.0.4-1) unstable; urgency=low * QA upload. * Pick most works from Ubuntu, thanks to Ubuntu developers. - Close #634402, #627348, #575483. - Please help triage bugs fixed but not closed. * debian/control: - Std-ver: 3.9.2. - Updated homepage. - Removed Vcs-*. - Set Debian QA Group to Maintainer. - Add xulrunner-dev to build-dep, since Debian does not have firefox-dev. - Add libcurl-dev to enable curl support. * debian/compat: 5 -> 7. * debian/rules: - Use DSO linking. - Add build-indep and build-arch empty target, to make lintian happy. * debian/patches/force-no-gsettings.patch: updated header. * Merge changes from 0.9.9.2-1.1 by Mike Hommey : - configure.in, configure: use xpcomglue_s_nomozalloc instead of xpcomglue_s (Adding -DMOZ_NO_MOZALLOC to GECKO_CFLAGS is no longer needed, enabling --enable-new-libxul will automatically do that. Updated 0001-nomozalloc.patch) - debian/rules: Configure with --with-xulrunner-sdk and --enable-new-libxul. - src/plugin.cpp no longer needs changes, upstream has done that. (0002-Remove-call-to-empty-NPP_Initialize.patch dropped) -- Aron Xu Fri, 05 Aug 2011 22:21:18 +0800 gecko-mediaplayer (1.0.4-0ubuntu2) oneiric; urgency=low * Add patch to not automatically enable gsettings support when glib is new enough and gconf is disabled. This needs a schema file installing to make everything loading it not crash on startup (which doesn't seem to be provided). Works around startup crash affecting every browser and Thunderbird (LP: #812053). Note, this is a sledgehammer approach to stop everything from crashing. Someone needs to create a schema file if they want gsettings support enabled - add debian/patches/force-no-gsettings.patch - add debian/patches/series -- Chris Coulson Mon, 18 Jul 2011 13:12:46 +0100 gecko-mediaplayer (1.0.4-0ubuntu1) oneiric; urgency=low * New upstream release. * debian/patches: - 90_svn420_fix_null.patch: Remove, merged upstream. - 91_svn421_disable_npp_initialize.patch: Remove, merged upstream. - dont_use_libxul.patch: Remove, fixed upstream. - autotools.patch: Remove, not needed now. -- Julien Lavergne Sun, 17 Jul 2011 22:24:37 +0200 gecko-mediaplayer (1.0.0-0ubuntu3) oneiric; urgency=low * Don't use any Mozilla interfaces at all. The only interfaces used previously were nsIPrefBranch and nsIPrefService to change a preference which configured the UA string to "QuickTime/7.6.4". This functionality is Firefox specific anyway, and so doesn't work in any Webkit based browser (Chromium, Epiphany, Midori etc). It also doesn't work in Firefox 4 and later since the plugin is running in a separate process, where setting prefs in the plugin process has no effect on the browser process at all - add debian/patches/dont_use_libxul.patch - add debian/patches/autotools.patch - update debian/patches/series - update debian/control to build-depend on firefox-dev - see https://blueprints.launchpad.net/ubuntu/+spec/ desktop-o-mozilla-rapid-release-maintenance and https://lists.ubuntu.com/archives/ubuntu-devel/2011-May/033229.html -- Chris Coulson Fri, 27 May 2011 15:19:19 +0100 gecko-mediaplayer (1.0.0-0ubuntu2) natty; urgency=low * debian/control: - Build-depends on xulrunner-1.9.2-dev until bug #724070 is fixed. -- Julien Lavergne Sun, 06 Mar 2011 23:05:08 +0100 gecko-mediaplayer (1.0.0-0ubuntu1) natty; urgency=low [ Cesare Tirabassi ] * Update dependencies list (xulrunner, midbrowser and firefox-3.5) * Add konqueror, opera and chromium in long description * Removed all symlinks, lookup is now implemented upstream by all compatible packages (Closes: #581807). This may (and likely will) break backports. * Updated watch file in line with new google code standard (thanks D. Leidert) [ Julien Lavergne ] * New upstream release (LP: #693867) - Fix crash when loading iTunes store (LP: #569682) * debian/rules: - Build without gconf support, which should fix the hang with chromium (LP: #545209). * debian/patches/90_svn420_fix_null.patch: - From upstream, fix NULL pointer errors (LP: #709277) * debian/patches/91_svn421_disable_npp_initialize.patch: - From upstream, fix FTBFS with new xulrunner. * debian/control: - Drop build-depends on quilt, handle by format 3.0. * debian/patches/01_xulrunner-20.patch: - Drop, replace by upstream patch 91_svn421_disable_npp_initialize.patch. -- Julien Lavergne Mon, 14 Feb 2011 23:17:54 +0100 gecko-mediaplayer (0.9.9.2-1ubuntu1) natty; urgency=low * Drop unneeded symlinks in /usr/lib/xulrunner, /usr/lib/xulrunner-addons, /usr/lib/firefox, /usr/lib/iceweasel and /usr/lib/midbrowser - update debian/links * Drop midbrowser dependency. This disappeared from Ubuntu a while ago - update debian/control * Enable quilt and add patch to enable building with the latest NPAPI headers - update debian/control - update debian/rules - add debian/patches/01_xulrunner-20.patch - add debian/patches/series * Don't use the Mozilla allocator by adding -DMOZ_NO_MOZALLOC to CXXFLAGS - update debian/rules -- Chris Coulson Mon, 14 Feb 2011 21:31:56 +0000 gecko-mediaplayer (0.9.9.2-1) unstable; urgency=low * Point fix release (LP: #523793): - Use proper NPERR and NPRES codes in the URLNotify and DestroyStream - Fix Apple HD Gallery site - Improved handling of .m3u playlists - Opera still has issues with apple.com/trailers sites, due to user agent issues. * Add chromium-browser (>> 4.0) as a compatible browser -- Cesare Tirabassi Sat, 27 Feb 2010 17:04:42 +0100 gecko-mediaplayer (0.9.9-1) unstable; urgency=low * New upstream release (LP: #86777, LP: #445767, Closes: #557761): - apple.com fixes * Replace Build-Depends on iceape-dev with xulrunner-dev (Closes: #555916) * No change bump of Standards-Version * Converted to source format 3.0 * Add opera (>= 9.50) as a compatible browser (LP: #230662) * Add patch to allow compilation for xulrunner 1.9.1.6 and clear up few warnings. http://code.google.com/p/gecko-mediaplayer/source/detail?r=361 -- Cesare Tirabassi Sat, 06 Feb 2010 14:36:38 +0000 gecko-mediaplayer (0.9.8-1) unstable; urgency=low * New upstream bug-fix only release: - update dependency on gnome-mplayer - fixed support for the apple.com trailers site - fixed support for video at PBS.org * Remove obsolete links to *.xpt files -- Cesare Tirabassi Sun, 20 Sep 2009 11:09:29 +0200 gecko-mediaplayer (0.9.7-1) unstable; urgency=low * New upstream release: - added a RAM parser - update dependency on gnome-mplayer - remove all patches, now applied upstream - add --with-gio to debian/rules * No change bump of Standards-Version to 3.8.3 * Change deprecated dh_clean -k to dh_prep (requires debhelper > 7) * Update long/short descriptions -- Cesare Tirabassi Fri, 21 Aug 2009 15:25:57 +0200 gecko-mediaplayer (0.9.6-1) unstable; urgency=low * New upstream release: - update dependency on gnome-mplayer - update debian/copyright with the newly added upstream source files - add debian/patches/fix_NPNVSupportsWindowless_missing.patch: horrible hack needed to fix FTBFS due to current headers not defining NPNVSupportsWindowless - add debian/patches/remove_rpath.patch: remove hardcoded rpath used by braindead libtool for 64 bits arches * Update debian/copyright in line with updated proposal specification * No change bump of Standards-Version to 3.8.1 * Changed Section to video in line with the new sections recently added to the Debian archive * Add quilt support in debian/rules and debian/control * Reformat debian/control to make Build-Depends more readable -- Cesare Tirabassi Sun, 07 Jun 2009 00:51:01 +0200 gecko-mediaplayer (0.9.5-1) unstable; urgency=low [Cesare Tirabassi] * New upstream release: - update dependency on gnome-mplayer [Reinhard Tartler] * debian/rules: replace copy of up-to-date config.{sub/guess} with symlinks -- Cesare Tirabassi Wed, 25 Mar 2009 13:22:08 +0100 gecko-mediaplayer (0.9.4-1) unstable; urgency=low * New upstream release: - update dependency on gnome-mplayer - debian/copyright: + src/np_entry.cpp, src/npn_gate.cpp, src/npp_gate.cpp are now licensed under the NPL-1.1 license + source header files have now an h extension + update packaging copyright date - remove quilt to keep lintian happy - add konqueror >= 4:4 to list of supported browsers -- Cesare Tirabassi Fri, 06 Feb 2009 21:57:53 +0100 gecko-mediaplayer (0.9.3-1) unstable; urgency=low * New upstream release - updated dependency on gnome-mplayer * Add Vcs-* fields to debian/control. -- Cesare Tirabassi Sat, 03 Jan 2009 10:12:33 +0100 gecko-mediaplayer (0.9.2-1) unstable; urgency=low * New upstream release - updated dependancy on gnome-mplayer -- Cesare Tirabassi Fri, 21 Nov 2008 19:43:03 +0100 gecko-mediaplayer (0.9.0-1) unstable; urgency=low * New upstream release: - remove avoid_libtool.patch, finally applied upstream - add --with-gconf flag to configure call in debian/rules - add --disable-schemas-install to configure call in debian/rules and add installation of schema file in debian/install - updated dependancy on gnome-mplayer * Add Xb-Npp-Description and Xb-Npp-File tags to debian/control * Reword Xb-Npp-Name tag in debian/control -- Cesare Tirabassi Fri, 31 Oct 2008 23:26:04 +0100 gecko-mediaplayer (0.8.0-1) unstable; urgency=low * New upstream release: - bump gnome-mplayer versioned dependency in debian/control - avoid explicitly passing GLIB_LIBS, gthread was removed upstream * Add configure as a PHONY target in debian/rules * Remove or-ed dependency on firefox-2 (LP: #272959) -- Cesare Tirabassi Mon, 29 Sep 2008 22:54:49 +0200 gecko-mediaplayer (0.7.0-1) unstable; urgency=low * New upstream release - debian/control: + correct pkg-config version in Build-Depends + bump gnome-mplayer version in Depends * debian/rules: - explicitly pass GLIB_LIBS to make to avoid linking against unused libraries - removed unused dh_installdirs call * Remove libtool usage for linking: - debian/patches/avoid_libtool.patch: avoid linking using libtool - debian/rules: remove call to chrpath - debian/control: remove B-D on chrpath -- Cesare Tirabassi Fri, 15 Aug 2008 22:12:47 +0200 gecko-mediaplayer (0.6.3-1) unstable; urgency=low * Initial release (Closes: #483551) -- Cesare Tirabassi Wed, 02 Jul 2008 15:21:38 +0200 debian/copyright0000644000000000000000000006761612210053732011134 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Gecko Media Player Upstream-Contact: Kevin DeKorte Source: http://code.google.com/p/gecko-mediaplayer/ Files: * po/*.po Copyright: © 2006-2011 Kevin DeKorte License: GPL-2+ Files: src/*.cpp src/*.h Copyright: © 1998 Netscape Communications Corporation License: MPL-1.1 or GPL-2+ or LGPL-2.1+ Files: debian/* Copyright: © 2009 Cesare Tirabassi Copyright 2012-2013 Sebastian Ramacher License: GPL-2+ Files: po/Makefile.in.in Copyright: © 1995-1997 by Ulrich Drepper License: other License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. License: other This file can be copied and used freely without restrictions. It can be used in projects which are not available under the GNU General Public License but which still want to provide support for the GNU gettext functionality. Please note that the actual code is *not* freely available. License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. . You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. . Full license text: /usr/share/common-licenses/LGPL-2.1 License: MPL-1.1 MOZILLA PUBLIC LICENSE Version 1.1 . --------------- . 1. Definitions. . 1.0.1. "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. . 1.1. "Contributor" means each entity that creates or contributes to the creation of Modifications. . 1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. . 1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. . 1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. . 1.5. "Executable" means Covered Code in any form other than Source Code. . 1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. . 1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. . 1.8. "License" means this document. . 1.8.1. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. . 1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. . B. Any new file that contains any part of the Original Code or previous Modifications. . 1.10. "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. . 1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. . 1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. . 1.12. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. . 2. Source Code License. . 2.1. The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and . (b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). . (c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. . (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. . 2.2. Contributor Grant. Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license . (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and . (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). . (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. . (d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. . 3. Distribution Obligations. . 3.1. Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. . 3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. . 3.3. Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. . 3.4. Intellectual Property Matters (a) Third Party Claims. If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. . (b) Contributor APIs. If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. . (c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. . 3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. . 3.6. Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. . 3.7. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. . 4. Inability to Comply Due to Statute or Regulation. . If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. . 5. Application of this License. . This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. . 6. Versions of the License. . 6.1. New Versions. Netscape Communications Corporation ("Netscape") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. . 6.2. Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. . 6.3. Derivative Works. If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) . 7. DISCLAIMER OF WARRANTY. . COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. . 8. TERMINATION. . 8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. . 8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: . (a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. . (b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. . 8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. . 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. . 9. LIMITATION OF LIABILITY. . UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. . 10. U.S. GOVERNMENT END USERS. . The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. . 11. MISCELLANEOUS. . This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. . 12. RESPONSIBILITY FOR CLAIMS. . As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. . 13. MULTIPLE-LICENSED CODE. . Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. . EXHIBIT A -Mozilla Public License. . ``The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ . Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. . The Original Code is ______________________________________. . The Initial Developer of the Original Code is ________________________. Portions created by ______________________ are Copyright (C) ______ _______________________. All Rights Reserved. . Contributor(s): ______________________________________. . Alternatively, the contents of this file may be used under the terms of the _____ license (the "[___] License"), in which case the provisions of [______] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [____] License and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [___] License. If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the [___] License." . [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.]