diff options
author | adam <adam> | 2010-07-23 13:22:12 +0000 |
---|---|---|
committer | adam <adam> | 2010-07-23 13:22:12 +0000 |
commit | e1939a1070386b8ae3945345d51f007ba07a565f (patch) | |
tree | c76e99c178b0f71483bcebe7f49c54ab8814a407 /devel/SDL_ttf | |
parent | 0e658634f27e53745118da01296528e92ec86b87 (diff) | |
download | pkgsrc-e1939a1070386b8ae3945345d51f007ba07a565f.tar.gz |
Changes 2.0.10:
* Set the appropriate font styles for bold and italic fonts
* Added font style TTF_STYLE_STRIKETHROUGH
* Fixed size calculations taking outline and underline into account
* Added API for font outlining: TTF_GetFontOutline()/TTF_SetFontOutline()
* Added API to disable kerning: TTF_GetFontKerning()/TTF_SetFontKerning()
* Fixed height calculation for fonts that extend below the font height
* Added access to font hinting: TTF_GetFontHinting()/TTF_SetFontHinting()
* Added TTF_GlyphIsProvided() to check whether a glyph is in a given font
Diffstat (limited to 'devel/SDL_ttf')
-rw-r--r-- | devel/SDL_ttf/Makefile | 10 | ||||
-rw-r--r-- | devel/SDL_ttf/PLIST | 3 | ||||
-rw-r--r-- | devel/SDL_ttf/buildlink3.mk | 4 | ||||
-rw-r--r-- | devel/SDL_ttf/distinfo | 10 | ||||
-rw-r--r-- | devel/SDL_ttf/patches/patch-aa | 14 |
5 files changed, 20 insertions, 21 deletions
diff --git a/devel/SDL_ttf/Makefile b/devel/SDL_ttf/Makefile index 6baf748427f..688fddb5b77 100644 --- a/devel/SDL_ttf/Makefile +++ b/devel/SDL_ttf/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.27 2010/02/26 10:28:31 wiz Exp $ +# $NetBSD: Makefile,v 1.28 2010/07/23 13:22:12 adam Exp $ -DISTNAME= SDL_ttf-2.0.9 +DISTNAME= SDL_ttf-2.0.10 CATEGORIES= devel MASTER_SITES= http://www.libsdl.org/projects/SDL_ttf/release/ @@ -10,8 +10,10 @@ COMMENT= Use TrueType fonts in your SDL applications PKG_DESTDIR_SUPPORT= user-destdir -USE_LIBTOOL= YES -GNU_CONFIGURE= YES +USE_LIBTOOL= yes +GNU_CONFIGURE= yes + +PKGCONFIG_OVERRIDE+= SDL_ttf.pc.in .include "../../devel/SDL/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" diff --git a/devel/SDL_ttf/PLIST b/devel/SDL_ttf/PLIST index 4622fe622a1..4abafeb0509 100644 --- a/devel/SDL_ttf/PLIST +++ b/devel/SDL_ttf/PLIST @@ -1,3 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2004/09/22 08:09:23 jlam Exp $ +@comment $NetBSD: PLIST,v 1.5 2010/07/23 13:22:12 adam Exp $ include/SDL/SDL_ttf.h lib/libSDL_ttf.la +lib/pkgconfig/SDL_ttf.pc diff --git a/devel/SDL_ttf/buildlink3.mk b/devel/SDL_ttf/buildlink3.mk index 7ce0d4b50c7..6d6edded133 100644 --- a/devel/SDL_ttf/buildlink3.mk +++ b/devel/SDL_ttf/buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.11 2009/03/20 19:24:09 joerg Exp $ +# $NetBSD: buildlink3.mk,v 1.12 2010/07/23 13:22:12 adam Exp $ BUILDLINK_TREE+= SDL_ttf @@ -6,7 +6,7 @@ BUILDLINK_TREE+= SDL_ttf SDL_TTF_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.SDL_ttf+= SDL_ttf>=2.0.3nb3 -BUILDLINK_ABI_DEPENDS.SDL_ttf?= SDL_ttf>=2.0.8 +BUILDLINK_ABI_DEPENDS.SDL_ttf+= SDL_ttf>=2.0.8 BUILDLINK_PKGSRCDIR.SDL_ttf?= ../../devel/SDL_ttf .include "../../devel/SDL/buildlink3.mk" diff --git a/devel/SDL_ttf/distinfo b/devel/SDL_ttf/distinfo index 23d021f44ac..54d81455a9b 100644 --- a/devel/SDL_ttf/distinfo +++ b/devel/SDL_ttf/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2009/01/11 02:31:28 dsainty Exp $ +$NetBSD: distinfo,v 1.9 2010/07/23 13:22:12 adam Exp $ -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 -SHA1 (patch-aa) = dd9cd7608b8f0c4454ecb996e96028f30a849ff8 +SHA1 (SDL_ttf-2.0.10.tar.gz) = 98f6518ec71d94b8ad303a197445e0991850b887 +RMD160 (SDL_ttf-2.0.10.tar.gz) = 253c440b5723567bce48c77eb8df90d363482e88 +Size (SDL_ttf-2.0.10.tar.gz) = 1326737 bytes +SHA1 (patch-aa) = 5ae58f13e2f48834eaf200131c9baaa5dc3d9d1a diff --git a/devel/SDL_ttf/patches/patch-aa b/devel/SDL_ttf/patches/patch-aa index 34440bb27da..bea89caa4b9 100644 --- a/devel/SDL_ttf/patches/patch-aa +++ b/devel/SDL_ttf/patches/patch-aa @@ -1,17 +1,13 @@ -$NetBSD: patch-aa,v 1.5 2009/01/11 02:31:28 dsainty Exp $ +$NetBSD: patch-aa,v 1.6 2010/07/23 13:22:12 adam Exp $ -We don't install the example programs so we can avoid building them. showfont -may otherwise fail to build with link time errors if include/SDL/SDL_config.h -defines HAVE_ICONV. - ---- Makefile.in.orig 2007-07-22 04:38:38.000000000 +1200 -+++ Makefile.in 2009-01-11 13:59:03.525361095 +1300 -@@ -42,7 +42,7 @@ +--- Makefile.in.orig 2009-10-19 08:18:21.000000000 +0000 ++++ Makefile.in +@@ -39,7 +39,7 @@ PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ -noinst_PROGRAMS = showfont$(EXEEXT) glfont$(EXEEXT) +noinst_PROGRAMS = # showfont$(EXEEXT) glfont$(EXEEXT) + subdir = . DIST_COMMON = README $(am__configure_deps) \ $(libSDL_ttfinclude_HEADERS) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in $(srcdir)/SDL_ttf.spec.in \ |