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

Miriam Ruiz miriam at alioth.debian.org
Thu Aug 14 07:42:47 UTC 2008


Author: miriam
Date: 2008-08-14 07:42:47 +0000 (Thu, 14 Aug 2008)
New Revision: 7925

Added:
   packages/trunk/love/debian/patches/
   packages/trunk/love/debian/patches/makefile.patch
   packages/trunk/love/debian/patches/series
Log:
Added patch to fix makefile



Added: packages/trunk/love/debian/patches/makefile.patch
===================================================================
--- packages/trunk/love/debian/patches/makefile.patch	                        (rev 0)
+++ packages/trunk/love/debian/patches/makefile.patch	2008-08-14 07:42:47 UTC (rev 7925)
@@ -0,0 +1,24 @@
+# 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
+===================================================================
+--- 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
+@@ -6,6 +6,7 @@
+ CC = g++
+ CFLAGS = -g -O2 -Wall
+ CFLAGS_MOD = -g0 -O3
++LDFLAGS =
+ BINDIR = bin
+ 
+ # Inclusion paths.
+@@ -187,7 +188,7 @@
+ $(LOVE_TARGET): $(LOVE_OBJ) $(LIBLOVE_OBJ) $(SDLTIMER_OBJ) $(PHYSFS_OBJ) \
+ 		  $(OPENGL_OBJ) $(SDLKEYBOARD_OBJ) $(SDLMOUSE_OBJ) \
+ 		  $(SDLMIXER_OBJ) $(SYSTEM_OBJ)
+-	$(CC) $(LOVE_LDFLAGS) -o $(BINDIR)/$@ $^
++	$(CC) $(LDFLAGS) -o $(BINDIR)/$@ $^ $(LOVE_LDFLAGS)
+ 
+ $(LOVE_OBJDIR)/%.o: $(LOVE_SRCDIR)/%.cpp
+ 	$(CC) $(CFLAGS) $(LOVE_INCLUDES) -c $< -o $@

Added: packages/trunk/love/debian/patches/series
===================================================================
--- packages/trunk/love/debian/patches/series	                        (rev 0)
+++ packages/trunk/love/debian/patches/series	2008-08-14 07:42:47 UTC (rev 7925)
@@ -0,0 +1 @@
+makefile.patch




More information about the Pkg-games-commits mailing list