r14811 - in packages/branches/love/0.5/debian: . patches source

Miriam Ruiz miriam at moszumanska.debian.org
Mon Jan 13 19:55:02 UTC 2014


Author: miriam
Date: 2014-01-13 19:55:02 +0000 (Mon, 13 Jan 2014)
New Revision: 14811

Added:
   packages/branches/love/0.5/debian/patches/securify.patch
   packages/branches/love/0.5/debian/source/include-binaries
Modified:
   packages/branches/love/0.5/debian/changelog
   packages/branches/love/0.5/debian/control
   packages/branches/love/0.5/debian/patches/series
   packages/branches/love/0.5/debian/rules
Log:
Improve package



Modified: packages/branches/love/0.5/debian/changelog
===================================================================
--- packages/branches/love/0.5/debian/changelog	2014-01-13 19:29:29 UTC (rev 14810)
+++ packages/branches/love/0.5/debian/changelog	2014-01-13 19:55:02 UTC (rev 14811)
@@ -3,7 +3,7 @@
   [ Miriam Ruiz ]
   * Changed package name
   * Prepare package for co-existence with with other versions
-  * Upgrade Standards-Version from 3.8.1 to 3.9.1
+  * Upgrade Standards-Version from 3.8.1 to 3.9.4
   * Moved to source format 3.0 (quilt). See http://wiki.debian.org/Projects/DebSrc3.0
   * Removed dependency from SNG
 

Modified: packages/branches/love/0.5/debian/control
===================================================================
--- packages/branches/love/0.5/debian/control	2014-01-13 19:29:29 UTC (rev 14810)
+++ packages/branches/love/0.5/debian/control	2014-01-13 19:55:02 UTC (rev 14811)
@@ -7,7 +7,7 @@
  libboost-dev, libsdl1.2-dev, libsdl-mixer1.2-dev, liblua5.1-0-dev,
  libphysfs-dev, libdevil-dev, libfreetype6-dev,
  lua5.1, liblua5.1-expat0
-Standards-Version: 3.9.1
+Standards-Version: 3.9.4
 Homepage: http://love2d.org/
 Vcs-Svn: svn://anonscm.debian.org/pkg-games/packages/branches/love/0.5/
 Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-games/packages/branches/love/0.5/

Added: packages/branches/love/0.5/debian/patches/securify.patch
===================================================================
--- packages/branches/love/0.5/debian/patches/securify.patch	                        (rev 0)
+++ packages/branches/love/0.5/debian/patches/securify.patch	2014-01-13 19:55:02 UTC (rev 14811)
@@ -0,0 +1,13 @@
+Index: love-0.5/src/opengl/Image.cpp
+===================================================================
+--- love-0.5.orig/src/opengl/Image.cpp	2014-01-13 20:25:50.000000000 +0100
++++ love-0.5/src/opengl/Image.cpp	2014-01-13 20:34:52.846285672 +0100
+@@ -176,7 +176,7 @@
+ 
+ 		// Check for errors
+ 		if(!success)
+-			printf((const char *)iluErrorString(ilGetError()));
++			printf("%s", (const char *)iluErrorString(ilGetError()));
+ 
+ 		this->width	= (float)ilGetInteger(IL_IMAGE_WIDTH);
+ 		this->height = (float)ilGetInteger(IL_IMAGE_HEIGHT);

Modified: packages/branches/love/0.5/debian/patches/series
===================================================================
--- packages/branches/love/0.5/debian/patches/series	2014-01-13 19:29:29 UTC (rev 14810)
+++ packages/branches/love/0.5/debian/patches/series	2014-01-13 19:55:02 UTC (rev 14811)
@@ -2,3 +2,4 @@
 no-ILvoid-type.diff
 cstdio.patch
 prgname.patch
+securify.patch

Modified: packages/branches/love/0.5/debian/rules
===================================================================
--- packages/branches/love/0.5/debian/rules	2014-01-13 19:29:29 UTC (rev 14810)
+++ packages/branches/love/0.5/debian/rules	2014-01-13 19:55:02 UTC (rev 14811)
@@ -2,8 +2,10 @@
 
 PRG_SUFFIX=0.5
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS)
+CFLAGS:=$(shell dpkg-buildflags --get CFLAGS)
+CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS)
+LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS) -Wl,-z,defs -Wl,-as-needed
 
 configure: configure-stamp
 configure-stamp: 
@@ -19,7 +21,9 @@
 		--mandir=\$${prefix}/share/man \
 		--infodir=\$${prefix}/share/info \
 		CFLAGS="$(CFLAGS)" \
-		LDFLAGS="-Wl,-z,defs  -Wl,-as-needed"
+		LDFLAGS="$(LDFLAGS)" \
+		CPPFLAGS="$(CPPFLAGS)" \
+		CXXFLAGS="$(CXXFLAGS)"
 	touch $@
 
 build-arch: build-arch-stamp

Added: packages/branches/love/0.5/debian/source/include-binaries
===================================================================
--- packages/branches/love/0.5/debian/source/include-binaries	                        (rev 0)
+++ packages/branches/love/0.5/debian/source/include-binaries	2014-01-13 19:55:02 UTC (rev 14811)
@@ -0,0 +1,2 @@
+debian/pixmaps/love-app-0.5.png
+debian/pixmaps/love-game-0.5.png




More information about the Pkg-games-commits mailing list