60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
38 lines
944 B
Makefile
38 lines
944 B
Makefile
# Created by: bf <bf@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= DoulosSILCompact
|
|
PORTVERSION= 4.110
|
|
PORTREVISION= 2
|
|
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=DoulosSIL&pkg=Compact&ver=${PORTVERSION}&filename=/
|
|
.else
|
|
MASTER_SITES= LOCAL/bf
|
|
.endif
|
|
|
|
MAINTAINER= bf@FreeBSD.org
|
|
COMMENT= Doulos SIL TrueType font collection, compact variant
|
|
|
|
LICENSE= OFL11
|
|
|
|
USES= fonts zip
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= ${FONTSDIR}/${PORTNAME}-R.ttf
|
|
|
|
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>
|