mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
4c46ca73d8
Add USES=xorg and USES=gl to ports in categories starting with 'x' While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
41 lines
827 B
Makefile
41 lines
827 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= firago
|
|
PORTREVISION= 1
|
|
PORTVERSION= 1.001
|
|
CATEGORIES= x11-fonts
|
|
|
|
MAINTAINER= trueos@norwegianrockcat.com
|
|
COMMENT= Expanded version of Fira Sans with support for additional languages
|
|
|
|
LICENSE= OFL11
|
|
|
|
USES= fonts xorg
|
|
|
|
USE_XORG= x11
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= bBoxType
|
|
GH_PROJECT= FiraGO
|
|
GH_TAGNAME= 715cd3e
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
PORTDOCS= *.pdf
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${FONTSDIR}
|
|
${FIND} ${WRKSRC}/Fonts -type f -name \*.otf | while read f; do \
|
|
${INSTALL_DATA} $$f ${STAGEDIR}${FONTSDIR} ; done
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/Technical\ Report\ PDF/*.pdf ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/FiraGO_FiraSans_Comparison.pdf \
|
|
${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|