debian/0000755000000000000000000000000012145067215007171 5ustar debian/patches/0000755000000000000000000000000012126022510010604 5ustar debian/patches/04_gcc-4.6.patch0000644000000000000000000000072312126022510013173 0ustar Description: Fixes FTBS with GCC 4.6 Author: Tobias Grimm Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628113 --- vdr-plugin-games-0.6.3.orig/Makefile +++ vdr-plugin-games-0.6.3/Makefile @@ -49,7 +49,7 @@ else TARGET = libvdr-games.so OBJS += $(VDROBJS) CFLAGS += $(INCLUDES) -I$(VDRDIR)/include - LFLAGS += -shared --whole-archive + LFLAGS += -shared DEFINES += -D_GNU_SOURCE -DVDRVERSNUM=$(VDRNUM) endif debian/patches/flags.patch0000644000000000000000000000106212126022510012720 0ustar Index: vdr-plugin-games/Makefile =================================================================== --- vdr-plugin-games.orig/Makefile 2013-03-03 12:45:05.000000000 +0100 +++ vdr-plugin-games/Makefile 2013-03-03 12:45:11.000000000 +0100 @@ -13,8 +13,8 @@ VDROBJS = plugin.o SDLOBJS = main.o DEFINES = -DVERSION=\"$(VERSION)\" -CFLAGS = -g -pipe -O2 -Wall -Woverloaded-virtual -LFLAGS = -pthread +CFLAGS ?= -g -pipe -O2 -Wall -Woverloaded-virtual +LFLAGS += -pthread VDRDIR = ../../.. LIBDIR = ../../lib DVBDIR = ../../../../DVB debian/patches/series0000644000000000000000000000013212126022510012015 0ustar 02_Makefile-nosilent.patch 03_games-0.6.3-fix-INCLUDES.patch 04_gcc-4.6.patch flags.patch debian/patches/03_games-0.6.3-fix-INCLUDES.patch0000644000000000000000000000606412126022510015663 0ustar #! /bin/sh /usr/share/dpatch/dpatch-run ## 03_games-0.6.3-fix-INCLUDES.dpatch by Thomas Günther ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Fixes compilation with VDR >= 1.7.13. @DPATCH@ --- games-0.6.3/Makefile +++ games-0.6.3/Makefile @@ -48,7 +48,7 @@ TARGET = libvdr-games.so OBJS += $(VDROBJS) - CFLAGS += -fPIC -I$(VDRDIR) -I$(DVBDIR)/include + CFLAGS += $(INCLUDES) -I$(VDRDIR)/include LFLAGS += -shared --whole-archive DEFINES += -D_GNU_SOURCE -DVDRVERSNUM=$(VDRNUM) @@ -57,7 +57,7 @@ all: @echo @echo -n "Building $(TARGET) " - for GAME in $(GAMES); do cd $$GAME; make all; cd -; done + for GAME in $(GAMES); do cd $$GAME; make all DEFINES="$(DEFINES)" CFLAGS="$(CFLAGS)"; cd -; done @rm -f $(TARGET) @make $(TARGET) @echo " done" --- games-0.6.3/minesweeper/Makefile +++ games-0.6.3/minesweeper/Makefile @@ -1,6 +1,6 @@ GAME = minesweeper OBJS = minesweeper.o -CFLAGS = -g -pipe -O2 -Wall -Woverloaded-virtual +CFLAGS ?= -g -pipe -O2 -Wall -Woverloaded-virtual all: $(OBJS) @ar -r $(GAME).a $(OBJS) @@ -11,4 +11,4 @@ .cpp.o: @echo -n "." - g++ $(CFLAGS) -c $< + g++ $(DEFINES) $(CFLAGS) -c $< --- games-0.6.3/snake/Makefile +++ games-0.6.3/snake/Makefile @@ -1,6 +1,6 @@ GAME = snake OBJS = snake.o -CFLAGS = -g -pipe -O2 -Wall -Woverloaded-virtual +CFLAGS ?= -g -pipe -O2 -Wall -Woverloaded-virtual all: $(OBJS) @ar -r $(GAME).a $(OBJS) @@ -11,4 +11,4 @@ .cpp.o: @echo -n "." - g++ $(CFLAGS) -c $< + g++ $(DEFINES) $(CFLAGS) -c $< --- games-0.6.3/tetris/Makefile +++ games-0.6.3/tetris/Makefile @@ -1,6 +1,6 @@ GAME = tetris OBJS = tetris.o -CFLAGS = -g -pipe -O2 -Wall -Woverloaded-virtual +CFLAGS ?= -g -pipe -O2 -Wall -Woverloaded-virtual all: $(OBJS) @ar -r $(GAME).a $(OBJS) @@ -11,4 +11,4 @@ .cpp.o: @echo -n "." - g++ $(CFLAGS) -c $< + g++ $(DEFINES) $(CFLAGS) -c $< --- games-0.6.3/tictactoe/Makefile +++ games-0.6.3/tictactoe/Makefile @@ -1,6 +1,6 @@ GAME = tictactoe OBJS = tictactoe.o -CFLAGS = -g -pipe -O2 -Wall -Woverloaded-virtual +CFLAGS ?= -g -pipe -O2 -Wall -Woverloaded-virtual all: $(OBJS) @ar -r $(GAME).a $(OBJS) @@ -11,4 +11,4 @@ .cpp.o: @echo -n "." - g++ $(CFLAGS) -c $< + g++ $(DEFINES) $(CFLAGS) -c $< --- games-0.6.3/tron/Makefile +++ games-0.6.3/tron/Makefile @@ -1,6 +1,6 @@ GAME = tron OBJS = tron.o -CFLAGS = -g -pipe -O2 -Wall -Woverloaded-virtual +CFLAGS ?= -g -pipe -O2 -Wall -Woverloaded-virtual all: $(OBJS) @ar -r $(GAME).a $(OBJS) @@ -11,4 +11,4 @@ .cpp.o: @echo -n "." - g++ $(CFLAGS) -c $< + g++ $(DEFINES) $(CFLAGS) -c $< --- games-0.6.3/plugin.cpp +++ games-0.6.3/plugin.cpp @@ -1,5 +1,5 @@ -#include -#include +#include +#include extern int launcher_menu(char ***m); extern int launcher_start(int g, int x, int y, int s, int c); --- games-0.6.3/screen.cpp +++ games-0.6.3/screen.cpp @@ -5,7 +5,7 @@ #ifdef SDL #include #else - #include + #include #endif #include "defines.h" debian/patches/02_Makefile-nosilent.patch0000644000000000000000000000620512126022510015477 0ustar #!/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 $< debian/copyright0000644000000000000000000000340612126022510011113 0ustar Upstream Homepage: http://1541.org/vdr-games/ Upstream Author: Clemens Kirchgatterer Debian Maintainers: Tobias Grimm Thomas Günther Thomas Schmidt Copyright: (C) 2002 - 2006 Clemens Kirchgatterer Copyright (minesweeper): (C) 2003 - 2005 Gerard Monells, Clemens Kirchgatterer Copyright (snake): (C) 2003 Justin Todd, Clemens Kirchgatterer Copyright (tetris): (C) 2002 - 2003 Franko Kulaga, Clemens Kirchgatterer Copyright (tictactoe): (C) 2003 Aaron Rogers, Clemens Kirchgatterer Copyright (tron): (C) 2003 Rhett D. Jacobs, Clemens Kirchgatterer Copyright (Debian packaging): (C) 2002 - 2011 Tobias Grimm, Thomas Günther, Thomas Schmidt License: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-2 on most Debian systems. License (Debian packaging): The Debian packaging is licensed under the GPL, version 2 or any later version, see /usr/share/common-licenses/GPL-2. debian/source/0000755000000000000000000000000012126022510010455 5ustar debian/source/format0000644000000000000000000000001412126022510011663 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000005200312126022510011027 0ustar vdr-plugin-games (0.6.3-44) unstable; urgency=low * Build-depend on vdr-dev (>= 2.0.0) -- Tobias Grimm Sun, 31 Mar 2013 14:00:08 +0200 vdr-plugin-games (0.6.3-43) unstable; urgency=low * Build-depend on vdr-dev (>= 1.7.42) -- Tobias Grimm Sat, 23 Mar 2013 20:48:13 +0100 vdr-plugin-games (0.6.3-42) unstable; urgency=low * Build-depend on vdr-dev (>= 1.7.41) -- Tobias Grimm Sun, 17 Mar 2013 19:49:30 +0100 vdr-plugin-games (0.6.3-41) unstable; urgency=low * Build-depend on vdr-dev (>= 1.7.40) -- Tobias Grimm Sun, 10 Mar 2013 19:09:32 +0100 vdr-plugin-games (0.6.3-40) unstable; urgency=low * Use debhelper 9 * Build-depend on vdr-dev (>= 1.7.39) -- Tobias Grimm Sun, 03 Mar 2013 10:29:12 +0100 vdr-plugin-games (0.6.3-39) unstable; urgency=low * Build-depend on vdr-dev (>= 1.7.28) -- Tobias Grimm Sat, 09 Jun 2012 18:07:41 +0200 vdr-plugin-games (0.6.3-37) unstable; urgency=low * Build-depend on vdr-dev (>= 1.7.27) -- Tobias Grimm Thu, 19 Apr 2012 23:03:15 +0200 vdr-plugin-games (0.6.3-36) unstable; urgency=low * Build-depend on vdr-dev (>= 1.7.26) * Standards-Version: 3.9.3 -- Tobias Grimm Sun, 25 Mar 2012 13:35:54 +0200 vdr-plugin-games (0.6.3-35) unstable; urgency=low * Build-depend on vdr-dev (>= 1.7.23) -- Tobias Grimm Sun, 29 Jan 2012 19:05:18 +0100 vdr-plugin-games (0.6.3-34) unstable; urgency=low * Build-depend on vdr-dev (>= 1.7.22) -- Tobias Grimm Sun, 11 Dec 2011 17:16:38 +0100 vdr-plugin-games (0.6.3-33) unstable; urgency=low * Switched to GIT using pristine tar -- Tobias Grimm Sat, 29 Oct 2011 20:10:43 +0200 vdr-plugin-games (0.6.3-32) unstable; urgency=low * Build-depend on vdr-dev (>= 1.7.21) -- Tobias Grimm Sun, 18 Sep 2011 18:23:53 +0200 vdr-plugin-games (0.6.3-31) unstable; urgency=low * Build-depend on vdr-dev (>= 1.7.20) * Standards-Version: 3.9.2 * Fixed spelling errors in description -- Tobias Grimm Sat, 20 Aug 2011 15:25:37 +0200 vdr-plugin-games (0.6.3-30) unstable; urgency=low * Fixed FTBS with GCC 4.6 (Closes: #628113) -- Tobias Grimm Sat, 28 May 2011 17:55:48 +0200 vdr-plugin-games (0.6.3-29) unstable; urgency=low * Build-depend on vdr-dev (>= 1.7.18) -- Tobias Grimm Sun, 17 Apr 2011 20:06:29 +0200 vdr-plugin-games (0.6.3-28) unstable; urgency=low * Build-depend on vdr-dev >= 1.7.17 * Updated debian/copyright * Standards-Version: 3.9.1 * Switched to debhelper 7 and dropped cdbs -- Tobias Grimm Thu, 07 Apr 2011 22:01:08 +0200 vdr-plugin-games (0.6.3-27) unstable; urgency=low * Build-depend on vdr-dev >= 1.6.0-16 -- Tobias Grimm Sun, 28 Mar 2010 15:06:01 +0200 vdr-plugin-games (0.6.3-26) unstable; urgency=low * Added 03_games-0.6.3-fix-INCLUDES.dpatch * Removed 01_Makefile-fPIC-fix.dpatch * Removed DVBDIR from debian/rules * Standards-Version: 3.8.4 -- Thomas Günther Tue, 16 Mar 2010 23:36:46 +0100 vdr-plugin-games (0.6.3-25) unstable; urgency=low * Removed non-standard shebang line from debian/rules (Closes: #552641) * Added README.source -- Tobias Grimm Sun, 08 Nov 2009 23:26:41 +0100 vdr-plugin-games (0.6.3-24) unstable; urgency=low * Updated debian/watch * Standards-Version: 3.8.3 -- Tobias Grimm Sun, 04 Oct 2009 12:46:52 +0200 vdr-plugin-games (0.6.3-23) unstable; urgency=low * Release for vdrdevel 1.7.6 * Added ${misc:Depends} * Bumped standards version to 3.8.1 * Updated debian/copyright to our new format * Changed section to "video" -- Thomas Günther Wed, 29 Apr 2009 23:10:54 +0200 vdr-plugin-games (0.6.3-22) unstable; urgency=low [ Tobias Grimm ] * Dropped patchlevel control field * Build-Depend on vdr-dev (>=1.6.0-5) * Bumped Standards-Version to 3.8.0 -- Thomas Schmidt Sat, 19 Jul 2008 17:46:04 +0200 vdr-plugin-games (0.6.3-21) unstable; urgency=low * Upload to unstable -- Thomas Schmidt Sun, 08 Jun 2008 23:24:23 +0200 vdr-plugin-games (0.6.3-20) experimental; urgency=low * Increased package version to force rebuild for vdr 1.6.0-1ctvdr7 -- Tobias Grimm Mon, 12 May 2008 12:58:34 +0200 vdr-plugin-games (0.6.3-19) experimental; urgency=low [ Thomas Schmidt ] * Build-Depend on vdr-dev (>=1.6.0) * Switched Build-System to cdbs, Build-Depend on cdbs * Added Homepage field to debian/control * Renamed XS-Vcs-* fields to Vcs-* in debian/control * Bumped Standards-Version to 3.7.3 [ Tobias Grimm ] * Using COMPAT=5 now -- Tobias Grimm Fri, 04 Apr 2008 00:17:06 +0200 vdr-plugin-games (0.6.3-18) experimental; urgency=low * Force rebuild for vdr 1.5.15 -- Tobias Grimm Mon, 18 Feb 2008 21:08:05 +0100 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 debian/docs0000644000000000000000000000000712126022510010025 0ustar README debian/compat0000644000000000000000000000000212126022510010353 0ustar 9 debian/control0000644000000000000000000000143412126022510010562 0ustar Source: vdr-plugin-games Section: video Priority: extra Maintainer: Debian VDR Team Uploaders: Thomas Schmidt , Tobias Grimm , Thomas Günther Build-Depends: debhelper (>= 9), vdr-dev (>= 2.0.0), pkg-config Standards-Version: 3.9.3 Homepage: http://1541.org/vdr-games/ Vcs-Git: git://git.debian.org/git/pkg-vdr-dvb/vdr-plugin-games.git Vcs-Browser: http://git.debian.org/?p=pkg-vdr-dvb/vdr-plugin-games.git Package: vdr-plugin-games Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${vdr:Depends} Description: VDR plugin providing OSD games like tetris, snake and more This plugin for VDR allows one to play Tetris, TicTacToe, Tron and Snake via VDR's OSD (On Screen Display). debian/install0000644000000000000000000000006512126022510010547 0ustar libvdr-games.so.* usr/lib/vdr/plugins/ debian/rules0000755000000000000000000000107312126022510010236 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 MAKE_OPTIONS = VDRDIR=/usr/include/vdr LIBDIR=. LOCALEDIR=locale CXXFLAGS += $(shell pkg-config vdr --variable=cxxflags) CFLAGS += $(shell pkg-config vdr --variable=cflags) export LFLAGS=$(LDFLAGS) %: dh $@ override_dh_auto_build: dh_auto_build -- all $(MAKE_OPTIONS) override_dh_auto_install: # NOP override_dh_auto_clean: $(MAKE) -o .dependencies clean $(MAKE_OPTIONS) rm -rf locale libvdr-*.so.* override_dh_gencontrol: sh /usr/share/vdr-dev/dependencies.sh dh_gencontrol debian/watch0000644000000000000000000000007712126022510010212 0ustar version=2 http://1541.org/vdr-games .*/vdr-games-(.*)\.tar\.gz