Index: head/print/typetools/Makefile =================================================================== --- head/print/typetools/Makefile (revision 397052) +++ head/print/typetools/Makefile (revision 397053) @@ -1,23 +1,23 @@ # Created by: ijliao # $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 USE_TEX= kpathsea GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-kpathsea=${LOCALBASE} DATADIR= ${PREFIX}/share/lcdf-${PORTNAME} CONFLICTS_INSTALL= texlive-base-[0-9]* .include Index: head/print/typetools/distinfo =================================================================== --- head/print/typetools/distinfo (revision 397052) +++ head/print/typetools/distinfo (revision 397053) @@ -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 Index: head/print/typetools/files/patch-libefont__cff.cc =================================================================== --- head/print/typetools/files/patch-libefont__cff.cc (revision 397052) +++ head/print/typetools/files/patch-libefont__cff.cc (revision 397053) @@ -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 #include +#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 Index: head/print/typetools/files/patch-libefont__t1interp.cc =================================================================== --- head/print/typetools/files/patch-libefont__t1interp.cc (revision 397052) +++ head/print/typetools/files/patch-libefont__t1interp.cc (revision 397053) @@ -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