--- gnome-mplayer-0.9.9.2.orig/debian/install +++ gnome-mplayer-0.9.9.2/debian/install @@ -0,0 +1,2 @@ +debian/gnome-mplayer.xpm /usr/share/pixmaps +gnome-mplayer.schemas /usr/share/gconf/schemas --- gnome-mplayer-0.9.9.2.orig/debian/gnome-mplayer.manpages +++ gnome-mplayer-0.9.9.2/debian/gnome-mplayer.manpages @@ -0,0 +1 @@ +gnome-mplayer.1 --- gnome-mplayer-0.9.9.2.orig/debian/README.source +++ gnome-mplayer-0.9.9.2/debian/README.source @@ -0,0 +1,3 @@ +Please note that this package uses quilt for patch management. +Refer to /usr/share/doc/quilt/README.source (installed with the quilt package) +for further instructions on how to add/remove etc. patches. --- gnome-mplayer-0.9.9.2.orig/debian/gnome-mplayer.xpm +++ gnome-mplayer-0.9.9.2/debian/gnome-mplayer.xpm @@ -0,0 +1,68 @@ +/* XPM */ +static char * gnome_mplayer_xpm[] = { +"32 32 33 1", +" c None", +". c #323330", +"+ c #3E3D3B", +"@ c #4A4947", +"# c #3467A7", +"$ c #666867", +"% c #56708E", +"& c #3F74B0", +"* c #4E79B1", +"= c #588723", +"- c #6E7884", +"; c #6587AE", +"> c #828481", +", c #5D8CC1", +"' c #749E30", +") c #759C43", +"! c #7A91A5", +"~ c #8E908D", +"{ c #6996C9", +"] c #7E9B60", +"^ c #729ED1", +"/ c #8BB140", +"( c #96AD7F", +"_ c #96B957", +": c #AAACA9", +"< c #98BD4C", +"[ c #B7B9B6", +"} c #AFC09D", +"| c #AFCC76", +"1 c #C9CCC8", +"2 c #D9DAD7", +"3 c #E4E5E3", +"4 c #EDEFEC", +" ", +" ", +" ", +" .@@+------------.@@+ ", +" .>:+^^^^^^^^^^^^.~:@ ", +" .>:+^^^^^^^^^^^^.~:@ ", +" .>:+^^^^^^^^^^^^.~:@ ", +" .~:@^^^^^^^^^^^^.~:@ ", +" .~:@{{{{{{{{{{{^.~:@ ", +" .~:@{{{{{{{{{{{^.~:@ ", +" .~:@{{{{{{{{{{{!>~~>~ ", +" .~:@,,,,,,,,;![244443[ ", +" .~:@,,,,,,,;~4444444444[> ", +" .~:@,,,,,,;:4334444444441> ", +" .~:@.....+~44(]1344444444[ ", +" .~:@^^^^^!444]|)]134444444~ ", +" .~:@*****:444]|<|=]13444443 ", +" .~:@&&&&%1444]|<<__)]134444~ ", +" .~:@&&&&-3444]|<<<<<|=]1344: ", +" .~:@####$4333]|//////__)]13: ", +" .~:@####$3222]|///////__=}2: ", +" .~:@####$2222]_/////_')(322: ", +" .~:@####%1111]_////)=}32112> ", +" .~:@#####:111]///')(2211112$ ", +" .$$@#####-111]/'=}21111111~ ", +" . . . . +~1[()(21[[[[[[[: ", +" $:[11[[[[[[[[[1$ ", +" $~[::::::::[:$ ", +" $::::::::> ", +" $>>>>$@ ", +" ", +" "}; --- gnome-mplayer-0.9.9.2.orig/debian/rules +++ gnome-mplayer-0.9.9.2/debian/rules @@ -0,0 +1,94 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) + +CFLAGS = -Wall -g +LDFLAGS= -Wl,--as-needed + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +ifeq ($(DEB_HOST_ARCH_OS),linux) + EXTRA_CONF_ARGS=--with-alsa --with-flat-volume +endif + +configure: config-stamp + +config-stamp: + dh_testdir +# dh_quilt_patch + + ln -sf /usr/share/misc/config.sub config.sub + ln -sf /usr/share/misc/config.guess config.guess + + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr --sysconfdir=\$${prefix}/share \ + --with-gio --with-libnotify --with-gconf \ + --with-libmusicbrainz3 --with-gpm-new-method \ + --disable-schemas-install --disable-nautilus \ + $(EXTRA_CONF_ARGS) CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" + + touch $@ + +build: build-stamp + +build-stamp: config-stamp + dh_testdir + + $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot +# dh_quilt_unpatch + rm -f build-stamp config-stamp + + [ ! -f Makefile ] || $(MAKE) distclean + + rm -f po/*.gmo config.sub config.guess + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + + $(MAKE) DESTDIR=$(CURDIR)/debian/gnome-mplayer install + + # remove docs installed by upstream + rm -rf $(CURDIR)/debian/gnome-mplayer/usr/share/doc/gnome-mplayer + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installman + dh_installmenu + dh_installmime + dh_install + dh_gconf + dh_link + dh_strip -pgnome-mplayer --dbg-package=gnome-mplayer-dbg + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: configure build clean binary-indep binary-arch binary install --- gnome-mplayer-0.9.9.2.orig/debian/menu +++ gnome-mplayer-0.9.9.2/debian/menu @@ -0,0 +1,6 @@ +?package(gnome-mplayer):\ + needs="X11" \ + section="Applications/Video" \ + title="GNOME MPlayer" \ + command="gnome-mplayer" \ + icon="/usr/share/pixmaps/gnome-mplayer.xpm" --- gnome-mplayer-0.9.9.2.orig/debian/compat +++ gnome-mplayer-0.9.9.2/debian/compat @@ -0,0 +1 @@ +5 --- gnome-mplayer-0.9.9.2.orig/debian/watch +++ gnome-mplayer-0.9.9.2/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://code.google.com/p/gnome-mplayer/downloads/list \ +http://gnome-mplayer.googlecode.com/files/gnome-mplayer-(.*)\.tar\.gz --- gnome-mplayer-0.9.9.2.orig/debian/control +++ gnome-mplayer-0.9.9.2/debian/control @@ -0,0 +1,61 @@ +Source: gnome-mplayer +Section: video +Priority: optional +Maintainer: Cesare Tirabassi +Build-Depends: debhelper (>= 7), + autotools-dev, + libgconf2-dev, + libasound2-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], + libx11-dev, + libxss-dev, + libgtk2.0-dev (>= 2.12.0), + libglib2.0-dev (>= 2.14.0), + libdbus-1-dev, + libdbus-glib-1-dev (>= 0.70), + libnotify-dev, + libmusicbrainz3-dev, + libneon27-gnutls-dev, + libdiscid0-dev, + libcurl4-gnutls-dev, + pkg-config (>= 0.20) +Standards-Version: 3.8.4 +Vcs-Browser: https://code.launchpad.net/~norsetto/gnome-mplayer/gnome-mplayer +Vcs-Bzr: lp:~norsetto/gnome-mplayer/gnome-mplayer +Homepage: http://kdekorte.googlepages.com/gnomemplayer + +Package: gnome-mplayer +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, mplayer (>= 1.0~) | mplayer-nogui (>= 1.0~), dbus (>= 0.95) +Suggests: gecko-mediaplayer +Description: A GTK+ interface for MPlayer + The power of MPlayer combined with a friendly interface for your desktop. + You can play all your multimedia (audio, video, CD, DVDs, and VCDs, streams + etc. with full DVD and MKV chapter support), organize, sort and create + playlists, take screenshots while playing videos, be notified about media + changes, retrieve cover art and more. + Gnome-MPlayer fully supports subtitles giving the ability to specify + preferred audio and subtitle languages. + . + The player can be used to play media on websites from your browser when + used with Gecko Mediaplayer and is the modern replacement for + mplayerplug-in (from the same author). + +Package: gnome-mplayer-dbg +Section: debug +Priority: extra +Architecture: any +Depends: gnome-mplayer (= ${binary:Version}), ${misc:Depends} +Description: A GTK+ interface for MPlayer (debugging symbols) + The power of MPlayer combined with a friendly interface for your desktop. + You can play all your multimedia (audio, video, CD, DVDs, and VCDs, streams + etc. with full DVD and MKV chapter support), organize, sort and create + playlists, take screenshots while playing videos, be notified about media + changes, retrieve cover art and more. + Gnome-MPlayer fully supports subtitles giving the ability to specify + preferred audio and subtitle languages. + . + The player can be used to play media on websites from your browser when + used with Gecko Mediaplayer and is the modern replacement for + mplayerplug-in (from the same author). + . + This package contains the debugging symbols. --- gnome-mplayer-0.9.9.2.orig/debian/copyright +++ gnome-mplayer-0.9.9.2/debian/copyright @@ -0,0 +1,106 @@ +Format-Specification: http://dep.debian.net/deps/dep5/ +Name: Gnome MPlayer +Contact: Kevin DeKorte +Source: http://code.google.com/p/gnome-mplayer/ + +Files: *, src/*.[c,h], src/libgmlib/*.[c,h], src/libgmtk/*.[c,h] +Copyright: © 2006-2009 Kevin DeKorte +License: GPL-2+ + +Files: debian/* +Copyright: © 2009 Cesare Tirabassi +License: GPL-2+ + +Files: missing, ltmain.sh, depcomp +Copyright: © 1994-2006 Free Software Foundation, Inc. +License: GPL-2+ + +Files: Makefile.in, src/Makefile.in, src/libgmlib/Makefile.in, src/libgmtk/Makefile.in +Copyright: © 1994-2006 Free Software Foundation, Inc. +License: GAP + +Files: configure, aclocal.m4 +Copyright: © 1994-2006 Free Software Foundation, Inc. +License: GAP + +Files: Makefile.am, src/Makefile.am, src/libgmlib/Makefile.am, src/libgmtk/Makefile.am +Copyright: Public Domain, neither copyright holders nor licence +License: Public Domain, neither copyright holders nor licence + +Files: po/Makefile.in.in +Copyright: © 1995-1997 by Ulrich Drepper +License: other + +Files: install-sh +Copyright: © 1994 X Consortium +License: X11 + +Files: INSTALL +Copyright: © 1994-2007 Free Software Foundation, Inc. +License: GFDL + +License: GPL-2+ + + This package 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 package 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 complete text of the GNU General Public License + version 2 can be found in `/usr/share/common-licenses/GPL-2'. + +License: X11 + + 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. + +License: GFDL + + This file is free documentation; the Free Software Foundation gives + unlimited permission to copy, distribute and modify it. + +License: GAP + + This software is free software; you are given unlimited permission to + copy and/or distribute it, with or without modifications, as long as + this notice is preserved. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY, to the extent permitted by law; without + even the implied warranty of MERCHANTABILITY or FITNESS FOR A + PARTICULAR PURPOSE. + +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 Public License + but which still want to provide support for the GNU gettext functionality. + Please note that the actual code is *not* freely available. --- gnome-mplayer-0.9.9.2.orig/debian/NEWS +++ gnome-mplayer-0.9.9.2/debian/NEWS @@ -0,0 +1,15 @@ +gnome-mplayer (0.9.6-1) unstable; urgency=low + + A new preference key "use_pulse_flat_volume" has been added. + This is needed to work around the new flat volume feature of + pulseaudio 0.9.15 and has to be set to "true". + Note that the current version of pulseaudio in unstable/testing is + indeed 0.9.15. + + Also, the new mplayer arrow keys menu is available in dvdnav mode + (this will revert to normal behavior once the media is playing). + Note that this requires a version of mplayer later than SVN r29156 + to work. + Current mplayer version in unstable/testing is only up to SVN r29142. + + -- Cesare Tirabassi Sat, 06 Jun 2009 19:49:50 +0200 --- gnome-mplayer-0.9.9.2.orig/debian/docs +++ gnome-mplayer-0.9.9.2/debian/docs @@ -0,0 +1,4 @@ +README +DOCS/keyboard_shortcuts.txt +DOCS/tech/dbus.txt +DOCS/tech/plugin-interaction.txt --- gnome-mplayer-0.9.9.2.orig/debian/changelog +++ gnome-mplayer-0.9.9.2/debian/changelog @@ -0,0 +1,207 @@ +gnome-mplayer (0.9.9.2-1) unstable; urgency=low + + * Point fix release: + - Handle aspect change during video playback (LP: #521526) + - Fix problem with shoutcast playlists not autostarting + - Fix warning about invalid list iter + - Implement more accurate seeking using position tracker + - Add album art lookup for some shoutcast stations + - Many translation updates and additional languages + + -- Cesare Tirabassi Sat, 27 Feb 2010 17:04:42 +0100 + +gnome-mplayer (0.9.9-1) unstable; urgency=low + + * New upstream release (LP: #449460, LP: #448774, LP: #489064, LP: #489191): + - Volume and window size fixes (Closes: #566741) + - Apple.com support + - DVD device selection from Preferences + - Fix flickering in gtk 2.18 and higher + * Explicitly add libx11-dev as a Build-Depends (Closes: #554656) + * Make libasound2-dev Linux-only in Build-Depends + * Use --with-alsa and --with-flat-volume configure flags only + for Linux builds + * Add video/x-mng in mime list + * Add libxss-dev as a Build-Depends + * Removed all patches, now applied upstream + * No change bump of Standards-Version + + -- Cesare Tirabassi Sat, 06 Feb 2010 11:43:44 +0100 + +gnome-mplayer (0.9.8-1) unstable; urgency=low + + * New upstream bug-fix only release (LP: #420546) + * Remove all previous patches, now applied upstream + * Add --with-flat-volume flag to configure call + * Add patches/updated_el_translation.patch: + Update last greek translations from launchpad + * Add patches/fix_gtk2.14_ftbfs.patch: + Add GTK2.14 compile defs to gtk_widget_get_window; useful for backports + Change minimum required libgtk version back to 2.12.0 + * Add README.source since the package uses quilt as a patch management + system. + + -- Cesare Tirabassi Sun, 20 Sep 2009 10:28:57 +0200 + +gnome-mplayer (0.9.7-1) unstable; urgency=low + + * New upstream release (Closes: #536008, #522585, #522588): + - new tracker for monitoring media progress + - better subtitle support + - new screen redraw code for video + - new playlist randomizer, sorting and searching options + - new icons + - internal ASX parser + * Package is now Lintian clean + * No change bump of Standards-Version to 3.8.3 + * Add mime file to associate media filetypes to gnome-mplayer (LP: #405963) + * Change deprecated dh_clean -k to dh_prep (requires debhelper > 7) + * Install upstream man page + * Change debian menu icon in line with upstream icon change + * Remove patch avoid_libtool.patch, now applied upstream + * Add patch override_version_checks.patch: + Override the pulseaudio and gnome-power-manager test from upstream + * Add --with-gpm-new-method in debian/rules + * Improve the short/long descriptions + * Add Suggests on gecko-mediaplayer + + -- Cesare Tirabassi Fri, 21 Aug 2009 10:49:16 +0200 + +gnome-mplayer (0.9.6-1) unstable; urgency=low + + * New upstream release: + - new media tracker and audio meter + - new key "use_pulse_flat_volume" to be set if you are using + Pulse Audio 0.9.15 (see /usr/share/doc/gnome-mplayer/NEWS.Debian.gz + and /usr/share/doc/gnome-mplayer/changelog.gz for additional info) + - workaround for opening files on smb shares (LP: #369426) + - prevent adding an "empty" filename to the playlist (LP: #348864) + - add new --large_buttons and --always_hide_after_timeout command + line options to man page + - update debian/copyright with the newly added upstream source files + - upstream is now widely using libtool, which is causing rpath and + dependencies issues. libtool is really not needed for such a simple + case so it has been patched out in favour of static linking: + + updated debian/patches/avoid_libtool.patch to patch configure.in + and Makefile.am instead of directly Makefile.in + + debian/rules: + - patch is now applied in the configure target + - add aclocal/autoconf/automake calls in the configure target + + debian/control: + add autoconf and automake as Build-Depends + - add debian/NEWS + * Update debian/copyright in line with updated proposal specification + * Add patch description to avoid_libtool.patch (thanks lintian) + * Remove deprecated dh_desktop call + * Use new dh_quilt_patch and dh_quilt_unpatch commands + * No change bump of Standards-Version to 3.8.1 + * Changed Section to video (and debug for the dbg binary), in line + with the new sections recently added to the Debian archive + * Use LDFLAGS=-Wl,--as-needed instead of specifying manually all libraries + + -- Cesare Tirabassi Sat, 06 Jun 2009 19:49:50 +0200 + +gnome-mplayer (0.9.5-1) unstable; urgency=low + + [Cesare Tirabassi] + * New upstream release: + - add --enable-nautilus=no in debian/rules + - re-add quilt + - add debian/patches/avoid_libtool.patch: avoid linking using libtool + + [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 + +gnome-mplayer (0.9.4-1) unstable; urgency=low + + * New upstream release (LP: #325509): + - add new --showsubtitles command line options to man page + * Remove quilt to keep lintian happy. + + -- Cesare Tirabassi Fri, 06 Feb 2009 20:05:02 +0100 + +gnome-mplayer (0.9.3-1) unstable; urgency=low + + * New upstream release (LP: #303905): + - add new --fullscreen command line options to man page + * Add Vcs-* fields to debian/control. + + -- Cesare Tirabassi Sat, 03 Jan 2009 09:41:24 +0100 + +gnome-mplayer (0.9.2-1) unstable; urgency=low + + * New upstream release: + - add --with-alsa in debian/rules + - add --with-libmusicbrainz3 in debian/rules + - add libmusicbrainz3-dev, libneon27-gnutls-dev, + libdiscid0-dev and libcurl4-gnutls-dev as build-deps in debian/control + - add MUSICBRAINZ_LIBS environment variable in debian/rules + - add new --mixer and --disable_cover_art_fetch command line + options to man page + + -- Cesare Tirabassi Fri, 21 Nov 2008 18:42:00 +0100 + +gnome-mplayer (0.9.1-1) unstable; urgency=low + + * New upstream release. + + -- Cesare Tirabassi Sun, 02 Nov 2008 16:44:02 +0100 + +gnome-mplayer (0.9.0-1) unstable; urgency=low + + * New upstream release (LP: #285988): + - add --with-gio, --with-libnotify and --with-gconf flags in debian/rules + - add --disable-schemas-install to configure call in debian/rules and add + installation of schema file in debian/install + - add libnotify-dev as Build-Depends in debian/control + - format Build-Depends line in debian/control + - remove avoid_libtool.patch, finally applied upstream + * Explicitly pass all libraries through environment variables to avoid + linking against unneeded libraries. + + -- Cesare Tirabassi Fri, 31 Oct 2008 21:55:22 +0100 + +gnome-mplayer (0.8.0-1) unstable; urgency=low + + * New upstream release: + - add --showdetails, --replace_and_play, --new_instance and --keep_on_top + line options in man page. + * debian/rules: add configure to list of PHONY targets. + + -- Cesare Tirabassi Mon, 29 Sep 2008 21:53:14 +0200 + +gnome-mplayer (0.7.0-1) unstable; urgency=low + + * New upstream release (Closes: #494322): + - debian/control: + + add libasound2-dev as a Build-Depends + + add required version for pkg-config (>= 0.20) + - remove patch fix-desktop-kde.patch now applied upstream + - add --single_instance command line option in man page + * Fix the package failing to build if built twice in a row (Closes: #493241) + * Link only against needed libraries (Closes: #495094): + - explicitly pass libraries through the GTK_LIBS environment variable + * 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 + * Modify debian/rules to patch before configure call + * Removed unused dh_installdir call in debian/rules + + -- Cesare Tirabassi Fri, 15 Aug 2008 21:17:50 +0200 + +gnome-mplayer (0.6.3-2) unstable; urgency=low + + * Fix the package failing to build if built twice in a row + (Closes: #493241) + + -- Cesare Tirabassi Fri, 01 Aug 2008 16:11:55 +0200 + +gnome-mplayer (0.6.3-1) unstable; urgency=low + + * Initial release (Closes: #415381) + + -- Cesare Tirabassi Wed, 02 Jul 2008 15:21:38 +0200 --- gnome-mplayer-0.9.9.2.orig/debian/gnome-mplayer.mime +++ gnome-mplayer-0.9.9.2/debian/gnome-mplayer.mime @@ -0,0 +1,87 @@ +audio/x-musepack; /usr/bin/gnome-mplayer %s; description="Musepack Audio" +application/x-musepack; /usr/bin/gnome-mplayer %s; description="Musepack Audio" +audio/mpc; /usr/bin/gnome-mplayer %s; description="Musepack Audio" +audio/x-mpc; /usr/bin/gnome-mplayer %s; description="Musepack Audio" +audio/musepack; /usr/bin/gnome-mplayer %s; description="Musepack Audio" +application/musepack; /usr/bin/gnome-mplayer %s; description="Musepack Audio" +application/x-ape; /usr/bin/gnome-mplayer %s; description="Monkey's Audio" +audio/ape; /usr/bin/gnome-mplayer %s; description="Monkey's Audio" +audio/x-ape; /usr/bin/gnome-mplayer %s; description="Monkey's Audio" +audio/mpeg2; /usr/bin/gnome-mplayer %s; description="MPEG-2 Part 3 Format" +audio/x-mpeg2; /usr/bin/gnome-mplayer %s; description="MPEG-2 Part 3 Format" +audio/x-mp3; /usr/bin/gnome-mplayer %s; description="MPEG-1 Audio Layer 3" +audio/mp3; /usr/bin/gnome-mplayer %s; description="MPEG-1 Audio Layer 3" +application/x-id3; /usr/bin/gnome-mplayer %s; description="MP3 Metadata" +audio/mpeg; /usr/bin/gnome-mplayer %s; description="MPEG Audio Format" +audio/x-mpeg; /usr/bin/gnome-mplayer %s; description="MPEG Audio Format" +audio/x-mpeg3; /usr/bin/gnome-mplayer %s; description="MPEG-3 Audio Format" +audio/x-mpeg-3; /usr/bin/gnome-mplayer %s; description="MPEG-3 Audio Format" +audio/mpeg3; /usr/bin/gnome-mplayer %s; description="MPEG-3 Audio Format" +audio/mp4; /usr/bin/gnome-mplayer %s; description="MPEG-4 Part 3 Format" +audio/x-m4a; /usr/bin/gnome-mplayer %s; description="MPEG-4 Part 3 Format" +audio/mp; /usr/bin/gnome-mplayer %s; description="MP Audio Format" +audio/x-mp; /usr/bin/gnome-mplayer %s; description="MP Audio Format" +application/ogg; /usr/bin/gnome-mplayer %s; description="OggVorbis Audio" +application/x-ogg; /usr/bin/gnome-mplayer %s; description="OggVorbis Audio" +application/x-vorbis+ogg; /usr/bin/gnome-mplayer %s; description="OggVorbis Audio" +audio/x-vorbis+ogg; /usr/bin/gnome-mplayer %s; description="OggVorbis Audio" +audio/vorbis; /usr/bin/gnome-mplayer %s; description="OggVorbis Audio" +audio/x-vorbis; /usr/bin/gnome-mplayer %s; description="OggVorbis Audio" +audio/ogg; /usr/bin/gnome-mplayer %s; description="OggVorbis Audio" +audio/x-ogg; /usr/bin/gnome-mplayer %s; description="OggVorbis Audio" +audio/x-flac; /usr/bin/gnome-mplayer %s; description="Free Lossless Audio Codec" +application/x-flac; /usr/bin/gnome-mplayer %s; description="Free Lossless Audio Codec" +audio/flac; /usr/bin/gnome-mplayer %s; description="Free Lossless Audio Codec" +audio/x-s3m; /usr/bin/gnome-mplayer %s; description="Advanced Module Format" +audio/x-mod; /usr/bin/gnome-mplayer %s; description="Module Format" +audio/x-xm; /usr/bin/gnome-mplayer %s; description="Extended Module Format" +audio/x-it; /usr/bin/gnome-mplayer %s; description="IT Audio Format" +audio/x-pn-realaudio; /usr/bin/gnome-mplayer %s; description="RealAudio Format" +audio/x-realaudio; /usr/bin/gnome-mplayer %s; description="RealAudio Format" +audio/x-pn-realaudio-plugin; /usr/bin/gnome-mplayer %s; description="RealAudio Format" +audio/x-ms-wmv; /usr/bin/gnome-mplayer %s; description="Audio Format" +audio/x-ms-wax; /usr/bin/gnome-mplayer %s; description="Audio Format" +audio/x-ms-wma; /usr/bin/gnome-mplayer %s; description="Audio Format" +audio/wav; /usr/bin/gnome-mplayer %s; description="Waveform Microsoft Wave/RIFF" +audio/x-wav; /usr/bin/gnome-mplayer %s; description="Waveform Microsoft Wave/RIFF" +audio/x-mpegurl; /usr/bin/gnome-mplayer %s; description="Icecast Playlists" +audio/basic; /usr/bin/gnome-mplayer %s; description="Basic Audio Format" +audio/x-basic; /usr/bin/gnome-mplayer %s; description="Basic Audio Format" +audio/midi; /usr/bin/gnome-mplayer %s; description="MIDI Format" +audio/x-pls; /usr/bin/gnome-mplayer %s; description="MP3 ShoutCast/IceCast Playlist" +audio/x-scpls; /usr/bin/gnome-mplayer %s; description="Shoutcast Playlists" +video/quicktime; /usr/bin/gnome-mplayer %s; description="Apple Quicktime Video"; test=test -n "$DISPLAY" +video/x-quicktime; /usr/bin/gnome-mplayer %s; description="Apple Quicktime Video"; test=test -n "$DISPLAY" +application/x-quicktimeplayer; /usr/bin/gnome-mplayer %s; description="Apple Quicktime Video"; test=test -n "$DISPLAY" +application/smil; /usr/bin/gnome-mplayer %s; description="SMIL Format"; +application/vnd.rn-realmedia; /usr/bin/gnome-mplayer %s; description="RealAudio Video"; test=test -n "$DISPLAY" +application/vnd.rn-realaudio; /usr/bin/gnome-mplayer %s; description="RealAudio Video"; test=test -n "$DISPLAY" +video/vnd.rn-realvideo; /usr/bin/gnome-mplayer %s; description="RealAudio Video"; test=test -n "$DISPLAY" +application/asx; /usr/bin/gnome-mplayer %s; description="Advanced Systems Format"; test=test -n "$DISPLAY" +video/x-msvideo; /usr/bin/gnome-mplayer %s; description="Audio Video Interleave - Microsoft"; test=test -n "$DISPLAY" +video/msvideo; /usr/bin/gnome-mplayer %s; description="Audio Video Interleave - Microsoft"; test=test -n "$DISPLAY" +application/x-mplayer2; /usr/bin/gnome-mplayer %s; description="Advanced Systems Format"; test=test -n "$DISPLAY" +application/x-ms-wmv; /usr/bin/gnome-mplayer %s; description="Windows Media Video Format"; test=test -n "$DISPLAY" +video/x-ms-afs; /usr/bin/gnome-mplayer %s; description="Audio Video Interleave - Microsoft"; test=test -n "$DISPLAY" +video/x-ms-asf; /usr/bin/gnome-mplayer %s; description="MS ASF video"; test=test -n "$DISPLAY" +video/x-ms-asf-plugin; /usr/bin/gnome-mplayer %s; description="MS ASF video"; test=test -n "$DISPLAY" +video/x-ms-wm; /usr/bin/gnome-mplayer %s; description="Windows Media Format"; test=test -n "$DISPLAY" +video/x-ms-wmv; /usr/bin/gnome-mplayer %s;description="Audio Video Interleave - Microsoft"; test=test -n "$DISPLAY" +video/x-ms-wma; /usr/bin/gnome-mplayer %s; description="Audio Video Interleave - Microsoft"; test=test -n "$DISPLAY" +video/x-ms-wmx; /usr/bin/gnome-mplayer %s; description="Audio Video Interleave - Microsoft"; test=test -n "$DISPLAY" +video/x-ms-wmp; /usr/bin/gnome-mplayer %s; description="Audio Video Interleave - Microsoft"; test=test -n "$DISPLAY" +video/x-ms-wvx; /usr/bin/gnome-mplayer %s; description="Audio Video Interleave - Microsoft"; test=test -n "$DISPLAY" +application/x-drm-v2; /usr/bin/gnome-mplayer %s; description="DRM Version 2 Format"; test=test -n "$DISPLAY" +video/mpeg; /usr/bin/gnome-mplayer %s; description="MPEG Video Format"; test=test -n "$DISPLAY" +video/x-mpeg; /usr/bin/gnome-mplayer %s; description="MPEG Video Format"; test=test -n "$DISPLAY" +video/x-mpeg2; /usr/bin/gnome-mplayer %s; description="MPEG-2 Video"; test=test -n "$DISPLAY" +video/mp4; /usr/bin/gnome-mplayer %s; description="MP4 Format"; test=test -n "$DISPLAY" +video/3gpp; /usr/bin/gnome-mplayer %s; description="3GP Multimedia Format"; test=test -n "$DISPLAY" +video/fli; /usr/bin/gnome-mplayer %s; description="FLI Format"; test=test -n "$DISPLAY" +video/x-fli; /usr/bin/gnome-mplayer %s; description="FLI Format"; test=test -n "$DISPLAY" +video/x-flv; /usr/bin/gnome-mplayer %s; description="Flash Video Format"; test=test -n "$DISPLAY" +video/vnd.vivo; /usr/bin/gnome-mplayer %s; description="VND ViVo Format"; test=test -n "$DISPLAY" +application/x-nsv-vp3-mp3; /usr/bin/gnome-mplayer %s; description="NSP-VP3-MP3"; test=test -n "$DISPLAY" +video/x-matroska; /usr/bin/gnome-mplayer %s; description="Matroska Format"; test=test -n "$DISPLAY" +video/matroska; /usr/bin/gnome-mplayer %s; description="Matroska Format"; test=test -n "$DISPLAY" +video/x-mng; /usr/bin/gnome-mplayer %s; description="Multiple-image Network Graphics Format"; test=test -n "$DISPLAY"