openbsd-ports/x11/msttcorefonts/Makefile
marcm a687987233 XFree 4.3.0 comes with mkfontscale so we no longer need ttmkfdir (and
freetype) as BUILD_DEPENDS.

Pointed out by david@
2003-04-24 03:48:37 +00:00

52 lines
1.3 KiB
Makefile

# $OpenBSD
COMMENT= "Microsoft TrueType core fonts"
DISTNAME= msttcorefonts-1.2
DISTFILES= ${FONTS}
CATEGORIES= x11
HOMEPAGE= http://corefonts.sourceforge.net/
MAINTAINER= Steve Shockley <steve.shockley@shockley.net>
# Font source files have a restrictive license
PERMIT_PACKAGE_CDROM= "Restrictive license, can't distribute modified files"
PERMIT_PACKAGE_FTP= "Restrictive license, can't distribute modified files"
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=corefonts/}
BUILD_DEPENDS= cabextract:cabextract-*:archivers/cabextract
NO_BUILD= Yes
FONTS= andale32.exe \
arial32.exe \
arialb32.exe \
comic32.exe \
courie32.exe \
georgi32.exe \
impact32.exe \
times32.exe \
trebuc32.exe \
verdan32.exe \
webdin32.exe
INST_DIR= lib/X11/fonts/mscorefonts
do-extract:
.for fontfile in ${FONTS}
${LOCALBASE}/bin/cabextract ${DISTDIR}/${fontfile} --lowercase --directory=${WRKDIST}
.endfor
do-install:
mkfontscale ${WRKDIST}
${INSTALL_DATA_DIR} "${PREFIX}/${INST_DIR}"
${INSTALL_DATA} ${WRKDIST}/*.ttf ${WRKDIST}/fonts.scale "${PREFIX}/${INST_DIR}"
tr -d \\015 < ${WRKDIST}/licen.txt > "${PREFIX}/${INST_DIR}/eula.txt"
ln -s fonts.scale "${PREFIX}/${INST_DIR}/fonts.dir"
.include <bsd.port.mk>