d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
58 lines
1.6 KiB
Makefile
58 lines
1.6 KiB
Makefile
# New ports collection makefile for: mathfonts
|
|
# Date created: 6 March 2005
|
|
# Whom: Thierry Thomas <thierry@pompo.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mathfonts
|
|
PORTVERSION= 4.1 # Don't upgrade this port if not supported by MathML-enabled Mozilla
|
|
# # Please check http://www.mozilla.org/projects/mathml/fonts/
|
|
PORTREVISION= 3
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= http://support.wolfram.com/mathematica/systems/windows/general/files/
|
|
DISTNAME= MathFonts_TrueType_${PORTVERSION:S/.//}
|
|
EXTRACT_SUFX= .exe
|
|
DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= thierry@FreeBSD.org
|
|
COMMENT= Mathematica fonts for MathML-enabled Mozilla
|
|
|
|
BUILD_DEPENDS= ttmkfdir:${PORTSDIR}/x11-fonts/ttmkfdir
|
|
RUN_DEPENDS= ${FONTSBASE}/texcm-ttf/cmr10.ttf:${PORTSDIR}/x11-fonts/texcm-ttf
|
|
|
|
RESTRICTED= no distribution of the fonts allowed
|
|
NO_CDROM= ${RESTRICTED}
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_ZIP= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= FONTSDIR="${FONTSDIR}"
|
|
PLIST_SUB+= FONTSDIR="${FONTSDIR:S|${PREFIX}/||}"
|
|
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
FONTNAME= ${PORTNAME}
|
|
FONTSBASE= ${X11BASE}/lib/X11/fonts
|
|
FONTSDIR= ${PREFIX}/lib/X11/fonts/${FONTNAME}
|
|
TTMKFDIR_CMD= ${X11BASE}/bin/ttmkfdir
|
|
|
|
do-build:
|
|
${TTMKFDIR_CMD} -c -f ${FONTNAME} -d ${WRKSRC} | ${CAT} -n | \
|
|
${SED} -e 's|^ 1|100000|' | ${SORT} -r | \
|
|
${CUT} -c 8- > ${WRKSRC}/fonts.scale
|
|
${CP} ${WRKSRC}/fonts.scale ${WRKSRC}/fonts.dir
|
|
|
|
do-install:
|
|
${MKDIR} ${FONTSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.ttf ${WRKSRC}/fonts.scale ${WRKSRC}/fonts.dir \
|
|
${FONTSDIR}
|
|
|
|
post-install:
|
|
@${ECHO_MSG}
|
|
@${CAT} ${PKGMESSAGE}
|
|
@${ECHO_MSG}
|
|
|
|
.include <bsd.port.mk>
|