Bug 181893 - print/typetools: Update to version 2.99
Summary: print/typetools: Update to version 2.99
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Antoine Brodin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-06 19:10 UTC by tkato432
Modified: 2014-01-03 16:25 UTC (History)
0 users

See Also:


Attachments
file.diff (991 bytes, patch)
2013-09-06 19:10 UTC, tkato432
no flags Details | Diff
print_typetools.diff (1.97 KB, patch)
2013-10-31 19:26 UTC, tkato432
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description tkato432 2013-09-06 19:10:06 UTC
- Update to version 2.99
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-09-06 19:11:52 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

miwi@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 Bryan Drewery freebsd_committer freebsd_triage 2013-09-22 15:12:08 UTC
Responsible Changed
From-To: miwi->freebsd-ports-bugs

Back to the heap due to timeout
Comment 3 tkato432 2013-10-31 19:26:25 UTC
Remake of the patch against current tree.
Comment 4 Antoine Brodin freebsd_committer freebsd_triage 2014-01-03 12:46:50 UTC
State Changed
From-To: open->closed

Take, I have some patches to make it build with clang
Comment 5 Antoine Brodin freebsd_committer freebsd_triage 2014-01-03 12:47:30 UTC
State Changed
From-To: closed->open

Take, I have some patches to make it build with clang 


Comment 6 Antoine Brodin freebsd_committer freebsd_triage 2014-01-03 12:47:30 UTC
Responsible Changed
From-To: freebsd-ports-bugs->antoine

Take, I have some patches to make it build with clang
Comment 7 dfilter service freebsd_committer freebsd_triage 2014-01-03 16:16:23 UTC
Author: antoine
Date: Fri Jan  3 16:16:11 2014
New Revision: 338558
URL: http://svnweb.freebsd.org/changeset/ports/338558

Log:
  - Update to 2.99
  - Stage support
  - Fix build with clang
  
  PR:		ports/181893
  Submitted by:	KATO Tsuguru

Added:
  head/print/typetools/files/
  head/print/typetools/files/patch-libefont__cff.cc   (contents, props changed)
  head/print/typetools/files/patch-libefont__otf.cc   (contents, props changed)
  head/print/typetools/files/patch-libefont__t1interp.cc   (contents, props changed)
Modified:
  head/print/typetools/Makefile
  head/print/typetools/distinfo
  head/print/typetools/pkg-plist

Modified: head/print/typetools/Makefile
==============================================================================
--- head/print/typetools/Makefile	Fri Jan  3 16:15:49 2014	(r338557)
+++ head/print/typetools/Makefile	Fri Jan  3 16:16:11 2014	(r338558)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	typetools
-PORTVERSION=	2.98
+PORTVERSION=	2.99
 CATEGORIES=	print
 MASTER_SITES=	http://www.lcdf.org/type/
 DISTNAME=	lcdf-${PORTNAME}-${PORTVERSION}
@@ -17,10 +17,6 @@ GNU_CONFIGURE=	yes
 CONFIGURE_ENV=	ac_cv_header_kpathsea_kpathsea_h=yes
 CONFIGURE_ARGS=	--with-kpathsea=${LOCALBASE}
 
-MAN1=		cfftot1.1 mmafm.1 mmpfb.1 otfinfo.1 otftotfm.1 t1dotlessj.1 \
-		t1lint.1 t1rawafm.1 t1reencode.1 t1testpage.1 ttftotype42.1
-
 DATADIR=	${PREFIX}/share/lcdf-${PORTNAME}
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: head/print/typetools/distinfo
==============================================================================
--- head/print/typetools/distinfo	Fri Jan  3 16:15:49 2014	(r338557)
+++ head/print/typetools/distinfo	Fri Jan  3 16:16:11 2014	(r338558)
@@ -1,2 +1,2 @@
-SHA256 (lcdf-typetools-2.98.tar.gz) = 26b9be336b3d575555436d139e5a9c40fea58f5b9468516f974ca7bd1eeae17f
-SIZE (lcdf-typetools-2.98.tar.gz) = 621485
+SHA256 (lcdf-typetools-2.99.tar.gz) = cbb0ed8c42d078fb216b8f4b8ca7a29e0ad3c1969f580a6f2558c829a472adff
+SIZE (lcdf-typetools-2.99.tar.gz) = 627203

Added: head/print/typetools/files/patch-libefont__cff.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/print/typetools/files/patch-libefont__cff.cc	Fri Jan  3 16:16:11 2014	(r338558)
@@ -0,0 +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
+@@ -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):
+ #endif

Added: head/print/typetools/files/patch-libefont__otf.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/print/typetools/files/patch-libefont__otf.cc	Fri Jan  3 16:16:11 2014	(r338558)
@@ -0,0 +1,10 @@
+--- ./libefont/otf.cc.orig	2013-08-13 20:23:45.000000000 +0000
++++ ./libefont/otf.cc	2014-01-03 11:41:56.000000000 +0000
+@@ -26,6 +26,7 @@
+ #include <efont/otfdata.hh>	// for ntohl()
+ #include <efont/otfname.hh>
+ 
++#undef static_assert
+ #ifndef static_assert
+ #define static_assert(c) switch (c) case 0: case (c):
+ #endif

Added: head/print/typetools/files/patch-libefont__t1interp.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/print/typetools/files/patch-libefont__t1interp.cc	Fri Jan  3 16:16:11 2014	(r338558)
@@ -0,0 +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
+@@ -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)
+ 
++#undef static_assert
+ #ifndef static_assert
+ # define static_assert(c)	switch (c) case 0: case (c):
+ #endif

Modified: head/print/typetools/pkg-plist
==============================================================================
--- head/print/typetools/pkg-plist	Fri Jan  3 16:15:49 2014	(r338557)
+++ head/print/typetools/pkg-plist	Fri Jan  3 16:16:11 2014	(r338558)
@@ -9,6 +9,17 @@ bin/t1rawafm
 bin/t1reencode
 bin/t1testpage
 bin/ttftotype42
+man/man1/cfftot1.1.gz
+man/man1/mmafm.1.gz
+man/man1/mmpfb.1.gz
+man/man1/otfinfo.1.gz
+man/man1/otftotfm.1.gz
+man/man1/t1dotlessj.1.gz
+man/man1/t1lint.1.gz
+man/man1/t1rawafm.1.gz
+man/man1/t1reencode.1.gz
+man/man1/t1testpage.1.gz
+man/man1/ttftotype42.1.gz
 %%DATADIR%%/7t.enc
 %%DATADIR%%/glyphlist.txt
 %%DATADIR%%/texglyphlist.txt
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 8 dfilter service freebsd_committer freebsd_triage 2014-01-03 16:18:43 UTC
Author: antoine
Date: Fri Jan  3 16:18:29 2014
New Revision: 338560
URL: http://svnweb.freebsd.org/changeset/ports/338560

Log:
  MFH: r338558
  
  - Update to 2.99
  - Stage support
  - Fix build with clang
  
  PR:		ports/181893
  Submitted by:	KATO Tsuguru
  Approved by:	portmgr (implicit)

Added:
  branches/2014Q1/print/typetools/files/
     - copied from r338558, head/print/typetools/files/
Modified:
  branches/2014Q1/print/typetools/Makefile
  branches/2014Q1/print/typetools/distinfo
  branches/2014Q1/print/typetools/pkg-plist
Directory Properties:
  branches/2014Q1/   (props changed)

Modified: branches/2014Q1/print/typetools/Makefile
==============================================================================
--- branches/2014Q1/print/typetools/Makefile	Fri Jan  3 16:18:05 2014	(r338559)
+++ branches/2014Q1/print/typetools/Makefile	Fri Jan  3 16:18:29 2014	(r338560)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	typetools
-PORTVERSION=	2.98
+PORTVERSION=	2.99
 CATEGORIES=	print
 MASTER_SITES=	http://www.lcdf.org/type/
 DISTNAME=	lcdf-${PORTNAME}-${PORTVERSION}
@@ -17,10 +17,6 @@ GNU_CONFIGURE=	yes
 CONFIGURE_ENV=	ac_cv_header_kpathsea_kpathsea_h=yes
 CONFIGURE_ARGS=	--with-kpathsea=${LOCALBASE}
 
-MAN1=		cfftot1.1 mmafm.1 mmpfb.1 otfinfo.1 otftotfm.1 t1dotlessj.1 \
-		t1lint.1 t1rawafm.1 t1reencode.1 t1testpage.1 ttftotype42.1
-
 DATADIR=	${PREFIX}/share/lcdf-${PORTNAME}
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Modified: branches/2014Q1/print/typetools/distinfo
==============================================================================
--- branches/2014Q1/print/typetools/distinfo	Fri Jan  3 16:18:05 2014	(r338559)
+++ branches/2014Q1/print/typetools/distinfo	Fri Jan  3 16:18:29 2014	(r338560)
@@ -1,2 +1,2 @@
-SHA256 (lcdf-typetools-2.98.tar.gz) = 26b9be336b3d575555436d139e5a9c40fea58f5b9468516f974ca7bd1eeae17f
-SIZE (lcdf-typetools-2.98.tar.gz) = 621485
+SHA256 (lcdf-typetools-2.99.tar.gz) = cbb0ed8c42d078fb216b8f4b8ca7a29e0ad3c1969f580a6f2558c829a472adff
+SIZE (lcdf-typetools-2.99.tar.gz) = 627203

Modified: branches/2014Q1/print/typetools/pkg-plist
==============================================================================
--- branches/2014Q1/print/typetools/pkg-plist	Fri Jan  3 16:18:05 2014	(r338559)
+++ branches/2014Q1/print/typetools/pkg-plist	Fri Jan  3 16:18:29 2014	(r338560)
@@ -9,6 +9,17 @@ bin/t1rawafm
 bin/t1reencode
 bin/t1testpage
 bin/ttftotype42
+man/man1/cfftot1.1.gz
+man/man1/mmafm.1.gz
+man/man1/mmpfb.1.gz
+man/man1/otfinfo.1.gz
+man/man1/otftotfm.1.gz
+man/man1/t1dotlessj.1.gz
+man/man1/t1lint.1.gz
+man/man1/t1rawafm.1.gz
+man/man1/t1reencode.1.gz
+man/man1/t1testpage.1.gz
+man/man1/ttftotype42.1.gz
 %%DATADIR%%/7t.enc
 %%DATADIR%%/glyphlist.txt
 %%DATADIR%%/texglyphlist.txt
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 9 Antoine Brodin freebsd_committer freebsd_triage 2014-01-03 16:24:53 UTC
State Changed
From-To: open->closed

Port updated, and patched to build with clang 
Thanks!