r9530 - in packages/trunk/chapping/debian: . patches

Peter De Wachter pdewacht-guest at alioth.debian.org
Sat Apr 11 17:30:05 UTC 2009


Author: pdewacht-guest
Date: 2009-04-11 17:30:05 +0000 (Sat, 11 Apr 2009)
New Revision: 9530

Added:
   packages/trunk/chapping/debian/patches/compilation_fixes.patch
Modified:
   packages/trunk/chapping/debian/changelog
   packages/trunk/chapping/debian/control
   packages/trunk/chapping/debian/patches/series
Log:
Make chapping BFS


Modified: packages/trunk/chapping/debian/changelog
===================================================================
--- packages/trunk/chapping/debian/changelog	2009-04-11 17:18:48 UTC (rev 9529)
+++ packages/trunk/chapping/debian/changelog	2009-04-11 17:30:05 UTC (rev 9530)
@@ -1,9 +1,9 @@
 chapping (0.43.dfsg1-1) UNRELEASED; urgency=low
 
-  [ Barry deFreese ]
-  * CURRENTLY FTBFS FOR ME.
-
   [ Miriam Ruiz ]
   * Initial release (Closes: #nnnn)
 
- -- Barry deFreese <bdefreese at debian.org>  Sat, 11 Apr 2009 10:46:36 -0400
+  [ Peter De Wachter ]
+  * Added compilation_fixes.patch, fixing a few trivial C++ errors.
+
+ -- Peter De Wachter <pdewacht at gmail.com>  Sat, 11 Apr 2009 19:28:13 +0200

Modified: packages/trunk/chapping/debian/control
===================================================================
--- packages/trunk/chapping/debian/control	2009-04-11 17:18:48 UTC (rev 9529)
+++ packages/trunk/chapping/debian/control	2009-04-11 17:30:05 UTC (rev 9530)
@@ -3,7 +3,7 @@
 Priority: extra
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
 Uploaders: Miriam Ruiz <little_miry at yahoo.es>
-Build-Depends: debhelper (>= 6), quilt, optipng, advancecomp,
+Build-Depends: debhelper (>= 6), quilt, xutils-dev, optipng, advancecomp,
  libsdl1.2-dev, libsdl-image1.2-dev, libsdl-gfx1.2-dev, libsdl-ttf2.0-dev
 Standards-Version: 3.7.3
 Homepage: http://chapping.wordpress.com/

Added: packages/trunk/chapping/debian/patches/compilation_fixes.patch
===================================================================
--- packages/trunk/chapping/debian/patches/compilation_fixes.patch	                        (rev 0)
+++ packages/trunk/chapping/debian/patches/compilation_fixes.patch	2009-04-11 17:30:05 UTC (rev 9530)
@@ -0,0 +1,52 @@
+Adding missing includes and other trivial compilation fixes.
+
++++ b/library/peripheral.h
+@@ -17,7 +17,7 @@
+ 
+ 		//Tipos de evento que se pueden dar en un componente de un 
+ 		//periferico
+-		typedef enum event_t
++		enum event_t
+ 		{
+ 			NO_EVENT,
+ 			ON_PRESS,
+--- a/library/timemanager.cpp
++++ b/library/timemanager.cpp
+@@ -5,6 +5,7 @@
+ #include "timemanager.h"
+ #include "timer.h"
+ #include <list>
++#include <algorithm>
+ 
+ using namespace std;
+ 
+--- a/library/controlmanager.cpp
++++ b/library/controlmanager.cpp
+@@ -1,5 +1,6 @@
+ #include <SDL.h>
+ #include <vector>
++#include <algorithm>
+ 
+ #include "peripheral.h"
+ #include "controlmanager.h"
+--- a/game/team.h
++++ b/game/team.h
+@@ -14,7 +14,7 @@
+ 		Team();
+ 		~Team();
+ 
+-		void init(Game::team_t t,const Theme *t);
++		void init(Game::team_t t,const Theme *theme);
+ 		void update();
+ 		void shutdown();
+ 
+--- a/game/theme.cpp
++++ b/game/theme.cpp
+@@ -1,6 +1,7 @@
+ #include "theme.h"
+ #include <iostream>
+ #include <fstream>
++#include <stdlib.h>
+ 
+ using namespace std;
+ 

Modified: packages/trunk/chapping/debian/patches/series
===================================================================
--- packages/trunk/chapping/debian/patches/series	2009-04-11 17:18:48 UTC (rev 9529)
+++ packages/trunk/chapping/debian/patches/series	2009-04-11 17:30:05 UTC (rev 9530)
@@ -1,2 +1,3 @@
 makefiles.patch
 directories.patch
+compilation_fixes.patch




More information about the Pkg-games-commits mailing list