mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
33 lines
652 B
Makefile
33 lines
652 B
Makefile
|
# 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>
|