1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00
freebsd-ports/x11-fonts/gnu-unifont/Makefile
Sunpoet Po-Chuan Hsieh b47228a37d Update to 13.0.02
Changes:	http://unifoundry.com/unifont/
		https://savannah.gnu.org/projects/unifont
- Plane 0:
  - Johnnie Weaver modified U+A650 and U+A651 to be single-width.
  - David Corbett modified U+02AC, U+2720, U+A7F5, and U+A7F6.
  - Paul Hardy modified U+02B7, U+0D81, U+1FBE, U+2CCE, U+2CCF, and U+AB69.
  - In unifont_jp, replaced Hiragana (U+3040..U+309F) and Katakana
  (  U+30A0..U+30FF) glyphs with those from the public Domain JIS X 0213 font
    izmg16.bdf. If the response to these new glyphs is positive, this change
    could be made in the base unifont font as well.
  - In unifont and unifont_jp, replaced Halfwidth CJK Punctuation
    (U+FF61..U+FF64) and Halfwidth Katakana Variations (U+FF65..U+FF9F) from the
    public domain one-byte FONTX2 font DFLHN16.FNT.
- Plane 1:
  - Rebecca Bettencourt updated U+1FB3C..U+1FB6B in the Symbols for Legacy
    Computing block to improve their slopes.
  - David Corbett touched up some Chorasmian glyphs (U+10FB0..U+10FDF) and
    U+1145A (NEWA COMMA).
2020-05-01 05:01:01 +00:00

36 lines
723 B
Makefile

# $FreeBSD$
PORTNAME= unifont
PORTVERSION= 13.0.02
PORTEPOCH= 1
CATEGORIES= x11-fonts
MASTER_SITES= GNU/unifont/unifont-${PORTVERSION}
PKGNAMEPREFIX= gnu-
DISTFILES= ${FONTFILES:S|$|-${PORTVERSION}${FONTSUFFIX}|}
EXTRACT_ONLY=
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>