mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
a5da770e67
Xorg is now looking in ${LOCALBASE}/share/fonts by default Xorg now accepts symlinks in etc/X11/fontpath.d (as decribed in Xserver(1)) Large cleanup on lots of font ports All fonts are now properly dynamically generating fonts.dir and fonts.scale instead of sometime overwriting existing ones) All fonts are generating fontconfig's cache Improve consistency in fonts ports
40 lines
832 B
Makefile
40 lines
832 B
Makefile
# Created by: Junho CHOI <junho.choi@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hanyangfonts
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= korean x11-fonts
|
|
MASTER_SITES= http://ftp.kaist.ac.kr/hangul/fonts/ \
|
|
ftp://ftp.kaist.ac.kr/hangul/fonts/ \
|
|
ftp://ftp.kr.FreeBSD.org/pub/FreeBSD-kr/distfiles/
|
|
DISTNAME= hanyang-font-pcf
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Hanyang Hangul fonts for X11
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
USES= fonts
|
|
NO_WRKSUBDIR= yes
|
|
FONTNAME= hanyang
|
|
|
|
FONTS= hgm10 hgm12 hgm14 hgm16 hgm18 hgm20 \
|
|
hmm10 hmm12 hmm14 hmm16 hmm18 hmm20
|
|
|
|
do-build:
|
|
@cd ${WRKSRC}; \
|
|
for fn in ${FONTS}; do \
|
|
${GZIP_CMD} $$fn.pcf; \
|
|
${ECHO} $$fn "compressed"; \
|
|
done; \
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${FONTSDIR}
|
|
.for f in ${FONTS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f}.pcf.gz \
|
|
${STAGEDIR}${FONTSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|