--- gnome-mplayer-0.4.7.orig/debian/gnome-mplayer.manpages +++ gnome-mplayer-0.4.7/debian/gnome-mplayer.manpages @@ -0,0 +1 @@ +debian/gnome-mplayer.1 --- gnome-mplayer-0.4.7.orig/debian/control +++ gnome-mplayer-0.4.7/debian/control @@ -0,0 +1,20 @@ +Source: gnome-mplayer +Section: graphics +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Cesare Tirabassi +Build-Depends: debhelper (>= 5), autotools-dev, libgnome2-dev, libgnomeui-dev (>= 2), libdbus-1-dev, libdbus-glib-1-dev, pkg-config, chrpath (>=0.13) +Standards-Version: 3.7.2 + +Package: gnome-mplayer +Architecture: any +Depends: ${shlibs:Depends}, mplayer (>=1.0), dbus (>=1.0.2) +Description: GNOME MPlayer is a simple GUI for MPlayer + It provides a simple and clean interface to MPlayer. GNOME MPlayer has + a rich API that is exposed via DBus. Using DBus you can control a single + or multiple instances of GNOME MPlayer from a single command. + . + GNOME MPlayer can be used to play media on websites when used in conjunction + with Gecko Mediaplayer. + . + Homepage: http://dekorte.homeip.net/download/gnome-mplayer/ --- gnome-mplayer-0.4.7.orig/debian/changelog +++ gnome-mplayer-0.4.7/debian/changelog @@ -0,0 +1,51 @@ +gnome-mplayer (0.4.7-0ubuntu1) gutsy; urgency=low + + * New upstream release (LP: #121301) + * Use upstream .desktop file + + -- Cesare Tirabassi Sat, 21 Jul 2007 22:39:11 +0200 + +gnome-mplayer (0.4.6ubuntu-0ubuntu1) gutsy; urgency=low + + * Add icons from upstream + * Add .desktop file (remove upstream .desktop) + * Remove Debian menu + * Remove not necessary docs from installation file + * Remove dirs + * Change rules file: + - Remove hardcoded rpath in executable + (http://wiki.debian.org/RpathIssue) + - Remove extra doc-files created by upstream script + - Change rule -$(MAKE) distclean to + [ ! -f Makefile ] || $(MAKE) distclean + - Change files installation from rules file to install file + - Move config.guess and config.sub from clean: to config.status: + * Change control file: + - Add dependancies (mplayer, dbus) + - Change maintainer field + - Add original maintainer field + - Change Description field + - Change priority to optional + - Add Homepage in Description field + * Change source tarball + - Rename source tarball to gnome-mplayer_0.4.6ubuntu.orig.tar.gz + - Remove /debian from source tarball + - Change source tarball to delete references to /debian in + configure, configure.in, Makefile.am, Makefile.in + - Change references to wrong file in copyright statements: + src/guy.h (changed 4 occ. of callback.c to gui.h) + src/guy.c (changed 4 occ. of callback.c to gui.c) + src/support.h (changed 2 occ. of callback.h to support.h) + src/support.c (changed 2 occ. of callback.h to support.c) + src/thread.h (changed 2 occ. of callback.h to thread.h) + src/thread.h (changed 2 occ. of support.c to thread.h) + src/dbus-interface.h (changed 2 occ. of callback.h to dbus-interface.h) + src/dbus-interface.c (changed 2 occ. of callback.h to dbus-interface.c) + + -- Cesare Tirabassi Wed, 11 Jul 2007 10:14:14 +0200 + +gnome-mplayer (0.4.6-1) unstable; urgency=low + + * New upstream release + + -- Michael Rasmussen Fri, 11 May 2007 18:56:46 +0100 --- gnome-mplayer-0.4.7.orig/debian/docs +++ gnome-mplayer-0.4.7/debian/docs @@ -0,0 +1,3 @@ +README +DOCS/tech/dbus.txt +DOCS/tech/plugin-interaction.txt --- gnome-mplayer-0.4.7.orig/debian/compat +++ gnome-mplayer-0.4.7/debian/compat @@ -0,0 +1 @@ +5 --- gnome-mplayer-0.4.7.orig/debian/rules +++ gnome-mplayer-0.4.7/debian/rules @@ -0,0 +1,80 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# 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) + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --sysconfdir=\$${prefix}/share CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + + +build: build-stamp + +build-stamp: config.status + dh_testdir + +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + + $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + [ ! -f Makefile ] || $(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) DESTDIR=$(CURDIR)/debian/gnome-mplayer install + # remove extra doc-files created by upstream script + rm -rf $(CURDIR)/debian/gnome-mplayer/usr/share/doc/gnome-mplayer + # removes hardcoded rpath in executable (http://wiki.debian.org/RpathIssue) + chrpath -d $(CURDIR)/debian/gnome-mplayer/usr/bin/gnome-mplayer + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installman -a + dh_desktop + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- gnome-mplayer-0.4.7.orig/debian/watch +++ gnome-mplayer-0.4.7/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://dekorte.homeip.net/download/gnome-mplayer/gnome-mplayer-(.*)\.tar\.gz + --- gnome-mplayer-0.4.7.orig/debian/gnome-mplayer.1 +++ gnome-mplayer-0.4.7/debian/gnome-mplayer.1 @@ -0,0 +1,82 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH GNOME-MPLAYER 1 "July 28, 2007" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +gnome-mplayer \- a simple GUI for MPlayer +.SH SYNOPSIS +.B gnome-mplayer +.RI [ options ] " files" ... +.br +.SH DESCRIPTION +This manual page documents briefly the +.B gnome-mplayer +command. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBgnome-mplayer\fP provides a simple and clean interface to MPlayer. +.br +GNOME MPlayer has a rich API that is exposed via DBus. +.br +Using DBus you can control a single or multiple instances of GNOME MPlayer +from a single command. +.br +GNOME MPlayer can be used to play media on websites when used in conjunction +with Gecko Mediaplayer. +.sp +Homepage: http://dekorte.homeip.net/download/gnome-mplayer/ +.SH OPTIONS +This program follows the usual GNU command line syntax, with long +options starting with two dashes (`-'). +A summary of options is included below. +.TP +.B \-\-help +Show summary of options. +.TP +.B \-v, \-\-version +Show version of program. +.TP +.B \-\-help-all +Show all help options. +.TP +.B \-\-help-gtk +Show GTK+ Options. +.TP +.B \-\-window=WID +Window to embed in +.TP +.B \-w, \-\-width=X +Width of window to embed in +.TP +.B \-h, \-\-height=Y +Height of window to embed in +.TP +.B \-\-controlid=CID +Unique DBUS controller id +.TP +.B \-\-playlist +File Argument is a playlist +.TP +.B \-\-showcontrols=I +Show the controls in window +.TP +.B \-\-display=DISPLAY +X display to use +.br +.SH AUTHOR +gnome-mplayer was written by Kevin DeKorte . --- gnome-mplayer-0.4.7.orig/debian/copyright +++ gnome-mplayer-0.4.7/debian/copyright @@ -0,0 +1,31 @@ +This package was debianized by Michael Rasmussen on +Tue, 27 Feb 2007 22:57:46 +0100. + +It was downloaded from http://dekorte.homeip.net/download/gnome-mplayer/ + +Upstream Author: Kevin DeKorte + +Copyright: 2006, 2007 Kevin DeKorte + +License: + + 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 can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2007, Michael Rasmussen and +is licensed under the GPL, see above. + --- gnome-mplayer-0.4.7.orig/debian/install +++ gnome-mplayer-0.4.7/debian/install @@ -0,0 +1,4 @@ +pixmaps/*.xpm /usr/share/pixmaps +gnome-mplayer.desktop /usr/share/applications +gnome-mplayer.png /usr/share/pixmaps +