mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
dbbfc7889a
- If a port has another upstream, remove GOOGLE_CODE - If a port only has GOOGLE_CODE mark it BROKEN Some ports have a local mirror configured but for security reasons, it is not considered upstream. Sponsored by: Absolight
31 lines
644 B
Makefile
31 lines
644 B
Makefile
# Created by: 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
|
|
|
|
BROKEN= Unfetchable (google code has gone away)
|
|
|
|
USES= gmake
|
|
ALL_TARGET= ttf2eot
|
|
|
|
PLIST_FILES= bin/ttf2eot
|
|
PORTDOCS= README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|g++|${CXX}|' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ttf2eot ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|