--- vdr-plugin-games-0.6.3.orig/debian/compat +++ vdr-plugin-games-0.6.3/debian/compat @@ -0,0 +1 @@ +4 --- vdr-plugin-games-0.6.3.orig/debian/patches/02_Makefile-nosilent.dpatch +++ vdr-plugin-games-0.6.3/debian/patches/02_Makefile-nosilent.dpatch @@ -0,0 +1,93 @@ +#!/bin/sh /usr/share/dpatch/dpatch-run + +## 02_Makefile-nosilent.dpatch by Thomas Schmidt +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Removes output-suppresions from the Makefiles + +@DPATCH@ +diff -urNad vdr-plugin-games-0.6.3~/Makefile vdr-plugin-games-0.6.3/Makefile +--- vdr-plugin-games-0.6.3~/Makefile 2006-04-30 10:55:23.000000000 +0200 ++++ vdr-plugin-games-0.6.3/Makefile 2006-05-02 22:38:26.000000000 +0200 +@@ -57,18 +57,18 @@ + all: + @echo + @echo -n "Building $(TARGET) " +- @for GAME in $(GAMES); do cd $$GAME; make -s all; cd -; done ++ for GAME in $(GAMES); do cd $$GAME; make all; cd -; done + @rm -f $(TARGET) +- @make -s $(TARGET) ++ @make $(TARGET) + @echo " done" + @echo + + libvdr-games.so: $(OBJS) +- @g++ $(OBJS) $(LFLAGS) $(ARCHIVES) -o $@ ++ g++ $(OBJS) $(LFLAGS) $(ARCHIVES) -o $@ + @cp $@ $(LIBDIR)/$@.$(APIVERSION) + + sdl-games: $(OBJS) +- @g++ $(OBJS) $(LFLAGS) $(ARCHIVES) -o $@ ++ g++ $(OBJS) $(LFLAGS) $(ARCHIVES) -o $@ + + install: all + @cp $(LIBDIR)/libvdr-games.so.$(VDRVER) /mnt/vdr/lib/plugins/ +@@ -86,11 +86,11 @@ + clean: + @echo + @echo -n "Cleaning source tree " +- @for GAME in $(GAMES); do cd $$GAME; make -s clean; cd -; done ++ @for GAME in $(GAMES); do cd $$GAME; make clean; cd -; done + @rm -f *.o *.a $(TARGET) + @echo " done" + @echo + + .cpp.o: + @echo -n "." +- @$(COMPILE.cpp) $(DEFINES) $(CFLAGS) -c $< $(OUTPUT_OPTION) ++ $(COMPILE.cpp) $(DEFINES) $(CFLAGS) -c $< $(OUTPUT_OPTION) +diff -urNad vdr-plugin-games-0.6.3~/minesweeper/Makefile vdr-plugin-games-0.6.3/minesweeper/Makefile +--- vdr-plugin-games-0.6.3~/minesweeper/Makefile 2006-05-02 22:36:12.000000000 +0200 ++++ vdr-plugin-games-0.6.3/minesweeper/Makefile 2006-05-02 22:36:12.000000000 +0200 +@@ -11,4 +11,4 @@ + + .cpp.o: + @echo -n "." +- @g++ $(CFLAGS) -c $< ++ g++ $(CFLAGS) -c $< +diff -urNad vdr-plugin-games-0.6.3~/snake/Makefile vdr-plugin-games-0.6.3/snake/Makefile +--- vdr-plugin-games-0.6.3~/snake/Makefile 2006-05-02 22:36:12.000000000 +0200 ++++ vdr-plugin-games-0.6.3/snake/Makefile 2006-05-02 22:36:12.000000000 +0200 +@@ -11,4 +11,4 @@ + + .cpp.o: + @echo -n "." +- @g++ $(CFLAGS) -c $< ++ g++ $(CFLAGS) -c $< +diff -urNad vdr-plugin-games-0.6.3~/tetris/Makefile vdr-plugin-games-0.6.3/tetris/Makefile +--- vdr-plugin-games-0.6.3~/tetris/Makefile 2006-05-02 22:36:12.000000000 +0200 ++++ vdr-plugin-games-0.6.3/tetris/Makefile 2006-05-02 22:36:12.000000000 +0200 +@@ -11,4 +11,4 @@ + + .cpp.o: + @echo -n "." +- @g++ $(CFLAGS) -c $< ++ g++ $(CFLAGS) -c $< +diff -urNad vdr-plugin-games-0.6.3~/tictactoe/Makefile vdr-plugin-games-0.6.3/tictactoe/Makefile +--- vdr-plugin-games-0.6.3~/tictactoe/Makefile 2006-05-02 22:36:12.000000000 +0200 ++++ vdr-plugin-games-0.6.3/tictactoe/Makefile 2006-05-02 22:36:12.000000000 +0200 +@@ -11,4 +11,4 @@ + + .cpp.o: + @echo -n "." +- @g++ $(CFLAGS) -c $< ++ g++ $(CFLAGS) -c $< +diff -urNad vdr-plugin-games-0.6.3~/tron/Makefile vdr-plugin-games-0.6.3/tron/Makefile +--- vdr-plugin-games-0.6.3~/tron/Makefile 2006-05-02 22:36:12.000000000 +0200 ++++ vdr-plugin-games-0.6.3/tron/Makefile 2006-05-02 22:36:12.000000000 +0200 +@@ -11,4 +11,4 @@ + + .cpp.o: + @echo -n "." +- @g++ $(CFLAGS) -c $< ++ g++ $(CFLAGS) -c $< --- vdr-plugin-games-0.6.3.orig/debian/patches/00list +++ vdr-plugin-games-0.6.3/debian/patches/00list @@ -0,0 +1,2 @@ +01_Makefile-fPIC-fix +02_Makefile-nosilent --- vdr-plugin-games-0.6.3.orig/debian/patches/01_Makefile-fPIC-fix.dpatch +++ vdr-plugin-games-0.6.3/debian/patches/01_Makefile-fPIC-fix.dpatch @@ -0,0 +1,63 @@ +#!/bin/sh /usr/share/dpatch/dpatch-run + +## 01_Makefile-fPIC-fix.dpatch by Thomas Schmidt +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Adds -fPIC to Makefiles, to fix FTBFS (#266793) + +@DPATCH@ +diff -urNad /home/chelli/vdr/cvs-buildpackage/vdr-plugin-games/vdr-plugin-games-0.6.1/minesweeper/Makefile vdr-plugin-games-0.6.1/minesweeper/Makefile +--- /home/chelli/vdr/cvs-buildpackage/vdr-plugin-games/vdr-plugin-games-0.6.1/minesweeper/Makefile 2004-07-03 16:44:40.000000000 +0200 ++++ vdr-plugin-games-0.6.1/minesweeper/Makefile 2004-08-19 16:55:14.000000000 +0200 +@@ -1,6 +1,6 @@ + GAME = minesweeper + OBJS = minesweeper.o +-CFLAGS = -g -pipe -O2 -Wall -Woverloaded-virtual ++CFLAGS = -fPIC -g -pipe -O2 -Wall -Woverloaded-virtual + + all: $(OBJS) + @ar -r $(GAME).a $(OBJS) +diff -urNad /home/chelli/vdr/cvs-buildpackage/vdr-plugin-games/vdr-plugin-games-0.6.1/snake/Makefile vdr-plugin-games-0.6.1/snake/Makefile +--- /home/chelli/vdr/cvs-buildpackage/vdr-plugin-games/vdr-plugin-games-0.6.1/snake/Makefile 2004-07-03 16:44:40.000000000 +0200 ++++ vdr-plugin-games-0.6.1/snake/Makefile 2004-08-19 16:55:29.000000000 +0200 +@@ -1,6 +1,6 @@ + GAME = snake + OBJS = snake.o +-CFLAGS = -g -pipe -O2 -Wall -Woverloaded-virtual ++CFLAGS = -fPIC -g -pipe -O2 -Wall -Woverloaded-virtual + + all: $(OBJS) + @ar -r $(GAME).a $(OBJS) +diff -urNad /home/chelli/vdr/cvs-buildpackage/vdr-plugin-games/vdr-plugin-games-0.6.1/tetris/Makefile vdr-plugin-games-0.6.1/tetris/Makefile +--- /home/chelli/vdr/cvs-buildpackage/vdr-plugin-games/vdr-plugin-games-0.6.1/tetris/Makefile 2004-07-03 16:44:40.000000000 +0200 ++++ vdr-plugin-games-0.6.1/tetris/Makefile 2004-08-19 16:55:49.000000000 +0200 +@@ -1,6 +1,6 @@ + GAME = tetris + OBJS = tetris.o +-CFLAGS = -g -pipe -O2 -Wall -Woverloaded-virtual ++CFLAGS = -fPIC -g -pipe -O2 -Wall -Woverloaded-virtual + + all: $(OBJS) + @ar -r $(GAME).a $(OBJS) +diff -urNad /home/chelli/vdr/cvs-buildpackage/vdr-plugin-games/vdr-plugin-games-0.6.1/tictactoe/Makefile vdr-plugin-games-0.6.1/tictactoe/Makefile +--- /home/chelli/vdr/cvs-buildpackage/vdr-plugin-games/vdr-plugin-games-0.6.1/tictactoe/Makefile 2004-07-03 16:44:40.000000000 +0200 ++++ vdr-plugin-games-0.6.1/tictactoe/Makefile 2004-08-19 16:56:02.000000000 +0200 +@@ -1,6 +1,6 @@ + GAME = tictactoe + OBJS = tictactoe.o +-CFLAGS = -g -pipe -O2 -Wall -Woverloaded-virtual ++CFLAGS = -fPIC -g -pipe -O2 -Wall -Woverloaded-virtual + + all: $(OBJS) + @ar -r $(GAME).a $(OBJS) +diff -urNad /home/chelli/vdr/cvs-buildpackage/vdr-plugin-games/vdr-plugin-games-0.6.1/tron/Makefile vdr-plugin-games-0.6.1/tron/Makefile +--- /home/chelli/vdr/cvs-buildpackage/vdr-plugin-games/vdr-plugin-games-0.6.1/tron/Makefile 2004-07-03 16:44:40.000000000 +0200 ++++ vdr-plugin-games-0.6.1/tron/Makefile 2004-08-19 16:56:13.000000000 +0200 +@@ -1,6 +1,6 @@ + GAME = tron + OBJS = tron.o +-CFLAGS = -g -pipe -O2 -Wall -Woverloaded-virtual ++CFLAGS = -fPIC -g -pipe -O2 -Wall -Woverloaded-virtual + + all: $(OBJS) + @ar -r $(GAME).a $(OBJS) --- vdr-plugin-games-0.6.3.orig/debian/rules +++ vdr-plugin-games-0.6.3/debian/rules @@ -0,0 +1,93 @@ +#! /bin/sh /usr/share/vdr-dev/make-special-vdr.sh +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) + CFLAGS += -g +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +# To use dpatch uncomment the following line and set Build-Depends to dpatch +DPATCH=yes + +ifdef DPATCH +include /usr/share/dpatch/dpatch.make +else +patch: +patch-stamp: +unpatch: +endif + +MAKE_OPTIONS = DVBDIR=/usr VDRDIR=/usr/include/vdr LIBDIR=. + +configure: configure-stamp +configure-stamp: patch-stamp + dh_testdir + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + $(MAKE) all $(MAKE_OPTIONS) + touch build-stamp + +clean: clean-patched unpatch +clean-patched: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + -$(MAKE) -o .dependencies clean $(MAKE_OPTIONS) + rm -f libvdr-*.so.* + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + dh_install + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs + dh_installexamples +# dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installman +# dh_installinfo +# dh_undocumented + dh_installchangelogs HISTORY + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + sh /usr/share/vdr-dev/patchlevel.sh subst + sh /usr/share/vdr-dev/dependencies.sh + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure \ + clean-patched patch unpatch --- vdr-plugin-games-0.6.3.orig/debian/docs +++ vdr-plugin-games-0.6.3/debian/docs @@ -0,0 +1 @@ +README --- vdr-plugin-games-0.6.3.orig/debian/install +++ vdr-plugin-games-0.6.3/debian/install @@ -0,0 +1 @@ +libvdr-games.so.* usr/lib/vdr/plugins/ --- vdr-plugin-games-0.6.3.orig/debian/watch +++ vdr-plugin-games-0.6.3/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://1541.org/public/vdr-games-(.*)\.tar\.gz --- vdr-plugin-games-0.6.3.orig/debian/control +++ vdr-plugin-games-0.6.3/debian/control @@ -0,0 +1,18 @@ +Source: vdr-plugin-games +Section: misc +Priority: extra +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Debian VDR Team +Uploaders: Thomas Schmidt , Tobias Grimm , Thomas Günther +Build-Depends: debhelper (>> 4.1.16), vdr-dev (>= 1.6.0), dpatch +Standards-Version: 3.7.2 +XS-Vcs-Svn: svn://svn.debian.org/pkg-vdr-dvb/vdr/vdr-plugin-games/trunk/ +XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-games/trunk/ + +Package: vdr-plugin-games +Architecture: any +Depends: ${shlibs:Depends}, ${vdr:Depends} +Description: VDR plugin providing OSD games like tetris, snake and more + This plugin for VDR allows to play Tetris, TicTacToe, Tron + and Snake via VDR's OSD (On Screen Display). +XB-VDR-Patchlevel: ${vdr:Patchlevel} --- vdr-plugin-games-0.6.3.orig/debian/changelog +++ vdr-plugin-games-0.6.3/debian/changelog @@ -0,0 +1,514 @@ +vdr-plugin-games (0.6.3-17ubuntu2) hardy; urgency=low + + * Build-Depend on vdr-dev (>=1.6.0). + + -- Timo Aaltonen Wed, 09 Apr 2008 01:11:53 +0300 + +vdr-plugin-games (0.6.3-17ubuntu1) hardy; urgency=low + + * Merge with e-tobi.net. + * Build against the new vdr. + + -- Timo Aaltonen Fri, 15 Feb 2008 01:06:34 +0200 + +vdr-plugin-games (0.6.3-17) unstable; urgency=low + + * Release for vdrdevel 1.5.13 + + -- Thomas Günther Wed, 16 Jan 2008 10:31:33 +0100 + +vdr-plugin-games (0.6.3-16) unstable; urgency=low + + * Release for vdrdevel 1.5.12 + + -- Thomas Günther Tue, 20 Nov 2007 23:46:19 +0100 + +vdr-plugin-games (0.6.3-15) unstable; urgency=low + + * Release for vdrdevel 1.5.11 + + -- Thomas Günther Tue, 6 Nov 2007 23:34:12 +0100 + +vdr-plugin-games (0.6.3-14) unstable; urgency=low + + * Release for vdrdevel 1.5.10 + + -- Thomas Günther Tue, 16 Oct 2007 23:50:53 +0200 + +vdr-plugin-games (0.6.3-13) unstable; urgency=low + + * Release for vdrdevel 1.5.9 + + -- Thomas Günther Tue, 28 Aug 2007 01:01:04 +0200 + +vdr-plugin-games (0.6.3-12) unstable; urgency=low + + * Release for vdrdevel 1.5.8 + + -- Thomas Günther Thu, 23 Aug 2007 01:09:00 +0200 + +vdr-plugin-games (0.6.3-11) unstable; urgency=low + + * Release for vdrdevel 1.5.6 + + -- Thomas Günther Tue, 14 Aug 2007 01:46:14 +0200 + +vdr-plugin-games (0.6.3-10) unstable; urgency=low + + * Release for vdrdevel 1.5.5 + + -- Thomas Günther Wed, 27 Jun 2007 23:02:35 +0200 + +vdr-plugin-games (0.6.3-9) unstable; urgency=low + + * Added XS-Vcs-Svn and XS-Vcs-Browser fields to debian/control + * Removed version from Build-Dependancy to dpatch - even Sarge has the + required version + + -- Thomas Schmidt Mon, 28 May 2007 19:43:31 +0200 + +vdr-plugin-games (0.6.3-8) experimental; urgency=low + + * Release for vdrdevel 1.5.2 + + -- Thomas Günther Sat, 28 Apr 2007 00:00:27 +0200 + +vdr-plugin-games (0.6.3-7) experimental; urgency=low + + * Release for vdrdevel 1.5.1 + * Added myself to Uploaders + + -- Thomas Günther Tue, 27 Feb 2007 19:59:15 +0100 + +vdr-plugin-games (0.6.3-6) experimental; urgency=low + + [ Thomas Günther ] + * Replaced VDRdevel adaptions in debian/rules with make-special-vdr + * Adapted call of dependencies.sh and patchlevel.sh to the new location + in /usr/share/vdr-dev/ + + [ Tobias Grimm ] + * Build-Depend on vdr-dev (>=1.4.5-1) + + -- Tobias Grimm Sun, 14 Jan 2007 20:24:15 +0100 + +vdr-plugin-games (0.6.3-5) unstable; urgency=low + + * Build-Depend on vdr-dev (>=1.4.4-1) + * Edited Description + + -- Tobias Grimm Sun, 5 Nov 2006 13:47:30 +0100 + +vdr-plugin-games (0.6.3-4) unstable; urgency=low + + * Build-Depend on vdr-dev (>=1.4.3-1) + + -- Thomas Schmidt Wed, 27 Sep 2006 08:26:36 +0200 + +vdr-plugin-games (0.6.3-3) unstable; urgency=low + + * Bumped Standards-Version to 3.7.2 + * Added note about the Debian Maintainers to debian/copyright + * Added Tobias Grimm to Uploaders + * Build-Depend on vdr-dev (>=1.4.2-1) + + -- Thomas Schmidt Mon, 28 Aug 2006 21:02:30 +0200 + +vdr-plugin-games (0.6.3-2) unstable; urgency=low + + * Thomas Schmidt + - Build-Depend on vdr-dev (>=1.4.1-1) + + -- Debian VDR Team Sun, 18 Jun 2006 15:53:46 +0200 + +vdr-plugin-games (0.6.3-1) unstable; urgency=low + + * New upstream release + * Tobias Grimm + - Removed 90_APIVERSION.dpatch + - Updated 02_Makefile-nosilent.dpatch + + -- Debian VDR Team Wed, 3 May 2006 22:14:01 +0200 + +vdr-plugin-games (0.6.2-18) unstable; urgency=low + + * Thomas Schmidt + - Build-Depend on vdr-dev (>=1.4.0-1) + + -- Debian VDR Team Sun, 30 Apr 2006 21:20:18 +0200 + +vdr-plugin-games (0.6.2-17) unstable; urgency=low + + * Thomas Schmidt + - Build-Depend on vdr-dev (>=1.3.48-1) + * Tobias Grimm + - Added 90_APIVERSION.dpatch + + -- Debian VDR Team Mon, 24 Apr 2006 20:16:34 +0200 + +vdr-plugin-games (0.6.2-16) unstable; urgency=low + + * Thomas Schmidt + - Build-Depend on vdr-dev (>=1.3.46-1) + + -- Debian VDR Team Thu, 13 Apr 2006 00:28:28 +0200 + +vdr-plugin-games (0.6.2-15) unstable; urgency=low + + * Thomas Schmidt + - Build-Depend on vdr-dev (>=1.3.45-1) + + -- Debian VDR Team Mon, 27 Mar 2006 23:17:22 +0200 + +vdr-plugin-games (0.6.2-14) unstable; urgency=low + + * Tobias Grimm + - Depend/Build-Depend on vdr (>=1.3.41-1) + + -- Debian VDR Team Tue, 31 Jan 2006 20:03:20 +0100 + +vdr-plugin-games (0.6.2-13) unstable; urgency=low + + * Tobias Grimm + - Build-Depend on vdr-dev (>=1.3.40-1) + + -- Debian VDR Team Thu, 26 Jan 2006 19:12:52 +0100 + +vdr-plugin-games (0.6.2-12) unstable; urgency=low + + * Thomas Schmidt + - Build-Depend on vdr-dev (>=1.3.39-1) + + -- Debian VDR Team Sun, 22 Jan 2006 12:35:22 +0100 + +vdr-plugin-games (0.6.2-11) unstable; urgency=low + + * Thomas Schmidt + - Build-Depend on vdr (>=1.3.38-1) + + -- Debian VDR Team Tue, 10 Jan 2006 17:01:40 +0100 + +vdr-plugin-games (0.6.2-10) unstable; urgency=low + + * Thomas Schmidt + - Build-Depend on vdr (>=1.3.37-1) + + -- Debian VDR Team Mon, 28 Nov 2005 22:53:03 +0100 + +vdr-plugin-games (0.6.2-9) unstable; urgency=low + + * Thomas Schmidt + - Build-Depend on vdr (>=1.3.35-1) + + -- Debian VDR Team Wed, 2 Nov 2005 16:54:07 +0100 + +vdr-plugin-games (0.6.2-8) unstable; urgency=low + + * Thomas Schmidt + - Build-Depend on vdr (>=1.3.33-1) + + -- Debian VDR Team Sun, 2 Oct 2005 12:16:20 +0200 + +vdr-plugin-games (0.6.2-7) unstable; urgency=low + + * Thomas Schmidt + - Build-Depend on vdr (>=1.3.32-1) + + -- Debian VDR Team Sun, 11 Sep 2005 18:47:23 +0200 + +vdr-plugin-games (0.6.2-6) unstable; urgency=low + + * Thomas Schmidt + - Build-Depend on vdr (>=1.3.31-1) + - Use dependencies.sh from vdr-dev to set vdr dependencies and + conflicts to the right vdr version when building the package + + -- Debian VDR Team Fri, 2 Sep 2005 18:02:19 +0200 + +vdr-plugin-games (0.6.2-5) unstable; urgency=low + + * Tobias Grimm + - Depend/Build-Depend on vdr (>=1.3.30-1) + - Conflict with vdr (>=1.3.30.99) + + -- Debian VDR Team Tue, 23 Aug 2005 19:18:24 +0200 + +vdr-plugin-games (0.6.2-4) unstable; urgency=low + + * Thomas Schmidt + - Depend/Build-Depend on vdr (>=1.3.29-1) + - Conflict with vdr (>=1.3.29.99) + + -- Debian VDR Team Mon, 15 Aug 2005 19:24:40 +0200 + +vdr-plugin-games (0.6.2-3) unstable; urgency=low + + * Thomas Schmidt + - Depend/Build-Depend on vdr (>=1.3.28-1) + - Conflict with vdr (>=1.3.29) + - Removed "Replaces/Conflicts: vdr-plugin-tetris, vdr-plugin-tictactoe", + this was only needed for some inofficial, very old packages + + -- Debian VDR Team Tue, 9 Aug 2005 22:17:12 +0200 + +vdr-plugin-games (0.6.2-2) unstable; urgency=low + + * Thomas Günther + - Adapted patches for new dpatch >= 2.0.9 + - Using debian/compat now + - Adapted debian/control, debian/install, debian/docs and debian/rules + to vdrdevel-plugin-games + + -- Debian VDR Team Sun, 7 Aug 2005 20:18:38 +0200 + +vdr-plugin-games (0.6.2-1) unstable; urgency=low + + * Tobias Grimm + - New upstream release + - Shortened debian/copyright and updated upstream authors email address + + -- Debian VDR Team Sun, 7 Aug 2005 12:29:16 +0200 + +vdr-plugin-games (0.6.1-12) unstable; urgency=low + + * Thomas Schmidt + - Bumped Standards-Version to 3.6.2 + + -- Debian VDR Team Wed, 29 Jun 2005 17:46:18 +0200 + +vdr-plugin-games (0.6.1-11) unstable; urgency=low + + * Thomas Schmidt + - Depend/Build-Depend on vdr (>=1.3.27-1) + - Conflict with vdr (>=1.3.28) + + -- Debian VDR Team Sun, 19 Jun 2005 17:51:07 +0200 + +vdr-plugin-games (0.6.1-10) unstable; urgency=low + + * Thomas Schmidt + - Depend/Build-Depend on vdr (>=1.3.26-1) + - Conflict with vdr (>=1.3.27) + + -- Debian VDR Team Sun, 12 Jun 2005 17:04:11 +0200 + +vdr-plugin-games (0.6.1-9) experimental; urgency=low + + * Thomas Schmidt + - Depend/Build-Depend on vdr (>=1.3.25-1) + - Conflict with vdr (>=1.3.26) + + -- Debian VDR Team Tue, 31 May 2005 14:48:24 +0200 + +vdr-plugin-games (0.6.1-8) experimental; urgency=low + + * Thomas Schmidt + - Depend/Build-Depend on vdr (>=1.3.24-1) + - Conflict with vdr (>=1.3.25) + + -- Debian VDR Team Mon, 9 May 2005 17:21:50 +0200 + +vdr-plugin-games (0.6.1-7) experimental; urgency=low + + * Thomas Schmidt + - Depend/Build-Depend on vdr (>=1.3.23-1) + - Conflict with vdr (>=1.3.24) + + -- Debian VDR Team Sun, 10 Apr 2005 13:55:41 +0200 + +vdr-plugin-games (0.6.1-6) unstable; urgency=low + + * Thomas Schmidt + - Re-added dpatches which somehow got lost when we changed the + repository from cvs to svn, this should fix the FTBFS on some + architectures + + -- Debian VDR Team Sat, 26 Mar 2005 17:31:05 +0100 + +vdr-plugin-games (0.6.1-5) unstable; urgency=low + + * Thomas Schmidt + - Use patchlevel.sh subst in debian/rules not the old code, + therefore Build-Depend on vdr (>=1.2.6-7) + - Changed my email-address to the debian one + + -- Debian VDR Team Sat, 26 Mar 2005 17:29:07 +0100 + +vdr-plugin-games (0.6.1-4) unstable; urgency=low + + * Thomas Schmidt + - Build-depend on dpatch (>= 2.0.9) + - Converted existing dpatch-files to the new short format + + -- Debian VDR Team Tue, 26 Oct 2004 11:51:53 +0200 + +vdr-plugin-games (0.6.1-3) unstable; urgency=low + + * Thomas Schmidt + - Use dpatch, so build-dep on dpatch + - Add 01_Makefile-fPIC-fix.dpatch, to fix FTBFS (closes: #266793) + - Add 02_Makefile-nosilent.dpatch, to not suppress the output of + the make and g++-calls + + -- Debian VDR Team Thu, 19 Aug 2004 16:52:32 +0200 + +vdr-plugin-games (0.6.1-2) unstable; urgency=low + + * Thomas Schmidt + - Now really changed architecture to any + - Changed debian/watch and debian/copyright to the new upstream url + + -- Debian VDR Team Mon, 16 Aug 2004 21:36:50 +0200 + +vdr-plugin-games (0.6.1-1) unstable; urgency=low + + * Thomas Schmidt + - New upstream release + - Changed architecture to any + - Use dh_install + - Changed maintainer to Debian VDR Team + + - First upload to official Debian-archive (closes: Bug#229223) + - Added patchlevel-mechanism, to be compatible with c't-vdr + - Added watch-file + + -- Debian VDR Team Fri, 30 Jul 2004 14:39:34 +0200 + +vdr-plugin-games (0.6.0-4) unstable; urgency=low + + * Rebuild for vdr 1.2.6 + + -- Thomas Schmidt Sun, 16 Nov 2003 15:00:13 +0100 + +vdr-plugin-games (0.6.0-3) unstable; urgency=low + + * Rebuild for vdr 1.2.5 + + -- Thomas Schmidt Wed, 17 Sep 2003 20:15:37 +0200 + +vdr-plugin-games (0.6.0-2) unstable; urgency=low + + * changed the plugin-dir to /usr/lib/vdr/plugins, to be FHS compliant + Thanks to Henning Glawe for pointing me + to this one + + -- Thomas Schmidt Sun, 14 Sep 2003 16:25:39 +0200 + +vdr-plugin-games (0.6.0-1) unstable; urgency=low + + * New upstream release + + -- Thomas Schmidt Sat, 13 Sep 2003 10:18:10 +0200 + +vdr-plugin-games (0.4.2-3) unstable; urgency=low + + * Changed debian/rules and debian/control (added debian/control.template), + so that the correct dependancy to vdr is filled out automatically on the + version of vdr-dev, you have installed + * Bump Standards-Version to 3.6.1 + + -- Thomas Schmidt Wed, 10 Sep 2003 10:22:32 +0200 + +vdr-plugin-games (0.4.2-2) unstable; urgency=low + + * Rebuild for vdr 1.2.2 + * Bump Standards-Version to 3.6.0 + + -- Thomas Schmidt Wed, 13 Aug 2003 10:48:33 +0200 + +vdr-plugin-games (0.4.2-1) unstable; urgency=low + + * New upstream release + * Bump Standard-Version to 3.5.10 + + -- Thomas Schmidt Sun, 13 Jul 2003 15:55:12 +0200 + +vdr-plugin-games (0.4.1-4) unstable; urgency=low + + * Rebuild for vdr 1.2.1 + + -- Thomas Schmidt Mon, 9 Jun 2003 19:03:16 +0200 + +vdr-plugin-games (0.4.1-3) unstable; urgency=low + + * Rebuild for vdr 1.2.0 + + -- Thomas Schmidt Sun, 1 Jun 2003 21:57:29 +0200 + +vdr-plugin-games (0.4.1-2) unstable; urgency=low + + * Rebuild for vdr 1.1.29 + + -- Thomas Schmidt Wed, 30 Apr 2003 17:56:16 +0200 + +vdr-plugin-games (0.4.1-1) unstable; urgency=low + + * New upstream release + * Rebuild for vdr 1.1.28 + * New game: tictactoe - replaces separate tictactoe-plugin + * Bump Standards-Version to 3.5.9 + + -- Thomas Schmidt Tue, 22 Apr 2003 12:45:28 +0200 + +vdr-plugin-games (0.4.0-1) unstable; urgency=low + + * New upstream release + * Upstream namechange to vdr-games - please edit your vdr-startscript to + reflect the change (change -Ptetris to -Pgames) + + -- Thomas Schmidt Sun, 13 Apr 2003 15:51:51 +0200 + +vdr-plugin-tetris (0.2.2-3) unstable; urgency=low + + * rebuild for vdr 1.1.25 + + -- Thomas Schmidt Wed, 5 Mar 2003 19:55:46 +0100 + +vdr-plugin-tetris (0.2.2-2) unstable; urgency=low + + * changed wrong package description + + -- Thomas Schmidt Sun, 2 Feb 2003 15:35:19 +0100 + +vdr-plugin-tetris (0.2.2-1) unstable; urgency=low + + * New upstream release + + -- Thomas Schmidt Sun, 12 Jan 2003 22:43:18 +0100 + +vdr-plugin-tetris (0.2.0-4) unstable; urgency=low + + * compiled for vdr 1.1.20 + + -- Thomas Schmidt Sun, 15 Dec 2002 19:00:07 +0100 + +vdr-plugin-tetris (0.2.0-3) unstable; urgency=low + + * compiled for vdr 1.1.19 + + -- Thomas Schmidt Mon, 9 Dec 2002 23:46:56 +0100 + +vdr-plugin-tetris (0.2.0-2) unstable; urgency=low + + * compiled for vdr 1.1.18 + + -- Thomas Schmidt Mon, 2 Dec 2002 12:48:35 +0100 + +vdr-plugin-tetris (0.2.0-1) unstable; urgency=low + + * New upstream release + + -- Thomas Schmidt Tue, 19 Nov 2002 14:15:26 +0100 + +vdr-plugin-tetris (0.1.3-1) unstable; urgency=low + + * New upstream release + * compiled for vdr 1.1.16 + + -- Thomas Schmidt Mon, 11 Nov 2002 11:51:31 +0100 + +vdr-plugin-tetris (0.1.2-1) unstable; urgency=low + + * Initial Release. + + -- Thomas Schmidt Mon, 4 Nov 2002 00:55:58 +0100 --- vdr-plugin-games-0.6.3.orig/debian/copyright +++ vdr-plugin-games-0.6.3/debian/copyright @@ -0,0 +1,17 @@ +This package was debianized by Thomas Schmidt on +Fri, 18 Oct 2002 13:45:37 +0200. + +It was downloaded from http://1541.org/vdr-games/ + +Upstream Author: Clemens Kirchgatterer + +Debian Maintainers: + + Tobias Grimm + Thomas Günther + Thomas Schmidt + +Copyright: + +It may be redistributed under the terms of the GNU GPL, Version 2 +found on Debian systems in the file /usr/share/common-licenses/GPL .