summaryrefslogtreecommitdiff
path: root/korean/hanyangfonts/Makefile
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1998-04-19 17:51:38 +0000
committerSteve Price <steve@FreeBSD.org>1998-04-19 17:51:38 +0000
commitb24a4f4aad57e2a95750fefdf3082e0bb3e06ca7 (patch)
treedcb732edcfc7895613ee48e8209d34c9da85bb8a /korean/hanyangfonts/Makefile
parentActivate x-files. (diff)
Move fonts to lib/X11/fonts/misc.
PR: 6175 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=10591
Diffstat (limited to 'korean/hanyangfonts/Makefile')
-rw-r--r--korean/hanyangfonts/Makefile30
1 files changed, 11 insertions, 19 deletions
diff --git a/korean/hanyangfonts/Makefile b/korean/hanyangfonts/Makefile
index eb109b403649..9cb7a9fa422e 100644
--- a/korean/hanyangfonts/Makefile
+++ b/korean/hanyangfonts/Makefile
@@ -3,43 +3,35 @@
# Date created: 22 Mar 1997
# Whom: Choi Jun Ho <junker@jazz.snu.ac.kr>
#
-# $Id: Makefile,v 1.2 1997/07/13 18:49:20 max Exp $
+# $Id: Makefile,v 1.3 1997/09/22 16:21:52 max Exp $
#
DISTNAME= hanyang-font-pcf
PKGNAME= ko-hanyangfonts-1.0
CATEGORIES= korean x11
MASTER_SITES= ftp://ftp.kaist.ac.kr/pub/hangul/fonts/ \
- ftp://sunsite.kren.nm.kr/pub/packages/hangul/fonts/
+ ftp://ftp.kreonet.re.kr/pub/hangul/cair-archive/fonts/
MAINTAINER= junker@jazz.snu.ac.kr
USE_X11= yes
NO_WRKSUBDIR= yes
+FONTS= hgm10 hgm12 hgm14 hgm16 hgm18 hgm20 \
+ hmm10 hmm12 hmm14 hmm16 hmm18 hmm20
+
do-build:
@cd ${WRKSRC}; \
- for fn in \
- hgm10 hgm12 hgm14 hgm16 hgm18 hgm20 \
- hmm10 hmm12 hmm14 hmm16 hmm18 hmm20; \
- do \
- compress $$fn.pcf; \
- echo $$fn "compressed"; \
+ for fn in ${FONTS}; do \
+ ${GZIP_CMD} $$fn.pcf; \
+ ${ECHO} $$fn "compressed"; \
done; \
- mkfontdir .
do-install:
@cd ${WRKSRC}; \
- ${MKDIR} ${PREFIX}/lib/X11/fonts/korean/hanyang; \
- for fn in \
- hgm10 hgm12 hgm14 hgm16 hgm18 hgm20 \
- hmm10 hmm12 hmm14 hmm16 hmm18 hmm20; \
- do \
- ${INSTALL_DATA} $$fn.pcf.Z ${PREFIX}/lib/X11/fonts/korean/hanyang; \
+ for file in ${FONTS}; do \
+ ${INSTALL_DATA} "$$file".pcf.gz ${PREFIX}/lib/X11/fonts/misc; \
done; \
- ${INSTALL_DATA} fonts.dir ${PREFIX}/lib/X11/fonts/korean/hanyang
+ mkfontdir ${PREFIX}/lib/X11/fonts/misc
-post-install:
- @${SH} ${PKGDIR}/REQ ${PKGNAME} INSTALL
-
.include <bsd.port.mk>