Sat Mar 22 22:02:11 2014 UTC ()
build fix following the freetype2 update


(spz)
diff -r1.5 -r1.6 pkgsrc/fonts/ttf2pt1/distinfo
diff -r1.1 -r1.2 pkgsrc/fonts/ttf2pt1/patches/patch-ab

cvs diff -r1.5 -r1.6 pkgsrc/fonts/ttf2pt1/distinfo (expand / switch to unified diff)

--- pkgsrc/fonts/ttf2pt1/distinfo 2009/07/08 17:03:51 1.5
+++ pkgsrc/fonts/ttf2pt1/distinfo 2014/03/22 22:02:11 1.6
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
1$NetBSD: distinfo,v 1.5 2009/07/08 17:03:51 joerg Exp $ 1$NetBSD: distinfo,v 1.6 2014/03/22 22:02:11 spz Exp $
2 2
3SHA1 (ttf2pt1-3.4.4.tgz) = 936771b11a740c16a8e0adb737b54b22cca18cb2 3SHA1 (ttf2pt1-3.4.4.tgz) = 936771b11a740c16a8e0adb737b54b22cca18cb2
4RMD160 (ttf2pt1-3.4.4.tgz) = f88d7a26b30fa02055fd12ce1450220bd52d8df2 4RMD160 (ttf2pt1-3.4.4.tgz) = f88d7a26b30fa02055fd12ce1450220bd52d8df2
5Size (ttf2pt1-3.4.4.tgz) = 230547 bytes 5Size (ttf2pt1-3.4.4.tgz) = 230547 bytes
6SHA1 (patch-aa) = 3168178e1801a876f5161e98f796c7796d40ab94 6SHA1 (patch-aa) = 3168178e1801a876f5161e98f796c7796d40ab94
7SHA1 (patch-ab) = 4133a4ded43eec3da256eeea31ff35b9b8167351 7SHA1 (patch-ab) = 3c93b8179ed3d4e354813a79f492e6ddd9bcd132

cvs diff -r1.1 -r1.2 pkgsrc/fonts/ttf2pt1/patches/patch-ab (expand / switch to unified diff)

--- pkgsrc/fonts/ttf2pt1/patches/patch-ab 2004/04/27 15:18:08 1.1
+++ pkgsrc/fonts/ttf2pt1/patches/patch-ab 2014/03/22 22:02:11 1.2
@@ -1,12 +1,24 @@ @@ -1,12 +1,24 @@
1$NetBSD: patch-ab,v 1.1 2004/04/27 15:18:08 adam Exp $ 1$NetBSD: patch-ab,v 1.2 2014/03/22 22:02:11 spz Exp $
2 2
3--- ft.c.orig 2004-04-27 10:58:11.000000000 +0000 3make it deal gracefully with both freetype 2.4.* and 2.5.*
 4
 5--- ft.c.orig 2003-12-31 21:30:50.000000000 +0000
4+++ ft.c 6+++ ft.c
5@@ -12,6 +12,7 @@ 7@@ -12,11 +12,12 @@
6 #include <stdlib.h> 8 #include <stdlib.h>
7 #include <ctype.h> 9 #include <ctype.h>
8 #include <sys/types.h> 10 #include <sys/types.h>
 11-#include <freetype/freetype.h>
 12-#include <freetype/ftglyph.h>
 13-#include <freetype/ftsnames.h>
 14-#include <freetype/ttnameid.h>
 15-#include <freetype/ftoutln.h>
9+#include <ft2build.h> 16+#include <ft2build.h>
10 #include <freetype/freetype.h> 17+#include FT_FREETYPE_H
11 #include <freetype/ftglyph.h> 18+#include FT_GLYPH_H
12 #include <freetype/ftsnames.h> 19+#include FT_SFNT_NAMES_H
 20+#include FT_TRUETYPE_IDS_H
 21+#include FT_OUTLINE_H
 22 #include "pt1.h"
 23 #include "global.h"
 24