r8023 - in packages/trunk/love/debian: . patches

Miriam Ruiz miriam at alioth.debian.org
Sat Aug 30 01:17:38 UTC 2008


Author: miriam
Date: 2008-08-30 01:17:38 +0000 (Sat, 30 Aug 2008)
New Revision: 8023

Added:
   packages/trunk/love/debian/patches/headers.patch
Modified:
   packages/trunk/love/debian/changelog
   packages/trunk/love/debian/control
   packages/trunk/love/debian/patches/makefile.patch
   packages/trunk/love/debian/patches/series
Log:
New Upstream Release



Modified: packages/trunk/love/debian/changelog
===================================================================
--- packages/trunk/love/debian/changelog	2008-08-29 23:54:12 UTC (rev 8022)
+++ packages/trunk/love/debian/changelog	2008-08-30 01:17:38 UTC (rev 8023)
@@ -1,6 +1,6 @@
-love (0.3.2-1) UNRELEASED; urgency=low
+love (0.4.0-1) UNRELEASED; urgency=low
 
+  [ Miriam Ruiz ]
   * Initial release (Closes: #494955)
 
- -- Miriam Ruiz <little_miry at yahoo.es>  Wed, 13 Aug 2008 12:17:41 +0200
-
+ -- Miriam Ruiz <little_miry at yahoo.es>  Sat, 30 Aug 2008 02:50:02 +0200

Modified: packages/trunk/love/debian/control
===================================================================
--- packages/trunk/love/debian/control	2008-08-29 23:54:12 UTC (rev 8022)
+++ packages/trunk/love/debian/control	2008-08-30 01:17:38 UTC (rev 8023)
@@ -45,3 +45,21 @@
  .
  This package includes the development files needed to embed LÖVE in a
  C program.
+
+Package: liblove-dbg
+Section: libdevel
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: easy game development framework based in Lua and OpenGL
+ LÖVE was created to be a user-friendly engine in which simple (or
+ complicated) games could be made without having extensive knowledge
+ of system or graphics functions and without having to dedicate time
+ towards developing the same engine features time and time again.
+ .
+ Developed with cross-platform implementation in mind, it utilizes the
+ latest open source libraries to deliver a similar game experience,
+ independent of operating system. By relying on the Lua scripting language
+ for game-specific programming, it allows even the novice game creator to
+ quickly and efficiently develop an idea into a fully working game.
+ .
+ This package includes the debug files for LÖVE.

Added: packages/trunk/love/debian/patches/headers.patch
===================================================================
--- packages/trunk/love/debian/patches/headers.patch	                        (rev 0)
+++ packages/trunk/love/debian/patches/headers.patch	2008-08-30 01:17:38 UTC (rev 8023)
@@ -0,0 +1,63 @@
+# Copyright (C) 2008  Miriam Ruiz <little_miry at yahoo.es>
+# Distributed under the same license as the game. See debian/copyright.
+
+Index: love/src/box2d/Source/Collision/b2BroadPhase.cpp
+===================================================================
+--- love.orig/src/box2d/Source/Collision/b2BroadPhase.cpp	2008-08-30 03:09:48.000000000 +0200
++++ love/src/box2d/Source/Collision/b2BroadPhase.cpp	2008-08-30 03:09:49.000000000 +0200
+@@ -18,6 +18,7 @@
+ 
+ #include "b2BroadPhase.h"
+ #include <algorithm>
++#include <string.h>
+ 
+ // Notes:
+ // - we use bound arrays instead of linked lists for cache coherence.
+Index: love/src/box2d/Source/Common/b2BlockAllocator.cpp
+===================================================================
+--- love.orig/src/box2d/Source/Common/b2BlockAllocator.cpp	2008-08-30 03:09:48.000000000 +0200
++++ love/src/box2d/Source/Common/b2BlockAllocator.cpp	2008-08-30 03:09:49.000000000 +0200
+@@ -20,6 +20,7 @@
+ #include <cstdlib>
+ #include <memory>
+ #include <climits>
++#include <string.h>
+ 
+ int32 b2BlockAllocator::s_blockSizes[b2_blockSizes] = 
+ {
+Index: love/src/box2d/Source/Dynamics/Contacts/b2CircleContact.cpp
+===================================================================
+--- love.orig/src/box2d/Source/Dynamics/Contacts/b2CircleContact.cpp	2008-08-30 03:09:48.000000000 +0200
++++ love/src/box2d/Source/Dynamics/Contacts/b2CircleContact.cpp	2008-08-30 03:09:49.000000000 +0200
+@@ -22,6 +22,7 @@
+ #include "../../Common/b2BlockAllocator.h"
+ 
+ #include <new>
++#include <string.h>
+ 
+ b2Contact* b2CircleContact::Create(b2Shape* shape1, b2Shape* shape2, b2BlockAllocator* allocator)
+ {
+Index: love/src/box2d/Source/Dynamics/Contacts/b2PolyAndCircleContact.cpp
+===================================================================
+--- love.orig/src/box2d/Source/Dynamics/Contacts/b2PolyAndCircleContact.cpp	2008-08-30 03:09:48.000000000 +0200
++++ love/src/box2d/Source/Dynamics/Contacts/b2PolyAndCircleContact.cpp	2008-08-30 03:09:49.000000000 +0200
+@@ -22,6 +22,7 @@
+ #include "../../Common/b2BlockAllocator.h"
+ 
+ #include <new>
++#include <string.h>
+ 
+ b2Contact* b2PolyAndCircleContact::Create(b2Shape* shape1, b2Shape* shape2, b2BlockAllocator* allocator)
+ {
+Index: love/src/box2d/Source/Dynamics/Contacts/b2PolyContact.cpp
+===================================================================
+--- love.orig/src/box2d/Source/Dynamics/Contacts/b2PolyContact.cpp	2008-08-30 03:10:40.000000000 +0200
++++ love/src/box2d/Source/Dynamics/Contacts/b2PolyContact.cpp	2008-08-30 03:10:52.000000000 +0200
+@@ -23,6 +23,7 @@
+ 
+ #include <memory>
+ #include <new>
++#include <string.h>
+ 
+ b2Contact* b2PolygonContact::Create(b2Shape* shape1, b2Shape* shape2, b2BlockAllocator* allocator)
+ {

Modified: packages/trunk/love/debian/patches/makefile.patch
===================================================================
--- packages/trunk/love/debian/patches/makefile.patch	2008-08-29 23:54:12 UTC (rev 8022)
+++ packages/trunk/love/debian/patches/makefile.patch	2008-08-30 01:17:38 UTC (rev 8023)
@@ -1,22 +1,22 @@
 # Copyright (C) 2008  Miriam Ruiz <little_miry at yahoo.es>
 # Distributed under the same license as the game. See debian/copyright.
 
-Index: love-0.3.2/Makefile
+Index: love/Makefile
 ===================================================================
---- love-0.3.2.orig/Makefile	2008-08-13 14:19:17.000000000 +0200
-+++ love-0.3.2/Makefile	2008-08-13 14:21:44.000000000 +0200
+--- love.orig/Makefile	2008-08-29 01:42:40.000000000 +0200
++++ love/Makefile	2008-08-30 02:55:05.000000000 +0200
 @@ -6,6 +6,7 @@
  CC = g++
- CFLAGS = -g -O2 -Wall
+ CFLAGS = -g0 -O3 -Wall
  CFLAGS_MOD = -g0 -O3
 +LDFLAGS =
  BINDIR = bin
  
  # Inclusion paths.
-@@ -187,7 +188,7 @@
+@@ -249,7 +250,7 @@
  $(LOVE_TARGET): $(LOVE_OBJ) $(LIBLOVE_OBJ) $(SDLTIMER_OBJ) $(PHYSFS_OBJ) \
  		  $(OPENGL_OBJ) $(SDLKEYBOARD_OBJ) $(SDLMOUSE_OBJ) \
- 		  $(SDLMIXER_OBJ) $(SYSTEM_OBJ)
+ 		  $(SDLMIXER_OBJ) $(SYSTEM_OBJ) $(BOX2D_OBJ)
 -	$(CC) $(LOVE_LDFLAGS) -o $(BINDIR)/$@ $^
 +	$(CC) $(LDFLAGS) -o $(BINDIR)/$@ $^ $(LOVE_LDFLAGS)
  

Modified: packages/trunk/love/debian/patches/series
===================================================================
--- packages/trunk/love/debian/patches/series	2008-08-29 23:54:12 UTC (rev 8022)
+++ packages/trunk/love/debian/patches/series	2008-08-30 01:17:38 UTC (rev 8023)
@@ -1 +1,2 @@
 makefile.patch
+headers.patch




More information about the Pkg-games-commits mailing list