9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
36 lines
949 B
Makefile
36 lines
949 B
Makefile
# $NetBSD: Makefile,v 1.11 2006/03/04 21:29:39 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= ko-kaist-20010718
|
|
PKGREVISION= 1
|
|
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= pkgsrc-users@NetBSD.org
|
|
COMMENT= X11 fonts for Korean KSC 5601 standard (kaist foundry)
|
|
|
|
CONFLICTS+= ksc5601fonts-[0-9]*
|
|
|
|
USE_X11BASE= yes
|
|
USE_TOOLS+= gzip gunzip
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAKE_ENV+= FONTDIR=${FONTDIR:Q} GZIP_CMD=${GZIP_CMD:Q}
|
|
|
|
FONTDIR= ${PREFIX}/lib/X11/fonts/local
|
|
FONTS_DIRS.x11= ${FONTDIR}
|
|
|
|
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}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|