diff options
author | wiz <wiz@pkgsrc.org> | 2007-07-26 00:08:40 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2007-07-26 00:08:40 +0000 |
commit | 31525bf32b247fe8ee3840487b5013f8253865ee (patch) | |
tree | 1235c5540fb42756c84fd87bdeeaeb9a716bd254 /devel/SDL_ttf | |
parent | f27e57402e5a4bb78282827ea80ca98c8eecc0b4 (diff) | |
download | pkgsrc-31525bf32b247fe8ee3840487b5013f8253865ee.tar.gz |
Update to 2.0.9:
2.0.9:
Kanou Hiroki - Sat Jul 14 23:15:40 PDT 2007
* Fixed rendering of fonts with 2 bit and 4 bit embedded graymaps
Sam Lantinga - Wed Jun 13 00:32:29 PDT 2007
* Fixed bug in solid bold glyph rendering (thanks Roy!)
Ryan Gordon - Tue Feb 13 10:19:00 2007 UTC
* Updated to build with the latest version of FreeType
Sam Lantinga - Mon Jun 5 16:22:51 2006 UTC
* Fixed crash when passing NULL to TTF_CloseFont()
Diffstat (limited to 'devel/SDL_ttf')
-rw-r--r-- | devel/SDL_ttf/Makefile | 4 | ||||
-rw-r--r-- | devel/SDL_ttf/distinfo | 9 | ||||
-rw-r--r-- | devel/SDL_ttf/patches/patch-aa | 33 |
3 files changed, 6 insertions, 40 deletions
diff --git a/devel/SDL_ttf/Makefile b/devel/SDL_ttf/Makefile index 1dae0d08de4..1f5c1aadd0f 100644 --- a/devel/SDL_ttf/Makefile +++ b/devel/SDL_ttf/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.25 2007/05/19 22:18:13 heinz Exp $ +# $NetBSD: Makefile,v 1.26 2007/07/26 00:08:40 wiz Exp $ -DISTNAME= SDL_ttf-2.0.8 +DISTNAME= SDL_ttf-2.0.9 CATEGORIES= devel MASTER_SITES= http://www.libsdl.org/projects/SDL_ttf/release/ diff --git a/devel/SDL_ttf/distinfo b/devel/SDL_ttf/distinfo index 8f7be02b4cc..e1445e10489 100644 --- a/devel/SDL_ttf/distinfo +++ b/devel/SDL_ttf/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.6 2006/06/12 16:24:44 wiz Exp $ +$NetBSD: distinfo,v 1.7 2007/07/26 00:08:40 wiz Exp $ -SHA1 (SDL_ttf-2.0.8.tar.gz) = a2c4cb1525173414ca7e5eaefbabadca69bd1114 -RMD160 (SDL_ttf-2.0.8.tar.gz) = fd4fc1d56e0dc982fb83bc1c41609d26d3a1d8b6 -Size (SDL_ttf-2.0.8.tar.gz) = 2457385 bytes -SHA1 (patch-aa) = 208dd6aedd809b8177229f9d683593cf9627d8cb +SHA1 (SDL_ttf-2.0.9.tar.gz) = 6bc3618b08ddbbf565fe8f63f624782c15e1cef2 +RMD160 (SDL_ttf-2.0.9.tar.gz) = 4e0b0f727f73b5d8a579e3e615ab4f50ec992b82 +Size (SDL_ttf-2.0.9.tar.gz) = 3143838 bytes diff --git a/devel/SDL_ttf/patches/patch-aa b/devel/SDL_ttf/patches/patch-aa deleted file mode 100644 index 5a53ecb9730..00000000000 --- a/devel/SDL_ttf/patches/patch-aa +++ /dev/null @@ -1,33 +0,0 @@ -$NetBSD: patch-aa,v 1.3 2006/06/12 16:24:44 wiz Exp $ - -From -http://www.freetype.org/freetype2/patches/SDL_ttf-2.0.7-noftinternals.patch - ---- SDL_ttf.c.orig 2006-05-01 09:26:17.000000000 +0000 -+++ SDL_ttf.c -@@ -43,16 +43,6 @@ - #include FT_FREETYPE_H - #include FT_OUTLINE_H - #include FT_TRUETYPE_IDS_H --/* --#include <freetype/freetype.h> --#include <freetype/ftoutln.h> --#include <freetype/ttnameid.h> --*/ --#include <freetype/internal/ftobjs.h> -- --#ifndef FT_OPEN_STREAM --#define FT_OPEN_STREAM ft_open_stream --#endif - - #include "SDL.h" - #include "SDL_endian.h" -@@ -278,7 +268,7 @@ TTF_Font* TTF_OpenFontIndexRW( SDL_RWops - } - memset(stream, 0, sizeof(*stream)); - -- stream->memory = library->memory; -+ stream->memory = NULL; /* set by FT_Open_Face */ - stream->read = RWread; - stream->descriptor.pointer = src; - stream->pos = (unsigned long)position; |