View | Details | Raw Unified | Return to bug 216992
Collapse All | Expand All

(-)ttf2eot/Makefile (-3 / +9 lines)
Lines 2-16 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	ttf2eot
4
PORTNAME=	ttf2eot
5
DISTVERSION=	0.0.2-2
5
PORTVERSION=	0.0.3
6
DISTVERSIONPREFIX=	v
6
CATEGORIES=	www converters
7
CATEGORIES=	www converters
7
MASTER_SITES=	GOOGLE_CODE
8
8
9
MAINTAINER=	stb@lassitu.de
9
MAINTAINER=	stb@lassitu.de
10
COMMENT=	Convert TTF font file to EOT web embeddable file
10
COMMENT=	Convert TTF font file to EOT web embeddable file
11
11
12
BROKEN=		Unfetchable (google code has gone away)
12
LICENSE=	BSD2CLAUSE LGPL20
13
LICENSE_COMB=	multi
13
14
15
USE_GITHUB=	yes
16
GH_ACCOUNT=	wget
17
GH_PROJECT=	ttf2eot
18
GH_TAGNAME=	b732f41
19
14
USES=		gmake
20
USES=		gmake
15
ALL_TARGET=	ttf2eot
21
ALL_TARGET=	ttf2eot
16
22
(-)ttf2eot/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (ttf2eot-0.0.2-2.tar.gz) = 023cf04d7c717657e92afe566518bf2a696ab22a2a8eba764340000bebff8db8
1
SHA256 (wget-ttf2eot-v0.0.3-b732f41_GH0.tar.gz) = 51676549aae47611f8a490c9213967ab837f85fd1b06b5521d9c241aaa60dd40
2
SIZE (ttf2eot-0.0.2-2.tar.gz) = 4951
2
SIZE (wget-ttf2eot-v0.0.3-b732f41_GH0.tar.gz) = 158382
(-)ttf2eot/files/patch-OpenTypeUtilities.cpp (-2 / +11 lines)
Lines 1-5 Link Here
1
--- OpenTypeUtilities.cpp.orig	2009-04-30 09:18:46.000000000 +0000
1
--- OpenTypeUtilities.cpp.orig	2017-02-10 20:28:02.186321000 -0800
2
+++ OpenTypeUtilities.cpp
2
+++ OpenTypeUtilities.cpp	2017-02-10 20:34:22.986633000 -0800
3
@@ -27,6 +27,7 @@
3
@@ -27,6 +27,7 @@
4
 
4
 
5
 #include <string.h>
5
 #include <string.h>
Lines 8-10 Link Here
8
 
8
 
9
 #ifndef _MSC_VER
9
 #ifndef _MSC_VER
10
 # include <stdint.h>
10
 # include <stdint.h>
11
@@ -178,7 +179,7 @@
12
     dst[i] = 0;
13
 }
14
 
15
-bool getEOTHeader(unsigned char* fontData, size_t fontSize, vector<uint8_t>& eotHeader, size_t& overlayDst, size_t& overlaySrc, size_t& overlayLength)
16
+bool getEOTHeader(unsigned char* fontData, size_t fontSize, vector<uint8_t>&eotHeader, size_t&overlayDst, size_t&overlaySrc, size_t&overlayLength)
17
 {
18
     overlayDst = 0;
19
     overlaySrc = 0;
(-)ttf2eot/pkg-descr (-3 / +5 lines)
Lines 1-4 Link Here
1
Very small utility to convert TTF files to EOT.
1
Very small utility that converts TTF fonts to EOT fonts
2
EOT is used by Internet Explorer to support css @font-face declarations.
2
especially suited for Internet Explorer.
3
EOT fonts are used by Internet Explorer to support the
4
css @font-face declarations.
3
5
4
WWW: http://code.google.com/p/ttf2eot/
6
WWW: https://github.com/wget/ttf2eot

Return to bug 216992