Author: bddebian-guest
Date: 2008-01-03 20:51:32 +0000 (Thu, 03 Jan 2008)
New Revision: 5200

Modified:
   packages/trunk/stormbaancoureur/debian/
   packages/trunk/stormbaancoureur/debian/changelog
   packages/trunk/stormbaancoureur/debian/control
   packages/trunk/stormbaancoureur/debian/patches/fullscreen_optional.patch
   packages/trunk/stormbaancoureur/debian/patches/makefile_cflags.patch
   packages/trunk/stormbaancoureur/debian/patches/makefile_libode.patch
   packages/trunk/stormbaancoureur/debian/rules
Log:
  * New upstream release
Now 2.0.1
    + Update patches for new upstream
  * Remove XS- prefix from VCS fields
  * Remove Homepage field from package descriptions
Jon already added Homepage field in control
  * Bump Standards Version to 3.7.3 (No changes needed)
  * Add call to dh_desktop in rules
Update svn-bp:origUrl to new orig tarbal



Property changes on: packages/trunk/stormbaancoureur/debian
___________________________________________________________________
Name: svn-bp:origUrl
   + 
http://pkg-games.alioth.debian.org/tarballs/stormbaancoureur_2.0.1.orig.tar.gz

Modified: packages/trunk/stormbaancoureur/debian/changelog
===================================================================
--- packages/trunk/stormbaancoureur/debian/changelog    2008-01-03 16:29:34 UTC 
(rev 5199)
+++ packages/trunk/stormbaancoureur/debian/changelog    2008-01-03 20:51:32 UTC 
(rev 5200)
@@ -1,14 +1,19 @@
-stormbaancoureur (1.5.3-1) UNRELEASED; urgency=low
+stormbaancoureur (2.0.1-1) unstable; urgency=low
 
   [ Barry deFreese ]
   * New upstream release
+    + Update patches for new upstream
   * Add myself to uploaders
   * Remove deprecated Encoding tag from desktop file
+  * Remove XS- prefix from VCS fields
+  * Remove Homepage field from package descriptions
+  * Bump Standards Version to 3.7.3 (No changes needed)
+  * Add call to dh_desktop in rules
 
   [ Jon Dowland ]
   * add Homepage: to source stanza
 
- -- Jon Dowland <[EMAIL PROTECTED]>  Mon, 03 Dec 2007 17:35:05 +0000
+ -- Barry deFreese <[EMAIL PROTECTED]>  Thu, 03 Jan 2008 10:47:41 -0500
 
 stormbaancoureur (1.5.2-1) unstable; urgency=low
 

Modified: packages/trunk/stormbaancoureur/debian/control
===================================================================
--- packages/trunk/stormbaancoureur/debian/control      2008-01-03 16:29:34 UTC 
(rev 5199)
+++ packages/trunk/stormbaancoureur/debian/control      2008-01-03 20:51:32 UTC 
(rev 5200)
@@ -5,9 +5,9 @@
 Uploaders: Miriam Ruiz <[EMAIL PROTECTED]>, Barry deFreese <[EMAIL PROTECTED]>
 Build-Depends: debhelper (>= 5), quilt, plib1.8.4-dev, libode0-dev (>= 0.8),
  freeglut3-dev, libasound2-dev
-Standards-Version: 3.7.2
-XS-Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/stormbaancoureur/
-XS-Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-games/packages/trunk/stormbaancoureur/?op=log
+Standards-Version: 3.7.3
+Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/stormbaancoureur/
+Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-games/packages/trunk/stormbaancoureur/?op=log
 Homepage: http://bram.creative4vision.nl/stormbaancoureur/
 
 Package: stormbaancoureur
@@ -18,8 +18,6 @@
  on total control of the car. If you want to master it, try to have the laws
  of physics work with you, not against you.
  The game was formally known as Sturmbahnfahrer.
- .
-  Homepage: http://bram.creative4vision.nl/stormbaancoureur/
 
 Package: stormbaancoureur-data
 Architecture: all
@@ -31,5 +29,3 @@
  of physics work with you, not against you.
  .
  This package includes the architecture-independent game data.
- .
-  Homepage: http://bram.creative4vision.nl/stormbaancoureur/

Modified: 
packages/trunk/stormbaancoureur/debian/patches/fullscreen_optional.patch
===================================================================
--- packages/trunk/stormbaancoureur/debian/patches/fullscreen_optional.patch    
2008-01-03 16:29:34 UTC (rev 5199)
+++ packages/trunk/stormbaancoureur/debian/patches/fullscreen_optional.patch    
2008-01-03 20:51:32 UTC (rev 5200)
@@ -1,6 +1,7 @@
---- stormbaancoureur-1.5.orig/src-stormbaancoureur/main.cxx
-+++ stormbaancoureur-1.5/src-stormbaancoureur/main.cxx
-@@ -702,6 +702,13 @@
+diff -urN stormbaancoureur-2.0.1.orig/src-stormbaancoureur/main.cxx 
stormbaancoureur-2.0.1/src-stormbaancoureur/main.cxx
+--- stormbaancoureur-2.0.1.orig/src-stormbaancoureur/main.cxx  2008-01-03 
00:14:19.000000000 -0500
++++ stormbaancoureur-2.0.1/src-stormbaancoureur/main.cxx       2008-01-03 
09:24:45.000000000 -0500
+@@ -1175,6 +1175,13 @@
    fprintf(stderr,"plib is (c) by Steve Baker\n");
    fprintf(stderr,"OpenDE is (c) by Russel L. Smith\n");
  
@@ -14,12 +15,12 @@
    char *bindirname  = dirname(argv[0]);
    if (!strcmp(bindirname,"."))
      dirprefix="/usr/share/games/stormbaancoureur";
-@@ -737,7 +744,7 @@
-   glutSpecialFunc (special);
-   glutSpecialUpFunc (specialUp);
-   glutIdleFunc (idle);
+@@ -1212,7 +1219,7 @@
+   glutMouseFunc(mouse);
+   glutMotionFunc(motion);
+   glutIdleFunc(idle);
 -  glutFullScreen();
 +  if (fullscreen) glutFullScreen();
  
-   ssgInit();
- 
+   do_shadows = OglCanDoShadowing();
+   fprintf

Modified: packages/trunk/stormbaancoureur/debian/patches/makefile_cflags.patch
===================================================================
--- packages/trunk/stormbaancoureur/debian/patches/makefile_cflags.patch        
2008-01-03 16:29:34 UTC (rev 5199)
+++ packages/trunk/stormbaancoureur/debian/patches/makefile_cflags.patch        
2008-01-03 20:51:32 UTC (rev 5200)
@@ -1,19 +1,21 @@
---- stormbaancoureur-1.5.orig/src-stormbaancoureur/Makefile
-+++ stormbaancoureur-1.5/src-stormbaancoureur/Makefile
-@@ -8,13 +8,15 @@
+diff -urN stormbaancoureur-2.0.1.orig/src-stormbaancoureur/Makefile 
stormbaancoureur-2.0.1/src-stormbaancoureur/Makefile
+--- stormbaancoureur-2.0.1.orig/src-stormbaancoureur/Makefile  2008-01-03 
00:29:52.000000000 -0500
++++ stormbaancoureur-2.0.1/src-stormbaancoureur/Makefile       2008-01-03 
09:27:34.000000000 -0500
+@@ -12,6 +12,8 @@
  #ODEPREFIX=$(HOME)
  #CXX=g++
  
-+CFLAGS=-O2 -g -Wall
++CFLAGS=-02 -g -Wall
 +
  # END OF CUSTOM SETTINGS
  
  CXXFLAGS=\
-   -I$(ODEPREFIX)/include \
+@@ -20,7 +22,7 @@
    -I$(PLIBPREFIX)/include \
    -I../src-common \
+   -DGAMEVERSION=$(VERSION) \
 -  -O2 -g -Wall
 +  $(CFLAGS)
  
  LFLAGS=\
-   -L$(PLIBPREFIX)/lib \
+   -L$(PLIBPREFIX)/$(LIBDIRNAME) \

Modified: packages/trunk/stormbaancoureur/debian/patches/makefile_libode.patch
===================================================================
--- packages/trunk/stormbaancoureur/debian/patches/makefile_libode.patch        
2008-01-03 16:29:34 UTC (rev 5199)
+++ packages/trunk/stormbaancoureur/debian/patches/makefile_libode.patch        
2008-01-03 20:51:32 UTC (rev 5200)
@@ -1,6 +1,7 @@
---- stormbaancoureur-1.5rc1.orig/src-stormbaancoureur/Makefile
-+++ stormbaancoureur-1.5rc1/src-stormbaancoureur/Makefile
-@@ -37,7 +37,7 @@
+diff -urN stormbaancoureur-2.0.1.orig/src-stormbaancoureur/Makefile 
stormbaancoureur-2.0.1/src-stormbaancoureur/Makefile
+--- stormbaancoureur-2.0.1.orig/src-stormbaancoureur/Makefile  2008-01-03 
09:35:21.000000000 -0500
++++ stormbaancoureur-2.0.1/src-stormbaancoureur/Makefile       2008-01-03 
09:36:01.000000000 -0500
+@@ -45,7 +45,7 @@
  
  
  LIBS=\

Modified: packages/trunk/stormbaancoureur/debian/rules
===================================================================
--- packages/trunk/stormbaancoureur/debian/rules        2008-01-03 16:29:34 UTC 
(rev 5199)
+++ packages/trunk/stormbaancoureur/debian/rules        2008-01-03 20:51:32 UTC 
(rev 5200)
@@ -62,6 +62,7 @@
        dh_install
        dh_installmenu
        dh_installman debian/stormbaancoureur.6
+       dh_desktop
        dh_link
        dh_strip
        dh_compress


_______________________________________________
Pkg-games-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

Reply via email to