Update x11-fonts/mkfontscale to 1.2.0 Remove x11-fonts/mkfontdir, which has been merged into mkfontscale. Update dependencies and bump portrevisions. Add an entry to UPDATING and MOVES Changelog: https://lists.x.org/archives/xorg/2019-March/059633.html Thanks to Antoine for the exp-run! PR: 236336 (exp-run) Obtained from: FreeBSD Graphics Team dev repo https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/mkfontscale Sponsored by: B3 Init
37 lines
827 B
Makefile
37 lines
827 B
Makefile
# Created by: bf <bf@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= CharisSIL
|
|
PORTVERSION= 4.114
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= http://scripts.sil.org/cms/scripts/render_download.php?&format=file&media_id=${MEDIA_ID}&filename=/ \
|
|
LOCAL/bf
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Charis SIL TrueType font collection
|
|
|
|
LICENSE= OFL11
|
|
|
|
USES= fonts zip
|
|
|
|
MEDIA_ID= ${DISTNAME}${EXTRACT_SUFX}
|
|
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
|
|
|
|
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>
|