ports/117611: [Maintainer-update]: graphics/sdl_ttf version update to 2.0.9

Marcus von Appen mva at sysfault.org
Sun Oct 28 17:50:01 UTC 2007


>Number:         117611
>Category:       ports
>Synopsis:       [Maintainer-update]: graphics/sdl_ttf version update to 2.0.9
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sun Oct 28 17:50:01 UTC 2007
>Closed-Date:
>Last-Modified:
>Originator:     Marcus von Appen
>Release:        FreeBSD 6.3-PRERELEASE i386
>Organization:
>Environment:
System: FreeBSD medusa.sysfault.org 6.3-PRERELEASE FreeBSD 6.3-PRERELEASE #1: Sun Oct 28 11:05:41 CET 2007
>Description:
SDL_ttf version update to 2.0.9

Note to the committer: files/patch-Makefile.in was added,
files/patch-SDL_ttf.c and files/patch-aa were removed.
This also fixes PR ports/115656.

I'll take over the maintainership.

>How-To-Repeat:
>Fix:

diff -Nur /usr/ports/graphics/sdl_ttf/Makefile /usr/ports/graphics/sdl_ttf.new/Makefile
--- /usr/ports/graphics/sdl_ttf/Makefile	2007-10-28 13:01:33.000000000 +0100
+++ /usr/ports/graphics/sdl_ttf.new/Makefile	2007-10-28 18:37:25.000000000 +0100
@@ -6,13 +6,12 @@
 #
 
 PORTNAME=	sdl_ttf
-PORTVERSION=	2.0.8
-PORTREVISION=	2
+PORTVERSION=	2.0.9
 CATEGORIES=	graphics
 MASTER_SITES=	http://www.libsdl.org/projects/SDL_ttf/release/
 DISTNAME=	SDL_ttf-${PORTVERSION}
 
-MAINTAINER=	ports at FreeBSD.org
+MAINTAINER=	mva at sysfault.org
 COMMENT=	A library to use TrueType fonts to render text in SDL applications
 
 LIB_DEPENDS=	freetype.9:${PORTSDIR}/print/freetype2
diff -ruN --exclude=CVS /usr/ports/graphics/sdl_ttf/distinfo /usr/ports/graphics/sdl_ttf.new/distinfo
--- /usr/ports/graphics/sdl_ttf/distinfo	2006-09-20 13:21:42.000000000 +0200
+++ /usr/ports/graphics/sdl_ttf.new/distinfo	2007-10-28 18:38:01.000000000 +0100
@@ -1,3 +1,3 @@
-MD5 (SDL_ttf-2.0.8.tar.gz) = 094b6c08769e9842dbe1dfb5efa22df7
-SHA256 (SDL_ttf-2.0.8.tar.gz) = 6f57c879c0d15211f468aac48ed43653103bbe701a3f1cff462107ad1f74c5bc
-SIZE (SDL_ttf-2.0.8.tar.gz) = 2457385
+MD5 (SDL_ttf-2.0.9.tar.gz) = 6dd5a85e4924689a35a5fb1cb3336156
+SHA256 (SDL_ttf-2.0.9.tar.gz) = b4248876798b43d0fae1931cf8ae249f4f67a87736f97183f035f34aab554653
+SIZE (SDL_ttf-2.0.9.tar.gz) = 3143838
diff -ruN --exclude=CVS /usr/ports/graphics/sdl_ttf/files/patch-Makefile.in /usr/ports/graphics/sdl_ttf.new/files/patch-Makefile.in
--- /usr/ports/graphics/sdl_ttf/files/patch-Makefile.in	1970-01-01 01:00:00.000000000 +0100
+++ /usr/ports/graphics/sdl_ttf.new/files/patch-Makefile.in	2007-10-28 18:43:23.000000000 +0100
@@ -0,0 +1,15 @@
+--- Makefile.in.orig	2007-10-28 18:43:00.000000000 +0100
++++ Makefile.in	2007-10-28 18:43:16.000000000 +0100
+@@ -253,12 +253,10 @@
+ 
+ @USE_VERSION_RC_FALSE at libSDL_ttf_la_LDFLAGS = \
+ @USE_VERSION_RC_FALSE@	-no-undefined		\
+- at USE_VERSION_RC_FALSE@	-release $(LT_RELEASE)	\
+ @USE_VERSION_RC_FALSE@	-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
+ 
+ @USE_VERSION_RC_TRUE at libSDL_ttf_la_LDFLAGS = \
+ @USE_VERSION_RC_TRUE@	-no-undefined		\
+- at USE_VERSION_RC_TRUE@	-release $(LT_RELEASE)	\
+ @USE_VERSION_RC_TRUE@	-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -Wl,version.o
+ 
+ @USE_VERSION_RC_TRUE at libSDL_ttf_la_DEPENDENCIES = version.o
diff -ruN --exclude=CVS /usr/ports/graphics/sdl_ttf/files/patch-SDL_ttf.c /usr/ports/graphics/sdl_ttf.new/files/patch-SDL_ttf.c
--- /usr/ports/graphics/sdl_ttf/files/patch-SDL_ttf.c	2006-10-14 10:53:06.000000000 +0200
+++ /usr/ports/graphics/sdl_ttf.new/files/patch-SDL_ttf.c	1970-01-01 01:00:00.000000000 +0100
@@ -1,19 +0,0 @@
---- SDL_ttf.c.orig	Mon May  1 05:26:17 2006
-+++ SDL_ttf.c	Sun Sep 24 15:46:44 2006
-@@ -48,7 +48,6 @@
- #include <freetype/ftoutln.h>
- #include <freetype/ttnameid.h>
- */
--#include <freetype/internal/ftobjs.h>
- 
- #ifndef FT_OPEN_STREAM
- #define FT_OPEN_STREAM ft_open_stream
-@@ -278,7 +277,7 @@
- 	}
- 	memset(stream, 0, sizeof(*stream));
- 
--	stream->memory = library->memory;
-+	stream->memory = NULL;
- 	stream->read = RWread;
- 	stream->descriptor.pointer = src;
- 	stream->pos = (unsigned long)position;
diff -ruN --exclude=CVS /usr/ports/graphics/sdl_ttf/files/patch-aa /usr/ports/graphics/sdl_ttf.new/files/patch-aa
--- /usr/ports/graphics/sdl_ttf/files/patch-aa	2006-10-14 10:53:06.000000000 +0200
+++ /usr/ports/graphics/sdl_ttf.new/files/patch-aa	1970-01-01 01:00:00.000000000 +0100
@@ -1,13 +0,0 @@
-
-$FreeBSD: ports/graphics/sdl_ttf/files/patch-aa,v 1.4 2006/10/14 08:53:06 marcus Exp $
-
---- Makefile.in.orig
-+++ Makefile.in
-@@ -243,7 +243,6 @@
- 
- libSDL_ttf_la_LDFLAGS = \
- 	-no-undefined		\
--	-release $(LT_RELEASE)	\
- 	-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
- 
- libSDL_ttf_la_LIBADD = 
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list