freebsd-ports/x11-fonts/google-fonts/Makefile
Steve Wills 7a228188eb x11-fonts/google-fonts: update to 0.0.0.20180913
PR:		231564
Submitted by:	Dmitri Goutnik <dg@syrec.org> (maintainer)
2018-09-21 22:01:53 +00:00

68 lines
1.7 KiB
Makefile

# $FreeBSD$
PORTNAME= google-fonts
DISTVERSION= 0.0.0.20180913
CATEGORIES= x11-fonts
MAINTAINER= dg@syrec.org
COMMENT= Collection of freely redistributable TrueType fonts from Google
LICENSE= APACHE20 OFL11
LICENSE_COMB= multi
RUN_DEPENDS= anonymous-pro>0:x11-fonts/anonymous-pro \
comfortaa-ttf>0:x11-fonts/comfortaa-ttf \
croscorefonts>0:x11-fonts/croscorefonts-fonts-ttf \
noto-lite>0:x11-fonts/noto-lite \
roboto-fonts-ttf>0:x11-fonts/roboto-fonts-ttf \
sourcecodepro-ttf>0:x11-fonts/sourcecodepro-ttf \
sourcesanspro-ttf>0:x11-fonts/sourcesanspro-ttf \
sourceserifpro-ttf>0:x11-fonts/sourceserifpro-ttf \
ubuntu-font>0:x11-fonts/ubuntu-font \
vollkorn-ttf>0:x11-fonts/vollkorn-ttf
USES= fonts
NO_ARCH= yes
NO_BUILD= yes
USE_GITHUB= yes
GH_ACCOUNT= google
GH_PROJECT= fonts
GH_TAGNAME= c9d3903
SUB_FILES= pkg-message
OPTIONS_DEFINE= DOCS
# These font families are installed by the RUN_DEPENDS above.
EXCLUSIONS= ofl/anonymous-pro \
ofl/comfortaa \
apache/arimo \
apache/cousine \
apache/tinos \
ofl/notosans \
ofl/notoserif \
apache/roboto \
apache/robotocondensed \
ofl/sourcecodepro \
ofl/sourcesanspro \
ofl/sourceserifpro \
ufl/* \
ofl/vollkorn \
ofl/vollkornsc
do-install:
@${MKDIR} ${STAGEDIR}${FONTSDIR}
(cd ${WRKSRC} && ${RM} -r ${EXCLUSIONS})
${FIND} ${WRKSRC} -name \*.ttf -exec ${INSTALL_DATA} {} ${STAGEDIR}${FONTSDIR} \;
post-install-DOCS-on:
for dir in $$(${FIND} ${WRKSRC} -name \*.ttf -exec ${DIRNAME} {} \; | ${SORT} -u); do \
family=$$(${BASENAME} $${dir}); \
${FIND} $${dir} \( -name \*.txt -o -name \*.html \) -exec \
${SH} -c "${MKDIR} ${STAGEDIR}${DOCSDIR}/$${family} && \
${INSTALL_DATA} {} ${STAGEDIR}${DOCSDIR}/$${family}" \; ; \
done
.include <bsd.port.mk>