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.
35 lines
924 B
Makefile
35 lines
924 B
Makefile
# $NetBSD: Makefile,v 1.11 2006/03/04 21:29:38 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= ISO8859-2-pcf
|
|
PKGNAME= biznet-iso8859_2-1.0
|
|
PKGREVISION= 3
|
|
CATEGORIES= fonts x11
|
|
MASTER_SITES= http://www.biz.net.pl/images/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.biz.net.pl/english/x-fonts/index.html
|
|
COMMENT= Full set of ISO 8859-2 fonts for X Window System
|
|
|
|
USE_X11BASE= YES
|
|
NO_CONFIGURE= YES
|
|
NO_BUILD= YES
|
|
|
|
USE_TOOLS+= gzip
|
|
|
|
FONTDIR= ${PREFIX}/lib/X11/fonts/biznet
|
|
REQD_DIRS= ${FONTDIR} ${FONTDIR}/75dpi ${FONTDIR}/100dpi ${FONTDIR}/misc
|
|
FONTS_DIRS.x11= ${FONTDIR}/75dpi ${FONTDIR}/100dpi ${FONTDIR}/misc
|
|
|
|
do-install:
|
|
@for d in 75dpi 100dpi misc; do \
|
|
${INSTALL_DATA_DIR} ${FONTDIR}/$${d}; \
|
|
cd ${WRKDIR}/$${d}; \
|
|
${INSTALL_DATA} fonts.alias ${FONTDIR}/$${d}/; \
|
|
for f in *.pcf; do \
|
|
${ECHO} "Compressing $${f}"; \
|
|
${GZIP_CMD} -c $${f} > ${FONTDIR}/$${d}/$${f}.gz; \
|
|
done; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|