r8034 - packages/trunk/love/debian

Miriam Ruiz miriam at alioth.debian.org
Sat Aug 30 13:37:55 UTC 2008


Author: miriam
Date: 2008-08-30 13:37:54 +0000 (Sat, 30 Aug 2008)
New Revision: 8034

Modified:
   packages/trunk/love/debian/copyright
   packages/trunk/love/debian/rules
Log:
Make gcc use proper CFLAGS and LDFLAGS
CLarify license issues



Modified: packages/trunk/love/debian/copyright
===================================================================
--- packages/trunk/love/debian/copyright	2008-08-30 04:43:09 UTC (rev 8033)
+++ packages/trunk/love/debian/copyright	2008-08-30 13:37:54 UTC (rev 8034)
@@ -292,14 +292,17 @@
 shouldn't be a problem, as LÖVE doesn't link against anything under such
 license.
 
-    External libraries with against which LÖVE links:
-        boost (BSL)
-        SDL (LGPL)
-        SDL_mixer (LGPL)
-        DevIL (LGPL)
-        FreeType 2 (FTL)
-        PhysFS (ZLIB)
-        Lua (MIT)
+    List of libraries and tools used by LÖVE:
+    * Lua (MIT)
+    * OpenGL
+    * SDL (LGPL)
+    * SDL_mixer (LGPL)
+    * FreeType 2 (FTL)
+    * DevIL (LGPL)
+    * PhysFS (ZLIB)
+    * Box2D (ZLIB)
+    * boost (BSL)
+    * SWIG (BSD)
 
 Demos:
 

Modified: packages/trunk/love/debian/rules
===================================================================
--- packages/trunk/love/debian/rules	2008-08-30 04:43:09 UTC (rev 8033)
+++ packages/trunk/love/debian/rules	2008-08-30 13:37:54 UTC (rev 8034)
@@ -2,7 +2,9 @@
 
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
-
+ 
+LDFLAGS=-Wl,-z,defs -Wl,-as-needed
+ 
 patch:
 	$(MAKE) -f /usr/share/quilt/quilt.make patch
 
@@ -15,7 +17,10 @@
 build: build-stamp
 build-stamp: configure-stamp  
 	dh_testdir
-	$(MAKE)
+	$(MAKE) \
+		CFLAGS="$(CFLAGS)" \
+		CFLAGS_MOD="$(CFLAGS)" \
+		LDFLAGS="$(LDFLAGS)"
 	#docbook-to-man debian/love.sgml > love.1
 	touch $@
 




More information about the Pkg-games-commits mailing list