cc3208acb1
Changes: http://unifoundry.com/unifont/ https://savannah.gnu.org/projects/unifont - Numerous Canadian Aboriginal glyphs: U+1467..U+146A, U+1541, U+158E, U+158F, U+15B0..U+15B3, U+1656..U+1659, U+165D..U+1660, U+1669..U+166C, and U+18B8..U+18BA. - Tamil glyphs U+0BF6 and U+0BF7. - Completely redrew the Thaana script, U+0780..U+07B1.
36 lines
731 B
Makefile
36 lines
731 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= unifont
|
|
PORTVERSION= 13.0.03
|
|
PORTEPOCH= 1
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= GNU/unifont/unifont-${PORTVERSION}
|
|
PKGNAMEPREFIX= gnu-
|
|
DISTFILES= ${FONTFILES:S|$|-${PORTVERSION}${FONTSUFFIX}|}
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT?= GNU Unicode font
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
USES= fonts
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
FONTSDIR= ${PREFIX}/share/fonts/gnu-unifont${PKGNAMESUFFIX}
|
|
PLIST_FILES= ${FONTFILES:S|^|${FONTSDIR}/|:S|$|${FONTSUFFIX}|}
|
|
|
|
FONTFILES?= unifont
|
|
FONTSUFFIX?= .pcf.gz
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${FONTSDIR}
|
|
.for i in ${FONTFILES}
|
|
${INSTALL_DATA} ${DISTDIR}/${i}-${PORTVERSION}${FONTSUFFIX} \
|
|
${STAGEDIR}${FONTSDIR}/${i}${FONTSUFFIX}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|