blob: a0460db0e1992269dfcdf2af3f52170ae2008c39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# New ports collection makefile for: ttmkfdir
# Date created: September 08, 1998
# Whom: Thomas Gellekum <tg@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= ttmkfdir
PORTVERSION= 0.0
CATEGORIES= x11
MASTER_SITES= http://www.darmstadt.gmd.de/~pommnitz/TrueType/
DISTNAME= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
LIB_DEPENDS= ttf.4:${PORTSDIR}/print/freetype
NO_WRKSUBDIR= yes
USE_X_PREFIX= yes
do-build:
cd ${WRKSRC}; ${CC} ${CFLAGS} -I${LOCALBASE}/include/freetype \
ttmkfdir.c -o ttmkfdir -L${LOCALBASE}/lib -lttf
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ttmkfdir ${PREFIX}/bin
.include <bsd.port.mk>
|