diff options
author | bofh <bofh@FreeBSD.org> | 2015-09-16 19:05:41 +0800 |
---|---|---|
committer | bofh <bofh@FreeBSD.org> | 2015-09-16 19:05:41 +0800 |
commit | 70fe915a5aeb9f8619d48a64282e39b0e0f2aecc (patch) | |
tree | 55f0830ccc5e85581fa279abdd59d3ac7b23dcb4 /print | |
parent | 1a7ca3e5a91c8dccb3dd2b72eb9035482df13951 (diff) | |
download | freebsd-ports-gnome-70fe915a5aeb9f8619d48a64282e39b0e0f2aecc.tar.gz freebsd-ports-gnome-70fe915a5aeb9f8619d48a64282e39b0e0f2aecc.tar.zst freebsd-ports-gnome-70fe915a5aeb9f8619d48a64282e39b0e0f2aecc.zip |
print/typetools: Update version 2.104=>2.105
- Take MAINTAINERSHIP
- Convert patch files to be 'make makesum' compatible
Diffstat (limited to 'print')
-rw-r--r-- | print/typetools/Makefile | 4 | ||||
-rw-r--r-- | print/typetools/distinfo | 4 | ||||
-rw-r--r-- | print/typetools/files/patch-libefont__cff.cc | 6 | ||||
-rw-r--r-- | print/typetools/files/patch-libefont__t1interp.cc | 10 |
4 files changed, 12 insertions, 12 deletions
diff --git a/print/typetools/Makefile b/print/typetools/Makefile index 79e72e4f746c..12dc7fa8e29d 100644 --- a/print/typetools/Makefile +++ b/print/typetools/Makefile @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= typetools -PORTVERSION= 2.104 +PORTVERSION= 2.105 CATEGORIES= print MASTER_SITES= http://www.lcdf.org/type/ DISTNAME= lcdf-${PORTNAME}-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bofh@FreeBSD.org COMMENT= Tools for manipulating fonts LICENSE= GPLv2 diff --git a/print/typetools/distinfo b/print/typetools/distinfo index cf89d257ca48..e7bd779e5358 100644 --- a/print/typetools/distinfo +++ b/print/typetools/distinfo @@ -1,2 +1,2 @@ -SHA256 (lcdf-typetools-2.104.tar.gz) = d7985458ead0850cb9549ff1d619ffc18da5d7be892be5e1fce6048d510f0fff -SIZE (lcdf-typetools-2.104.tar.gz) = 636875 +SHA256 (lcdf-typetools-2.105.tar.gz) = c8b6a58e2f8f61ff3c21fd61452032c83938c91fde00f302b8f9391b16c6b63a +SIZE (lcdf-typetools-2.105.tar.gz) = 640159 diff --git a/print/typetools/files/patch-libefont__cff.cc b/print/typetools/files/patch-libefont__cff.cc index f227f9ae1c3a..21a7ae401d97 100644 --- a/print/typetools/files/patch-libefont__cff.cc +++ b/print/typetools/files/patch-libefont__cff.cc @@ -1,10 +1,10 @@ ---- ./libefont/cff.cc.orig 2013-08-13 20:22:52.000000000 +0000 -+++ ./libefont/cff.cc 2014-01-03 11:41:17.000000000 +0000 +--- libefont/cff.cc.orig 2015-07-30 17:15:25 UTC ++++ libefont/cff.cc @@ -27,6 +27,7 @@ #include <ctype.h> #include <efont/t1unparser.hh> +#undef static_assert #ifndef static_assert - #define static_assert(c) switch (c) case 0: case (c): + #define static_assert(c, msg) switch ((int) (c)) case 0: case (c): #endif diff --git a/print/typetools/files/patch-libefont__t1interp.cc b/print/typetools/files/patch-libefont__t1interp.cc index 4ef8455654c6..fb3488c0decb 100644 --- a/print/typetools/files/patch-libefont__t1interp.cc +++ b/print/typetools/files/patch-libefont__t1interp.cc @@ -1,10 +1,10 @@ ---- ./libefont/t1interp.cc.orig 2013-08-13 20:18:57.000000000 +0000 -+++ ./libefont/t1interp.cc 2014-01-03 11:42:48.000000000 +0000 +--- libefont/t1interp.cc.orig 2015-07-30 17:15:26 UTC ++++ libefont/t1interp.cc @@ -30,6 +30,7 @@ - #define CHECK_PATH_START() do { _state = S_PATH; } while (0) - #define CHECK_PATH_END() do { if (_state == S_PATH) { act_closepath(cmd); } _state = S_IPATH; } while (0) + #define CHECK_PATH_START() do { _state = S_PATH; } while (0) + #define CHECK_PATH_END() do { if (_state == S_PATH) { act_closepath(cmd); } _state = S_IPATH; } while (0) +#undef static_assert #ifndef static_assert - # define static_assert(c) switch (c) case 0: case (c): + # define static_assert(c, msg) switch ((int) (c)) case 0: case (c): #endif |