diff options
author | itojun <itojun> | 2001-07-22 01:08:36 +0000 |
---|---|---|
committer | itojun <itojun> | 2001-07-22 01:08:36 +0000 |
commit | 494a4f0eb32d1acad1cac281cf34e2ee378da85c (patch) | |
tree | e9a35315e9f52e840e412771f75abf2a169b4612 /fonts/ko-kaist/Makefile | |
parent | bc082dba466add3d974a9aa804f808b892a91ce0 (diff) | |
download | pkgsrc-494a4f0eb32d1acad1cac281cf34e2ee378da85c.tar.gz |
Korean kaist X11 fonts
Diffstat (limited to 'fonts/ko-kaist/Makefile')
-rw-r--r-- | fonts/ko-kaist/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/fonts/ko-kaist/Makefile b/fonts/ko-kaist/Makefile new file mode 100644 index 00000000000..cb41ba5638c --- /dev/null +++ b/fonts/ko-kaist/Makefile @@ -0,0 +1,36 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/07/22 01:08:36 itojun Exp $ +# + +DISTNAME= ko-kaist-20010718 +CATEGORIES= fonts x11 korean +MASTER_SITES+= ftp://ftp.kr.freebsd.org/pub/FreeBSD-kr/distfiles/ +DISTFILES= kaist-newmj18.bdf.gz ks_philgi16.bdf.gz \ + kaist-newmj16.bdf.gz ks_iyagi16.bdf.gz + +MAINTAINER= packages@netbsd.org +COMMENT= X11 fonts for Korean KSC 5601 standard (kaist foundry) + +CONFLICTS+= ksc5601fonts-[0-9]* + +USE_X11BASE= yes +EXTRACT_ONLY= # empty + +MAKE_ENV+= FONTDIR=${FONTDIR} GZIP_CMD="${GZIP_CMD}" + +FONTDIR=${PREFIX}/lib/X11/fonts/local + +do-extract: + ${MKDIR} ${WRKSRC} + for i in ${DISTFILES}; do \ + ${CP} ${_DISTDIR}$$i ${WRKDIR}; ${GUNZIP_CMD} ${WRKDIR}/$$i; \ + done + ${CP} ${.CURDIR}/../../fonts/ko-x11fonts/files/Makefile ${WRKSRC} + (cd ${WRKSRC}; ${MAKE} prepare) + +pre-install: + [ -d ${FONTDIR} ] || ${INSTALL_DATA_DIR} ${FONTDIR} + +post-install: + (cd ${FONTDIR}; mkfontdir) + +.include "../../mk/bsd.pkg.mk" |