blob: d3017d12d69ee78ba87169ea17e719ac1af1dc92 (
plain) (
blame)
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
29
30
31
32
|
# Created by: Nicola Vitale <nivit@email.it>
# $FreeBSD$
PORTNAME= jsMath-fonts-sprite
PORTVERSION= 1.0
CATEGORIES= math www
MASTER_SITES= http://www.math.union.edu/~dpvc/jsMath/download/ \
http://nivi.interfree.it/distfiles/${PORTNAME}/
MAINTAINER= nivit@FreeBSD.org
COMMENT= A sprite fonts pack for jsMath
USE_ZIP= yes
NO_BUILD= yes
WRKSRC= ${WRKDIR}
WWWDIR?= ${PREFIX}/www/jsMath
.for _i in bx ex mi r sy ti
PLIST_SUB+= D${_i}a=${WWWDIR_REL}/fonts-sprite/cm${_i}10/alpha
PLIST_SUB+= D${_i}p=${WWWDIR_REL}/fonts-sprite/cm${_i}10/plain
PLIST_SUB+= D${_i}j=${WWWDIR_REL}/fonts-sprite/cm${_i}10
.endfor
PLIST_SUB+= Dcmj=${WWWDIR_REL}/fonts-sprite/cm-fonts
NO_STAGE= yes
do-install:
@${INSTALL} -d ${WWWDIR}/fonts-sprite
@${CP} -Rp ${WRKSRC}/fonts-sprite ${WWWDIR}
@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${WWWDIR}/fonts-sprite
@${CHMOD} -R go-w ${WWWDIR}/fonts-sprite
.include <bsd.port.mk>
|