summaryrefslogtreecommitdiff
path: root/fonts
diff options
context:
space:
mode:
authorwiz <wiz>2016-10-03 12:30:35 +0000
committerwiz <wiz>2016-10-03 12:30:35 +0000
commit7091e4332365f3a2fe0da4859a9cbf6bb227f25c (patch)
tree39d597b9e52cd0ef6d7bfbd47eb88348525345b6 /fonts
parentc18e084454023a82b82c0b518493b159bc6e3598 (diff)
downloadpkgsrc-7091e4332365f3a2fe0da4859a9cbf6bb227f25c.tar.gz
Updated harfbuzz to 1.3.2.
Overview of changes leading to 1.3.2 Wednesday, September 27, 2016 ==================================== - Fix build of hb-coretext on older OS X versions.
Diffstat (limited to 'fonts')
-rw-r--r--fonts/harfbuzz/Makefile4
-rw-r--r--fonts/harfbuzz/distinfo11
-rw-r--r--fonts/harfbuzz/patches/patch-src_hb-coretext.cc16
3 files changed, 7 insertions, 24 deletions
diff --git a/fonts/harfbuzz/Makefile b/fonts/harfbuzz/Makefile
index 8fc856b4062..b2696aed859 100644
--- a/fonts/harfbuzz/Makefile
+++ b/fonts/harfbuzz/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.70 2016/09/12 07:34:41 wiz Exp $
+# $NetBSD: Makefile,v 1.71 2016/10/03 12:30:35 wiz Exp $
-DISTNAME= harfbuzz-1.3.1
+DISTNAME= harfbuzz-1.3.2
CATEGORIES= fonts
MASTER_SITES= http://www.freedesktop.org/software/harfbuzz/release/
EXTRACT_SUFX= .tar.bz2
diff --git a/fonts/harfbuzz/distinfo b/fonts/harfbuzz/distinfo
index 9a2e0eda12c..e076471c54c 100644
--- a/fonts/harfbuzz/distinfo
+++ b/fonts/harfbuzz/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.58 2016/09/26 11:30:42 jperkin Exp $
+$NetBSD: distinfo,v 1.59 2016/10/03 12:30:35 wiz Exp $
-SHA1 (harfbuzz-1.3.1.tar.bz2) = a90aea57f268b6b4a0ecb92b9ed0a987ebd0df9e
-RMD160 (harfbuzz-1.3.1.tar.bz2) = 97ab46b367214cba41b66e18e52aa57142e4822a
-SHA512 (harfbuzz-1.3.1.tar.bz2) = 7c2dbd1cc3c77646fd7627c4db9ac1a5781fb4babe8a92b276b2f2170f82d7075632253c7498c27735c5aa7331ee22d41e24c3a8cfa07adc2461ece1e36334b9
-Size (harfbuzz-1.3.1.tar.bz2) = 1358437 bytes
-SHA1 (patch-src_hb-coretext.cc) = 29c95fbbb424a035f74294809ea8a3359e9d93ae
+SHA1 (harfbuzz-1.3.2.tar.bz2) = 1ae99f7b8c50467e9fdaeac1e385edc27dcc1a5a
+RMD160 (harfbuzz-1.3.2.tar.bz2) = cdb261333f44e691f9bb5f508492efbe4e4a2133
+SHA512 (harfbuzz-1.3.2.tar.bz2) = 19f846ee75d8a2d94da2a2b489fa8e54a5120599f998e451187f6695aa3931b28c491bbc0837892eaaebbd1da3441effe01f5f2470454f83cfa6a7c510ebcb32
+Size (harfbuzz-1.3.2.tar.bz2) = 1357986 bytes
diff --git a/fonts/harfbuzz/patches/patch-src_hb-coretext.cc b/fonts/harfbuzz/patches/patch-src_hb-coretext.cc
deleted file mode 100644
index 39b17d4a2cf..00000000000
--- a/fonts/harfbuzz/patches/patch-src_hb-coretext.cc
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-src_hb-coretext.cc,v 1.1 2016/09/26 11:30:42 jperkin Exp $
-
-Provide compatibility define for older SDKs.
-
---- src/hb-coretext.cc.orig 2016-09-07 20:57:11.000000000 +0000
-+++ src/hb-coretext.cc
-@@ -152,6 +152,9 @@ create_ct_font (CGFontRef cg_font, CGFlo
- * operating system versions. Except for the emoji font, where _not_
- * reconfiguring the cascade list causes CoreText crashes. For details, see
- * crbug.com/549610 */
-+#ifndef kCTVersionNumber10_10
-+#define kCTVersionNumber10_10 0x00070000
-+#endif
- if (&CTGetCoreTextVersion != NULL && CTGetCoreTextVersion() < kCTVersionNumber10_10) {
- CFStringRef fontName = CTFontCopyPostScriptName (ct_font);
- bool isEmojiFont = CFStringCompare (fontName, CFSTR("AppleColorEmoji"), 0) == kCFCompareEqualTo;