1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00

Very small utility to convert TTF files to EOT.

EOT is used by Internet Explorer to support css @font-face declarations.

WWW: http://code.google.com/p/ttf2eot/

PR:		136824
Submitted by:	Stefan Bethke <stb@lassitu.de>
This commit is contained in:
Dmitry Marakasov 2009-07-17 15:02:31 +00:00
parent f3b2456bd5
commit fa22927e05
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=237984
4 changed files with 40 additions and 0 deletions

View File

@ -1527,6 +1527,7 @@
SUBDIR += trac-xmlrpc
SUBDIR += transmission-web
SUBDIR += transproxy
SUBDIR += ttf2eot
SUBDIR += twhttpd
SUBDIR += twig
SUBDIR += twiki

32
www/ttf2eot/Makefile Normal file
View File

@ -0,0 +1,32 @@
# New ports collection makefile for: ttf2eot
# Date Created: July 16 2009
# Whom: Stefan Bethke <stb@lassitu.de>
#
# $FreeBSD$
#
PORTNAME= ttf2eot
DISTVERSION= 0.0.2-2
CATEGORIES= www converters
MASTER_SITES= GOOGLE_CODE
MAINTAINER= stb@lassitu.de
COMMENT= Convert TTF font file to EOT web embeddable file
USE_GMAKE= yes
ALL_TARGET= ttf2eot
PLIST_FILES= bin/ttf2eot
PORTDOCS= README
post-patch:
@${REINPLACE_CMD} -e 's|g++|${CXX}|' ${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ttf2eot ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/
.endif
.include <bsd.port.mk>

3
www/ttf2eot/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (ttf2eot-0.0.2-2.tar.gz) = 97c9ceb0ded362bf2e6dd3a3a9360f8d
SHA256 (ttf2eot-0.0.2-2.tar.gz) = 023cf04d7c717657e92afe566518bf2a696ab22a2a8eba764340000bebff8db8
SIZE (ttf2eot-0.0.2-2.tar.gz) = 4951

4
www/ttf2eot/pkg-descr Normal file
View File

@ -0,0 +1,4 @@
Very small utility to convert TTF files to EOT.
EOT is used by Internet Explorer to support css @font-face declarations.
WWW: http://code.google.com/p/ttf2eot/