blob: c58c7715583db54acddf182215a316608c06379b (
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
29
30
31
32
33
34
35
36
37
38
39
40
|
# Created by: bf <bf@FreeBSD.org>
# $FreeBSD$
PORTNAME= CharisSILCompact
PORTVERSION= 4.114
PORTREVISION= 1
CATEGORIES= x11-fonts
#unfortunately, the SIL server embeds timestamps in the distfile, so we use a static local copy
.if defined(MAINTAINER_MODE)
MASTER_SITES= http://scripts.sil.org/ttw/fonts2go.cgi?family=CharisSIL&pkg=Compact&ver=${PORTVERSION}&filename=/
.else
MASTER_SITES= LOCAL/bf
.endif
MAINTAINER= ports@FreeBSD.org
COMMENT= Charis SIL TrueType font collection, compact variant
LICENSE= OFL11
USES= fonts zip
NO_BUILD= yes
.for type in B BI I R
PLIST_FILES+= ${FONTSDIR}/${PORTNAME}-${type}.ttf
.endfor
OPTIONS_DEFINE= DOCS
PORTDOCS= FONTLOG.txt OFL-FAQ.txt OFL.txt README.txt feat_set_tuned.xml
SUB_FILES= pkg-message
do-install:
${MKDIR} ${STAGEDIR}${FONTSDIR}
(cd ${WRKSRC} ; ${INSTALL_DATA} *.ttf ${STAGEDIR}${FONTSDIR})
${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC} ; ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>
|