--- mplayerplug-in-3.55.orig/po/Makefile.in +++ mplayerplug-in-3.55/po/Makefile.in @@ -29,7 +29,7 @@ done clean: - rm -f core core.* *.old.po *.mo *.pot sjiscorr + rm -f core core.* *.old.po *.mo *.pot sjiscorr Makefile distclean: clean --- mplayerplug-in-3.55.orig/debian/patches/00_install-sh.patch +++ mplayerplug-in-3.55/debian/patches/00_install-sh.patch @@ -0,0 +1,327 @@ +diff -Nur mplayerplug-in-3.40/install-sh mplayerplug-in-3.40.new/install-sh +--- mplayerplug-in-3.40/install-sh 1969-12-31 19:00:00.000000000 -0500 ++++ mplayerplug-in-3.40.new/install-sh 2007-05-16 11:26:11.000000000 -0400 +@@ -0,0 +1,323 @@ ++#!/bin/sh ++# install - install a program, script, or datafile ++ ++scriptversion=2005-05-14.22 ++ ++# This originates from X11R5 (mit/util/scripts/install.sh), which was ++# later released in X11R6 (xc/config/util/install.sh) with the ++# following copyright and license. ++# ++# Copyright (C) 1994 X Consortium ++# ++# Permission is hereby granted, free of charge, to any person obtaining a copy ++# of this software and associated documentation files (the "Software"), to ++# deal in the Software without restriction, including without limitation the ++# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or ++# sell copies of the Software, and to permit persons to whom the Software is ++# furnished to do so, subject to the following conditions: ++# ++# The above copyright notice and this permission notice shall be included in ++# all copies or substantial portions of the Software. ++# ++# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ++# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ++# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ++# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN ++# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- ++# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ++# ++# Except as contained in this notice, the name of the X Consortium shall not ++# be used in advertising or otherwise to promote the sale, use or other deal- ++# ings in this Software without prior written authorization from the X Consor- ++# tium. ++# ++# ++# FSF changes to this file are in the public domain. ++# ++# Calling this script install-sh is preferred over install.sh, to prevent ++# `make' implicit rules from creating a file called install from it ++# when there is no Makefile. ++# ++# This script is compatible with the BSD install script, but was written ++# from scratch. It can only install one file at a time, a restriction ++# shared with many OS's install programs. ++ ++# set DOITPROG to echo to test this script ++ ++# Don't use :- since 4.3BSD and earlier shells don't like it. ++doit="${DOITPROG-}" ++ ++# put in absolute paths if you don't have them in your path; or use env. vars. ++ ++mvprog="${MVPROG-mv}" ++cpprog="${CPPROG-cp}" ++chmodprog="${CHMODPROG-chmod}" ++chownprog="${CHOWNPROG-chown}" ++chgrpprog="${CHGRPPROG-chgrp}" ++stripprog="${STRIPPROG-strip}" ++rmprog="${RMPROG-rm}" ++mkdirprog="${MKDIRPROG-mkdir}" ++ ++chmodcmd="$chmodprog 0755" ++chowncmd= ++chgrpcmd= ++stripcmd= ++rmcmd="$rmprog -f" ++mvcmd="$mvprog" ++src= ++dst= ++dir_arg= ++dstarg= ++no_target_directory= ++ ++usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE ++ or: $0 [OPTION]... SRCFILES... DIRECTORY ++ or: $0 [OPTION]... -t DIRECTORY SRCFILES... ++ or: $0 [OPTION]... -d DIRECTORIES... ++ ++In the 1st form, copy SRCFILE to DSTFILE. ++In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. ++In the 4th, create DIRECTORIES. ++ ++Options: ++-c (ignored) ++-d create directories instead of installing files. ++-g GROUP $chgrpprog installed files to GROUP. ++-m MODE $chmodprog installed files to MODE. ++-o USER $chownprog installed files to USER. ++-s $stripprog installed files. ++-t DIRECTORY install into DIRECTORY. ++-T report an error if DSTFILE is a directory. ++--help display this help and exit. ++--version display version info and exit. ++ ++Environment variables override the default commands: ++ CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG ++" ++ ++while test -n "$1"; do ++ case $1 in ++ -c) shift ++ continue;; ++ ++ -d) dir_arg=true ++ shift ++ continue;; ++ ++ -g) chgrpcmd="$chgrpprog $2" ++ shift ++ shift ++ continue;; ++ ++ --help) echo "$usage"; exit $?;; ++ ++ -m) chmodcmd="$chmodprog $2" ++ shift ++ shift ++ continue;; ++ ++ -o) chowncmd="$chownprog $2" ++ shift ++ shift ++ continue;; ++ ++ -s) stripcmd=$stripprog ++ shift ++ continue;; ++ ++ -t) dstarg=$2 ++ shift ++ shift ++ continue;; ++ ++ -T) no_target_directory=true ++ shift ++ continue;; ++ ++ --version) echo "$0 $scriptversion"; exit $?;; ++ ++ *) # When -d is used, all remaining arguments are directories to create. ++ # When -t is used, the destination is already specified. ++ test -n "$dir_arg$dstarg" && break ++ # Otherwise, the last argument is the destination. Remove it from $@. ++ for arg ++ do ++ if test -n "$dstarg"; then ++ # $@ is not empty: it contains at least $arg. ++ set fnord "$@" "$dstarg" ++ shift # fnord ++ fi ++ shift # arg ++ dstarg=$arg ++ done ++ break;; ++ esac ++done ++ ++if test -z "$1"; then ++ if test -z "$dir_arg"; then ++ echo "$0: no input file specified." >&2 ++ exit 1 ++ fi ++ # It's OK to call `install-sh -d' without argument. ++ # This can happen when creating conditional directories. ++ exit 0 ++fi ++ ++for src ++do ++ # Protect names starting with `-'. ++ case $src in ++ -*) src=./$src ;; ++ esac ++ ++ if test -n "$dir_arg"; then ++ dst=$src ++ src= ++ ++ if test -d "$dst"; then ++ mkdircmd=: ++ chmodcmd= ++ else ++ mkdircmd=$mkdirprog ++ fi ++ else ++ # Waiting for this to be detected by the "$cpprog $src $dsttmp" command ++ # might cause directories to be created, which would be especially bad ++ # if $src (and thus $dsttmp) contains '*'. ++ if test ! -f "$src" && test ! -d "$src"; then ++ echo "$0: $src does not exist." >&2 ++ exit 1 ++ fi ++ ++ if test -z "$dstarg"; then ++ echo "$0: no destination specified." >&2 ++ exit 1 ++ fi ++ ++ dst=$dstarg ++ # Protect names starting with `-'. ++ case $dst in ++ -*) dst=./$dst ;; ++ esac ++ ++ # If destination is a directory, append the input filename; won't work ++ # if double slashes aren't ignored. ++ if test -d "$dst"; then ++ if test -n "$no_target_directory"; then ++ echo "$0: $dstarg: Is a directory" >&2 ++ exit 1 ++ fi ++ dst=$dst/`basename "$src"` ++ fi ++ fi ++ ++ # This sed command emulates the dirname command. ++ dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'` ++ ++ # Make sure that the destination directory exists. ++ ++ # Skip lots of stat calls in the usual case. ++ if test ! -d "$dstdir"; then ++ defaultIFS=' ++ ' ++ IFS="${IFS-$defaultIFS}" ++ ++ oIFS=$IFS ++ # Some sh's can't handle IFS=/ for some reason. ++ IFS='%' ++ set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'` ++ shift ++ IFS=$oIFS ++ ++ pathcomp= ++ ++ while test $# -ne 0 ; do ++ pathcomp=$pathcomp$1 ++ shift ++ if test ! -d "$pathcomp"; then ++ $mkdirprog "$pathcomp" ++ # mkdir can fail with a `File exist' error in case several ++ # install-sh are creating the directory concurrently. This ++ # is OK. ++ test -d "$pathcomp" || exit ++ fi ++ pathcomp=$pathcomp/ ++ done ++ fi ++ ++ if test -n "$dir_arg"; then ++ $doit $mkdircmd "$dst" \ ++ && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \ ++ && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \ ++ && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \ ++ && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; } ++ ++ else ++ dstfile=`basename "$dst"` ++ ++ # Make a couple of temp file names in the proper directory. ++ dsttmp=$dstdir/_inst.$$_ ++ rmtmp=$dstdir/_rm.$$_ ++ ++ # Trap to clean up those temp files at exit. ++ trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 ++ trap '(exit $?); exit' 1 2 13 15 ++ ++ # Copy the file name to the temp name. ++ $doit $cpprog "$src" "$dsttmp" && ++ ++ # and set any options; do chmod last to preserve setuid bits. ++ # ++ # If any of these fail, we abort the whole thing. If we want to ++ # ignore errors from any of these, just make sure not to ignore ++ # errors from the above "$doit $cpprog $src $dsttmp" command. ++ # ++ { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \ ++ && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \ ++ && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \ ++ && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } && ++ ++ # Now rename the file to the real destination. ++ { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \ ++ || { ++ # The rename failed, perhaps because mv can't rename something else ++ # to itself, or perhaps because mv is so ancient that it does not ++ # support -f. ++ ++ # Now remove or move aside any old file at destination location. ++ # We try this two ways since rm can't unlink itself on some ++ # systems and the destination file might be busy for other ++ # reasons. In this case, the final cleanup might fail but the new ++ # file should still install successfully. ++ { ++ if test -f "$dstdir/$dstfile"; then ++ $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \ ++ || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \ ++ || { ++ echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 ++ (exit 1); exit 1 ++ } ++ else ++ : ++ fi ++ } && ++ ++ # Now rename the file to the real destination. ++ $doit $mvcmd "$dsttmp" "$dstdir/$dstfile" ++ } ++ } ++ fi || { (exit 1); exit 1; } ++done ++ ++# The final little trick to "correctly" pass the exit status to the exit trap. ++{ ++ (exit 0); exit 0 ++} ++ ++# Local variables: ++# eval: (add-hook 'write-file-hooks 'time-stamp) ++# time-stamp-start: "scriptversion=" ++# time-stamp-format: "%:y-%02m-%02d.%02H" ++# time-stamp-end: "$" ++# End: --- mplayerplug-in-3.55.orig/debian/copyright +++ mplayerplug-in-3.55/debian/copyright @@ -0,0 +1,11 @@ +This package was debianized by Rene Engelhard on +Thu, 5 Feb 2004 00:59:26 +0100. + +It was downloaded from http://mplayerplug-in.sf.net + +Upstream Author: Kevin DeKorte + +Copyright: + +GPL, in Debian systems the full text of the GPL could be found under +/usr/share/common-licenses/GPL --- mplayerplug-in-3.55.orig/debian/watch +++ mplayerplug-in-3.55/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://sf.net/mplayerplug-in/mplayerplug-in-(\d+\.\d+)\.tar\.gz --- mplayerplug-in-3.55.orig/debian/docs +++ mplayerplug-in-3.55/debian/docs @@ -0,0 +1,2 @@ +README +TODO --- mplayerplug-in-3.55.orig/debian/control +++ mplayerplug-in-3.55/debian/control @@ -0,0 +1,20 @@ +Source: mplayerplug-in +Section: graphics +Priority: extra +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Ari Pollak +Build-Depends: debhelper (>= 4.1.0), cdbs, libxul-dev, libx11-dev, libxpm-dev, libxt-dev, libxext-dev, pkg-config, libgtk2.0-dev +Standards-Version: 3.6.1 + +Package: mozilla-mplayer +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, firefox-3.0 | firefox-2 | xulrunner | seamonkey-browser | galeon | epiphany-browser | konqueror, mplayer (>= 1.0~rc2) | mplayer-nogui (>= 1.0~rc2) +Conflicts: mplayerplug-in +Provides: mplayerplug-in +Replaces: mplayerplug-in +Xb-Npp-Applications: ec8030f7-c20a-464f-9b0e-13a3a9e97384, 92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a +Xb-Npp-Name: MPlayer-Plugin for Mozilla +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, audio/midi, 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: MPlayer-Plugin for Mozilla + mplayerplug-in is a Mozilla browser plugin to allow playing embedded + movies on web pages using mplayer. --- mplayerplug-in-3.55.orig/debian/compat +++ mplayerplug-in-3.55/debian/compat @@ -0,0 +1 @@ +4 --- mplayerplug-in-3.55.orig/debian/rules +++ mplayerplug-in-3.55/debian/rules @@ -0,0 +1,27 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/class/autotools-vars.mk + +export LOCALEDIR=debian/mozilla-mplayer/usr/share/locale + +LDFLAGS = -Wl,--as-needed +#DEB_CONFIGURE_EXTRA_FLAGS := --with-gecko-sdk=/usr + +DEB_MAKE_INSTALL_TARGET = install DESTDIR=$(CURDIR)/debian/mozilla-mplayer LOCALEDIR=/usr/share/locale &&\ + mkdir -p debian/mozilla-mplayer/etc && \ + install -m644 mplayerplug-in.conf debian/mozilla-mplayer/etc/mplayerplug-in.conf && \ + install -m644 mplayerplug-in.types debian/mozilla-mplayer/etc/mplayerplug-in.types + +binary-post-install/mozilla-mplayer:: + rm -f debian/mozilla-mplayer/etc/*~ + chmod ugo-x debian/mozilla-mplayer/usr/lib/mozilla/plugins/*.xpt + if [ ! -s debian/mozilla-mplayer/usr/share/doc/mozilla-mplayer/TODO ]; \ + then \ + rm debian/mozilla-mplayer/usr/share/doc/mozilla-mplayer/TODO; \ + fi + +clean:: + rm -f po/*.mo --- mplayerplug-in-3.55.orig/debian/changelog +++ mplayerplug-in-3.55/debian/changelog @@ -0,0 +1,555 @@ +mplayerplug-in (3.55-1ubuntu1~hardy1) hardy-backports; urgency=low + + * Automated backport upload; no source changes. + + -- Scott Kitterman Fri, 25 Jul 2008 09:20:47 +0100 + +mplayerplug-in (3.55-1ubuntu1) intrepid; urgency=low + + * Merge from Debian unstable. Remaining Ubuntu changes: + - debian/control + + replace iceweasel with firefox3.0 | firefox 2 + + replace iceape-browser with seamonkey-browser + + add Depends on | mplayer-nogui (>= 1.0~rc2) + + add Xb-Npp-xxx tags accordingly to "firefox distro add-on support" + spec + + Modify Maintainer value to match the DebianMaintainerField + specification. + - debian/mozilla-mplayer.links: + + add firefox and xulrunner symlinks + * Replace iceape-dev b-d with libxul-dev. + * Add xulrunner in lists of possible "browsers". + * Following upstream suggestion, change required mplayer version + to be (>= 1.0~rc2). + + -- Cesare Tirabassi Sun, 06 Jul 2008 23:35:53 +0200 + +mplayerplug-in (3.55-1) unstable; urgency=low + + * New upstream release + * Fix playing .asx files with playlist (Closes: #486278) + + -- Ari Pollak Sat, 05 Jul 2008 21:14:20 -0400 + +mplayerplug-in (3.50-2) unstable; urgency=low + + * Build-depend on iceape-dev instead of libxul-dev for strange xulrunner + transition (Closes: #480821) + + -- Ari Pollak Tue, 13 May 2008 21:01:53 -0400 + +mplayerplug-in (3.50-1ubuntu3) intrepid; urgency=low + + * Add support for Firefox 2 (LP: #228044): + - debian/control: + change Depends from firefox to firefox-3.0 | firefox-2 + - mozilla-mplayer.links: + already contains symlinks in /usr/lib/firefox/plugins + + -- Cesare Tirabassi Thu, 08 May 2008 13:37:30 +0200 + +mplayerplug-in (3.50-1ubuntu2) hardy; urgency=low + + * Added support for Firefox 3 xulrunner plugin architecture by linking + plugins to /usr/lib/xulrunner-addons/plugins. (LP: #193812) + - updated debian/mozilla-mplayer.links + + -- Jared Greenwald Mon, 17 Mar 2008 09:49:19 -0400 + +mplayerplug-in (3.50-1ubuntu1) hardy; urgency=low + + * Merge from debian unstable (LP: #174014), remaining changes: + - debian/control: + + replace iceweasel with firefox + + replace iceape with mozilla + + add Depends on | mplayer-nogui + + add Xb-Npp-xxx tags accordingly to "firefox distro add-on support" + spec + + Modify Maintainer value to match Debian-Maintainer-Field Spec + - debian/mozilla-mplayer.links: + + remove mozilla->iceape symlink + + fix symlinks for dvx plugin + + replace iceweasel with firefox + + -- Nicolas Valcárcel Tue, 04 Dec 2007 12:09:07 -0500 + +mplayerplug-in (3.50-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Sun, 02 Dec 2007 13:08:12 -0500 + +mplayerplug-in (3.45-1ubuntu1) hardy; urgency=low + + * Merge from debian unstable, remaining changes: + - debian/control: + + replace iceweasel with firefox + + replace iceape with mozilla + + add Depends on | mplayer-nogui + + add Xb-Npp-xxx tags accordingly to "firefox distro add-on support" spec + + Modify Maintainer value to match Debian-Maintainer-Field Spec + - debian/mozilla-mplayer.links: + + remove mozilla->iceape symlink + + fix symlinks for dvx plugin + + replace iceweasel with firefox + + -- Nicolas Valcárcel Scerpella (aka nxvl) Sat, 03 Nov 2007 15:49:40 -0500 + +mplayerplug-in (3.45-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Mon, 06 Aug 2007 11:11:50 -0400 + +mplayerplug-in (3.40-5ubuntu5) gutsy; urgency=low + + * debian/mozilla-mplayer.links: fixed symlinks for dvx plugin (Closes LP: + 112055) + + -- Harald Sitter Fri, 17 Aug 2007 20:58:44 +0200 + +mplayerplug-in (3.40-5ubuntu4) gutsy; urgency=low + + * debian/control: eliminate duplicate mime-type 'audio/mpeg' in + Xb-Npp-MimeType: control section. + + -- Alexander Sack Wed, 01 Aug 2007 18:25:01 +0000 + +mplayerplug-in (3.40-5ubuntu3) gutsy; urgency=low + + * debian/control: added Xb-Npp-xxx tags accordingly to "firefox distro + add-on suport" spec, + (https://blueprints.launchpad.net/ubuntu/+spec/firefox-distro-addon-support) + + Signed-Off-By: Alexander Sack + + -- Hilario Montoliu Wed, 4 Jul 2007 11:35:52 +0200 + +mplayerplug-in (3.40-5ubuntu2) gutsy; urgency=low + + * Depends on mplayer | mplayer-nogui instead of just mplayer (LP: #97218) + + -- Adrien Cunin Fri, 22 Jun 2007 17:30:44 +0200 + +mplayerplug-in (3.40-5ubuntu1) gutsy; urgency=low + + * Merge from Debian unstable. Remaining Ubuntu changes: + - debian/{control,mozilla-mplayer.links}: s/iceweasel/firefox/ + - debian/control: s/iceape/mozilla/ + - debian/mozilla-mplayer.links: removed mozilla->iceape symlink + - Modify Maintainer value to match Debian-Maintainer-Field Spec + + -- Andrea Veri Thu, 14 Jun 2007 11:34:09 +0200 + +mplayerplug-in (3.40-5) unstable; urgency=low + + * Fix symlinks for DivX plugin (Closes: #428696) + + -- Ari Pollak Wed, 13 Jun 2007 17:39:42 -0400 + +mplayerplug-in (3.40-4ubuntu1) gutsy; urgency=low + + * Merge from Debian unstable. Remaining Ubuntu changes: + - debian/{control,mozilla-mplayer.links}: s/iceweasel/firefox/ + - debian/control: s/iceape/mozilla/ + - debian/mozilla-mplayer.links: removed mozilla->iceape symlinks + * Modify Maintainer value to match Debian-Maintainer-Field Spec + + -- Adrien Cunin Mon, 21 May 2007 21:16:39 +0200 + +mplayerplug-in (3.40-4) unstable; urgency=low + + * 00_install-sh.patch: + - Include install-sh from automake-1.9 (Closes: #424581) + + -- Ari Pollak Wed, 16 May 2007 11:28:22 -0400 + +mplayerplug-in (3.40-3) unstable; urgency=low + + * Attempt to fix a null pointer dereference when going through a playlist + (Closes: #421177) + + -- Ari Pollak Fri, 27 Apr 2007 23:36:40 -0400 + +mplayerplug-in (3.40-2) unstable; urgency=low + + * Upload to unstable + + -- Ari Pollak Tue, 10 Apr 2007 00:16:49 -0400 + +mplayerplug-in (3.40-1) experimental; urgency=low + + * New upstream release + + -- Ari Pollak Sun, 25 Mar 2007 01:06:12 -0400 + +mplayerplug-in (3.35-1) experimental; urgency=low + + * New upstream release (Closes: #405222) + + -- Ari Pollak Thu, 8 Mar 2007 22:04:39 -0500 + +mplayerplug-in (3.31+main-1ubuntu1) feisty; urgency=low + + * Merge from Debian unstable. Ubuntu change: + - debian/{control,mozilla-mplayer.links}: s/iceweasel/firefox/ + * debian/control: s/iceape/mozilla/ + * debian/mozilla-mplayer.links: removed mozilla->iceape symlinks + + -- Adrien Cunin Tue, 16 Jan 2007 23:09:42 +0100 + +mplayerplug-in (3.31+main-1) unstable; urgency=low + + * Fake a new upstream version number so that the pristine tarball + shows up properly in main. No other changes. + + -- Ari Pollak Fri, 29 Dec 2006 11:18:34 -0500 + +mplayerplug-in (3.31-8) unstable; urgency=low + + * Optionally depend on iceape-browser (Closes: #401770) + + -- Ari Pollak Tue, 5 Dec 2006 15:32:47 -0500 + +mplayerplug-in (3.31-7) unstable; urgency=low + + * Add support for iceape-browser (Closes: #401548) + + -- Ari Pollak Mon, 4 Dec 2006 11:59:58 -0500 + +mplayerplug-in (3.31-6ubuntu1) feisty; urgency=low + + * debian/{control,mozilla-mplayer.links}: s/iceweasel/firefox/ + (Closes Ubuntu: #73103). + * Does not install mplayerplug-in-gmp symlinks + (Closes Ubuntu: #71849). + + -- Daniel T Chen Tue, 28 Nov 2006 17:12:41 -0500 + +mplayerplug-in (3.31-6) unstable; urgency=low + + * Symlink divx plugin in iceweasel directory + + -- Ari Pollak Sat, 25 Nov 2006 19:41:59 -0500 + +mplayerplug-in (3.31-5) unstable; urgency=low + + * Update package to work with iceweasel (Closes: #399547) + + -- Ari Pollak Tue, 21 Nov 2006 11:37:48 -0500 + +mplayerplug-in (3.31-4) unstable; urgency=low + + * Add back libxt-dev to build-depends; fixes FTBFS + + -- Ari Pollak Sun, 12 Nov 2006 17:40:09 -0500 + +mplayerplug-in (3.31-3) unstable; urgency=low + + * Build with xulrunner and remove support for mozilla again, since + mozilla will not be shipped with etch. + * Remove dangling links in /usr/lib/firefox/plugins (Closes: #387830) + * Build with LDFLAGS=-Wl,--as-needed + + -- Ari Pollak Sun, 12 Nov 2006 15:41:24 -0500 + +mplayerplug-in (3.31-2) unstable; urgency=low + + * Move to main, depend on version of mplayer in main (Closes: #395307) + + -- Ari Pollak Fri, 27 Oct 2006 18:42:55 -0400 + +mplayerplug-in (3.31-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Mon, 28 Aug 2006 20:42:46 -0400 + +mplayerplug-in (3.30-1) unstable; urgency=low + + * New upstream release + * Apply patch from upstream to fix media playing when LIRC is enabled in + mplayer + + -- Ari Pollak Sun, 6 Aug 2006 14:28:57 -0400 + +mplayerplug-in (3.25-7) unstable; urgency=low + + * This is part 7834783 in the neverending series of trying to get + the dependencies as thin as possible without breaking things. + Build against mozilla-dev, not libxul-dev, since apparently + the newer headers make mplayerplug-in not work with Mozilla. + Hopefully this should make it work on all Gecko-based browsers + without changing install-time dependencies. + (Closes: #368783) + + -- Ari Pollak Tue, 30 May 2006 19:29:57 -0400 + +mplayerplug-in (3.25-6) unstable; urgency=low + + * Add | mplayer-powerpc | mplayer-g4 to Depends (Closes: #365508) + + -- Ari Pollak Tue, 25 Apr 2006 18:01:44 -0400 + +mplayerplug-in (3.25-5) unstable; urgency=low + + * Build against xulrunner headers, but don't link with xulrunner libraries, + and remove dependency on mozilla-browser | firefox + + -- Ari Pollak Tue, 25 Apr 2006 17:37:57 -0400 + +mplayerplug-in (3.25-4) unstable; urgency=low + + * Add /usr/lib/firefox to the rpath as well (Closes: #362520) + + -- Ari Pollak Sun, 16 Apr 2006 00:57:46 -0400 + +mplayerplug-in (3.25-3) unstable; urgency=low + + * Link the plugin with an rpath of /usr/lib/mozilla so that + it doesn't try to use xulrunner's libraries. (Closes: #354837, #362432 + + -- Ari Pollak Thu, 13 Apr 2006 13:38:52 -0400 + +mplayerplug-in (3.25-2) unstable; urgency=low + + * Fix a typo in the Depends, mplayer-nogui wasn't being accepted. + + -- Ari Pollak Thu, 13 Apr 2006 09:28:04 -0400 + +mplayerplug-in (3.25-1) unstable; urgency=low + + * New upstream release + * Re-add dependency on mozilla-browser (Closes: #354131) + * Change mplayer-* dependencies to mplayer | mplayer-nogui + + -- Ari Pollak Wed, 12 Apr 2006 15:55:26 -0400 + +mplayerplug-in (3.21-3) unstable; urgency=low + + * Apply patch from upstream author to fix playing with newer mplayer + CVS versions (Closes: #359914) + + -- Ari Pollak Thu, 30 Mar 2006 11:54:13 -0500 + +mplayerplug-in (3.21-2) unstable; urgency=low + + * Add konqueror, galeon, and epiphany-browser as possible depends + (Closes: 354131) + + -- Ari Pollak Wed, 1 Mar 2006 15:18:30 -0500 + +mplayerplug-in (3.21-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Sun, 12 Feb 2006 18:24:00 -0500 + +mplayerplug-in (3.20-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Fri, 3 Feb 2006 13:15:52 -0500 + +mplayerplug-in (3.17-1) unstable; urgency=low + + * New upstream release + * Add watch file again, thanks James Vega for the hint (Closes: #341333) + + -- Ari Pollak Wed, 7 Dec 2005 21:21:08 -0500 + +mplayerplug-in (3.16-3) unstable; urgency=low + + * Add symlinks to /usr/lib/firefox/plugins since we now support + the new firefox package. (Closes: #342315) + + -- Ari Pollak Sun, 4 Dec 2005 22:35:55 -0500 + +mplayerplug-in (3.16-2) unstable; urgency=low + + * Add |ed dependency on firefox (Closes: #341994) + * Remove backup ~ files from /etc in package (Closes: #341359) + + -- Ari Pollak Sun, 4 Dec 2005 20:05:49 -0500 + +mplayerplug-in (3.16-1) unstable; urgency=low + + * New upstream release + - Should include Martin Samuelsson's fixes for Real streams + (Closes: #340507) + * Remove debian/watch file, uscan can't handle SourceForge links + + -- Ari Pollak Mon, 28 Nov 2005 16:20:17 -0500 + +mplayerplug-in (3.15-1) unstable; urgency=low + + * Rene no longer has time to maintain this package, so I'm adopting it. + Thanks for his work in maintaining previous versions. + * New upstream release (Closes: #332574) + - This should fix an annoying problem where navigating away from a page + with an embedded movie handled by mplayerplug-in would freeze + Mozilla/Firefox. + - This should fix the major crashing problem when moving away from + a page with an embedded movie (Closes: #326507, #256643) + * Added debian/watch file + + -- Ari Pollak Tue, 8 Nov 2005 10:09:25 -0500 + +mplayerplug-in (3.05-1) unstable; urgency=low + + * New upstream release (closes: #321527) + - fixes ways how config files are read (closes: #321256) + + -- Rene Engelhard Sat, 6 Aug 2005 15:10:28 +0200 + +mplayerplug-in (3.01-1) unstable; urgency=low + + * New upstream release + - builds with g++-4.0 (closes: #297249) + * build with gtk2 UI (closes: #280060) + * fix de.po encoding (closes: #313968), thanks Jens Seidel + * description update + + -- Rene Engelhard Wed, 27 Jul 2005 21:09:15 +0200 + +mplayerplug-in (2.85-1) unstable; urgency=low + + * New upstream release + * Depend on the various mplayer flavours >= 1.0-pre5 + * fix LOCALEDIR + + -- Rene Engelhard Wed, 22 Jun 2005 20:12:51 +0200 + +mplayerplug-in (2.80-2) unstable; urgency=low + + * rebuilt without experimentals libgcc1, upload new source because of katie + bug... + + -- Rene Engelhard Sun, 1 May 2005 00:44:55 +0200 + +mplayerplug-in (2.80-1) unstable; urgency=low + + * New upstream release + + -- Rene Engelhard Thu, 10 Mar 2005 01:49:35 +0100 + +mplayerplug-in (2.75-1) unstable; urgency=low + + * New upstream release (closes: #287390) + * allow mplayer-amd64 (closes: #278185) + + -- Rene Engelhard Wed, 29 Dec 2004 18:27:49 +0100 + +mplayerplug-in (2.70-1) unstable; urgency=low + + * New upstream release + + -- Rene Engelhard Wed, 6 Oct 2004 22:29:48 +0200 + +mplayerplug-in (2.66-2) unstable; urgency=low + + * add -I/usr/include/mozilla to Makefile.in to fix build with newer + mozillas until mozillas pkg-config info file is fixed + + -- Rene Engelhard Sun, 18 Jul 2004 22:26:29 +0200 + +mplayerplug-in (2.66-1) unstable; urgency=low + + * New upstream release + * remove references to mozilla-snapshot and mozilla-firebird from + debian/control + + -- Rene Engelhard Sun, 20 Jun 2004 16:01:34 +0200 + +mplayerplug-in (2.65-1) unstable; urgency=low + + * New upstream release + - closes: #247094: mozilla-mplayer: Video stream unvisible due to big + blank rectangle display downloading + * install symlink for mozilla-firefox (closes: #251437) + + -- Rene Engelhard Fri, 18 Jun 2004 23:05:19 +0200 + +mplayerplug-in (2.60-1) unstable; urgency=low + + * New upstream release + + -- Rene Engelhard Thu, 22 Apr 2004 04:52:17 +0200 + +mplayerplug-in (2.50-1) unstable; urgency=low + + * New upstream release + * install mplayerplug-in.types + + -- Rene Engelhard Fri, 26 Mar 2004 17:10:36 +0100 + +mplayerplug-in (2.45-5) unstable; urgency=low + + * The "how the fuck did it build in this chroot?" release. + * we need pkg-config in Build-Depends: for the mozilla-stuff... + + -- Rene Engelhard Fri, 26 Mar 2004 04:35:59 +0100 + +mplayerplug-in (2.45-4) unstable; urgency=low + + * some programs wanting to use this plugin are not gtk(2), so + just use --enable-x; remove pkg-config and gtk builddeps; + will _probably_ create -x and -gtk2 packages or somesuch... + * Depends: [...] | mplayer-586 (>= 0.92) | [...] (closes: #239496) + * move config file to right location (closes: #238545) + + -- Rene Engelhard Fri, 26 Mar 2004 02:32:04 +0100 + +mplayerplug-in (2.45-3) unstable; urgency=low + + * Depends: [...] | mplayer-nogui (>= 0.92) (closes: #237259) + + -- Rene Engelhard Wed, 10 Mar 2004 19:54:45 +0100 + +mplayerplug-in (2.45-2) unstable; urgency=low + + * add pkg-config and libgtk2.0-dev to Build-Depends: + + -- Rene Engelhard Mon, 8 Mar 2004 22:10:08 +0100 + +mplayerplug-in (2.45-1) unstable; urgency=low + + * New upstream release + * Depend on (>= 0.92) of the mplayer-* packages + * fix clean + + -- Rene Engelhard Thu, 4 Mar 2004 06:50:04 +0100 + +mplayerplug-in (2.11-2) unstable; urgency=low + + * add mplayer-powerpc (>= 0.90) | mplayer-g4 (>= 0.90) + to Depends:, thanks Wolfram Quester (closes: #234945) + + -- Rene Engelhard Thu, 26 Feb 2004 22:01:01 +0100 + +mplayerplug-in (2.11-1) unstable; urgency=low + + * New upstream release (closes: #234083) + * rename binary package to mozilla-mplayer (closes: #234196, #233802) + * add mozilla-dev to Build-Depends:, Depend on mozilla-browser | + mozilla-browser-snapshot | mozilla-firebird | mozilla-firefox + * Replaces:/Conflicts:/Provides: mplayerplug-in + * fix thinko: s/common/custom/ in Depends:, thanks Robin Verduijn + again (closes: #233779) + + -- Rene Engelhard Wed, 25 Feb 2004 00:46:57 +0100 + +mplayerplug-in (1.2-2) unstable; urgency=low + + * Depend on mplayer-{custom,386,686,k6,k7} (>= 0.90) as alternatives + to mplayer (>= 0.90) (closes: #233779), thanks Robin Verduijn and + Roberto Pariset + + -- Rene Engelhard Fri, 20 Feb 2004 12:29:25 +0100 + +mplayerplug-in (1.2-1) unstable; urgency=low + + * Initial Release. + + -- Rene Engelhard Thu, 5 Feb 2004 00:59:26 +0100 + --- mplayerplug-in-3.55.orig/debian/mozilla-mplayer.links +++ mplayerplug-in-3.55/debian/mozilla-mplayer.links @@ -0,0 +1,40 @@ +usr/lib/mozilla/plugins/mplayerplug-in.so usr/lib/iceape/plugins/mplayerplug-in.so +usr/lib/mozilla/plugins/mplayerplug-in.xpt usr/lib/iceape/plugins/mplayerplug-in.xpt +usr/lib/mozilla/plugins/mplayerplug-in-wmp.so usr/lib/iceape/plugins/mplayerplug-in-wmp.so +usr/lib/mozilla/plugins/mplayerplug-in-wmp.xpt usr/lib/iceape/plugins/mplayerplug-in-wmp.xpt +usr/lib/mozilla/plugins/mplayerplug-in-qt.so usr/lib/iceape/plugins/mplayerplug-in-qt.so +usr/lib/mozilla/plugins/mplayerplug-in-qt.xpt usr/lib/iceape/plugins/mplayerplug-in-qt.xpt +usr/lib/mozilla/plugins/mplayerplug-in-rm.so usr/lib/iceape/plugins/mplayerplug-in-rm.so +usr/lib/mozilla/plugins/mplayerplug-in-rm.xpt usr/lib/iceape/plugins/mplayerplug-in-rm.xpt +usr/lib/mozilla/plugins/mplayerplug-in-dvx.so usr/lib/iceape/plugins/mplayerplug-in-dvx.so +usr/lib/mozilla/plugins/mplayerplug-in-dvx.xpt usr/lib/iceape/plugins/mplayerplug-in-dvx.xpt +usr/lib/mozilla/plugins/mplayerplug-in.so usr/lib/iceweasel/plugins/mplayerplug-in.so +usr/lib/mozilla/plugins/mplayerplug-in.xpt usr/lib/iceweasel/plugins/mplayerplug-in.xpt +usr/lib/mozilla/plugins/mplayerplug-in-wmp.so usr/lib/iceweasel/plugins/mplayerplug-in-wmp.so +usr/lib/mozilla/plugins/mplayerplug-in-wmp.xpt usr/lib/iceweasel/plugins/mplayerplug-in-wmp.xpt +usr/lib/mozilla/plugins/mplayerplug-in-qt.so usr/lib/iceweasel/plugins/mplayerplug-in-qt.so +usr/lib/mozilla/plugins/mplayerplug-in-qt.xpt usr/lib/iceweasel/plugins/mplayerplug-in-qt.xpt +usr/lib/mozilla/plugins/mplayerplug-in-rm.so usr/lib/iceweasel/plugins/mplayerplug-in-rm.so +usr/lib/mozilla/plugins/mplayerplug-in-rm.xpt usr/lib/iceweasel/plugins/mplayerplug-in-rm.xpt +usr/lib/mozilla/plugins/mplayerplug-in-dvx.so usr/lib/iceweasel/plugins/mplayerplug-in-dvx.so +usr/lib/mozilla/plugins/mplayerplug-in-dvx.xpt usr/lib/iceweasel/plugins/mplayerplug-in-dvx.xpt +usr/lib/mozilla/plugins/mplayerplug-in.so usr/lib/firefox/plugins/mplayerplug-in.so +usr/lib/mozilla/plugins/mplayerplug-in.xpt usr/lib/firefox/plugins/mplayerplug-in.xpt +usr/lib/mozilla/plugins/mplayerplug-in-wmp.so usr/lib/firefox/plugins/mplayerplug-in-wmp.so +usr/lib/mozilla/plugins/mplayerplug-in-wmp.xpt usr/lib/firefox/plugins/mplayerplug-in-wmp.xpt +usr/lib/mozilla/plugins/mplayerplug-in-qt.so usr/lib/firefox/plugins/mplayerplug-in-qt.so +usr/lib/mozilla/plugins/mplayerplug-in-qt.xpt usr/lib/firefox/plugins/mplayerplug-in-qt.xpt +usr/lib/mozilla/plugins/mplayerplug-in-rm.so usr/lib/firefox/plugins/mplayerplug-in-rm.so +usr/lib/mozilla/plugins/mplayerplug-in-rm.xpt usr/lib/firefox/plugins/mplayerplug-in-rm.xpt +usr/lib/mozilla/plugins/mplayerplug-in-dvx.so usr/lib/firefox/plugins/mplayerplug-in-dvx.so +usr/lib/mozilla/plugins/mplayerplug-in-dvx.xpt usr/lib/firefox/plugins/mplayerplug-in-dvx.xpt +usr/lib/mozilla/plugins/mplayerplug-in.so usr/lib/xulrunner-addons/plugins/mplayerplug-in.so +usr/lib/mozilla/plugins/mplayerplug-in.xpt usr/lib/xulrunner-addons/plugins/mplayerplug-in.xpt +usr/lib/mozilla/plugins/mplayerplug-in-wmp.so usr/lib/xulrunner-addons/plugins/mplayerplug-in-wmp.so +usr/lib/mozilla/plugins/mplayerplug-in-wmp.xpt usr/lib/xulrunner-addons/plugins/mplayerplug-in-wmp.xpt +usr/lib/mozilla/plugins/mplayerplug-in-qt.so usr/lib/xulrunner-addons/plugins/mplayerplug-in-qt.so +usr/lib/mozilla/plugins/mplayerplug-in-qt.xpt usr/lib/xulrunner-addons/plugins/mplayerplug-in-qt.xpt +usr/lib/mozilla/plugins/mplayerplug-in-rm.so usr/lib/xulrunner-addons/plugins/mplayerplug-in-rm.so +usr/lib/mozilla/plugins/mplayerplug-in-rm.xpt usr/lib/xulrunner-addons/plugins/mplayerplug-in-rm.xpt +usr/lib/mozilla/plugins/mplayerplug-in-dvx.so usr/lib/xulrunner-addons/plugins/mplayerplug-in-dvx.so +usr/lib/mozilla/plugins/mplayerplug-in-dvx.xpt usr/lib/xulrunner-addons/plugins/mplayerplug-in-dvx.xpt