r14747 - in packages/trunk/love/debian: . patches
Juhani Numminen
jsonic-guest at moszumanska.debian.org
Tue Dec 31 17:39:41 UTC 2013
Author: jsonic-guest
Date: 2013-12-31 17:39:41 +0000 (Tue, 31 Dec 2013)
New Revision: 14747
Added:
packages/trunk/love/debian/patches/fix-freetype-includes.patch
Modified:
packages/trunk/love/debian/changelog
packages/trunk/love/debian/patches/series
Log:
Add fix-freetype-includes.patch to fix a FTBFS. Closes: #733357
Also, set urgency to medium due to a fix for a RC bug.
Modified: packages/trunk/love/debian/changelog
===================================================================
--- packages/trunk/love/debian/changelog 2013-12-31 16:49:09 UTC (rev 14746)
+++ packages/trunk/love/debian/changelog 2013-12-31 17:39:41 UTC (rev 14747)
@@ -1,3 +1,11 @@
+love (0.8.0-7) UNRELEASED; urgency=medium
+
+ * Team upload.
+ * Add fix-freetype-includes.patch to fix a FTBFS. Closes: #733357
+ * Set urgency to medium due to a fix for a RC bug.
+
+ -- Juhani Numminen <juhaninumminen0 at gmail.com> Tue, 31 Dec 2013 18:22:04 +0200
+
love (0.8.0-6) unstable; urgency=low
* Fixed stupid error, /usr/share/binfmts/love was not installed
Added: packages/trunk/love/debian/patches/fix-freetype-includes.patch
===================================================================
--- packages/trunk/love/debian/patches/fix-freetype-includes.patch (rev 0)
+++ packages/trunk/love/debian/patches/fix-freetype-includes.patch 2013-12-31 17:39:41 UTC (rev 14747)
@@ -0,0 +1,39 @@
+Description: Fix build failure with freetype 2.5.1
+Author: Juhani Numminen <juhaninumminen0 at gmail.com>
+Bug-Debian: http://bugs.debian.org/733357
+
+--- love-0.8.0.orig/src/modules/font/freetype/TrueTypeRasterizer.h
++++ love-0.8.0/src/modules/font/freetype/TrueTypeRasterizer.h
+@@ -27,10 +27,10 @@
+
+ // TrueType2
+ #include <ft2build.h>
+-#include <freetype/freetype.h>
+-#include <freetype/ftglyph.h>
+-#include <freetype/ftoutln.h>
+-#include <freetype/fttrigon.h>
++#include FT_FREETYPE_H
++#include FT_GLYPH_H
++#include FT_OUTLINE_H
++#include FT_TRIGONOMETRY_H
+
+ namespace love
+ {
+
+--- love-0.8.0.orig/src/modules/font/freetype/Font.h
++++ love-0.8.0/src/modules/font/freetype/Font.h
+@@ -30,10 +30,10 @@
+ #else
+ #include <ft2build.h>
+ #endif
+-#include <freetype/freetype.h>
+-#include <freetype/ftglyph.h>
+-#include <freetype/ftoutln.h>
+-#include <freetype/fttrigon.h>
++#include FT_FREETYPE_H
++#include FT_GLYPH_H
++#include FT_OUTLINE_H
++#include FT_TRIGONOMETRY_H
+
+ namespace love
+ {
Modified: packages/trunk/love/debian/patches/series
===================================================================
--- packages/trunk/love/debian/patches/series 2013-12-31 16:49:09 UTC (rev 14746)
+++ packages/trunk/love/debian/patches/series 2013-12-31 17:39:41 UTC (rev 14747)
@@ -1,3 +1,4 @@
scripts_source.patch
scripts_refresh.patch
glee_from_system.patch
+fix-freetype-includes.patch
More information about the Pkg-games-commits
mailing list