[arch-commits] Commit in sdl_ttf/trunk (PKGBUILD bug1433.patch)

Jan Steffens heftig at archlinux.org
Wed Feb 29 21:53:11 UTC 2012


    Date: Wednesday, February 29, 2012 @ 16:53:10
  Author: heftig
Revision: 151696

Fix FS#28674

Added:
  sdl_ttf/trunk/bug1433.patch
Modified:
  sdl_ttf/trunk/PKGBUILD

---------------+
 PKGBUILD      |   12 +++++++++---
 bug1433.patch |   11 +++++++++++
 2 files changed, 20 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2012-02-29 21:30:41 UTC (rev 151695)
+++ PKGBUILD	2012-02-29 21:53:10 UTC (rev 151696)
@@ -5,18 +5,24 @@
 
 pkgname=sdl_ttf
 pkgver=2.0.11
-pkgrel=1
+pkgrel=2
 pkgdesc="A library that allows you to use TrueType fonts in your SDL applications"
 arch=('i686' 'x86_64')
 license=('custom')
 url="http://www.libsdl.org/projects/SDL_ttf/"
 depends=('sdl>=1.2.12' 'freetype2')
 options=('!libtool')
-source=(http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-$pkgver.tar.gz)
-md5sums=('61e29bd9da8d245bc2471d1b2ce591aa')
+source=(http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-$pkgver.tar.gz
+        bug1433.patch)
+md5sums=('61e29bd9da8d245bc2471d1b2ce591aa'
+         'f847697e18eec539aaf3ffb96996abbf')
 
 build() {
   cd "$srcdir/SDL_ttf-$pkgver"
+  
+  # Fix FS#28674
+  patch -Ni "$srcdir/bug1433.patch"
+ 
   ./configure --prefix=/usr --disable-static
   make
 }

Added: bug1433.patch
===================================================================
--- bug1433.patch	                        (rev 0)
+++ bug1433.patch	2012-02-29 21:53:10 UTC (rev 151696)
@@ -0,0 +1,11 @@
+--- SDL_ttf.c.orig	2012-02-12 16:36:41.859977617 +0100
++++ SDL_ttf.c	2012-02-12 16:36:53.696580159 +0100
+@@ -1747,7 +1747,7 @@
+ 	/* Copy the character from the pixmap */
+ 	src = glyph->pixmap.buffer;
+ 	dst = (Uint8*) textbuf->pixels;
+-	for ( row = 0; row < glyph->bitmap.rows; ++row ) {
++	for ( row = 0; row < glyph->pixmap.rows; ++row ) {
+ 		memcpy( dst, src, glyph->pixmap.width );
+ 		src += glyph->pixmap.pitch;
+ 		dst += textbuf->pitch;
\ No newline at end of file




More information about the arch-commits mailing list