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
1 KiB
Makefile
35 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2006/03/04 21:29:38 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= bakoma-20010719
|
|
PKGNAME= bakoma-fonts-1.1
|
|
CATEGORIES= fonts
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
# The "on the fly" distfile creation from CTAN messes up the checksums.
|
|
#MASTER_SITES= ${MASTER_SITE_TEX_CTAN:=fonts/cm/ps-type1/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma/
|
|
COMMENT= BaKoMa Fonts for TeX
|
|
|
|
LICENSE+= no-commercial-use
|
|
NO_SRC_ON_CDROM= #defined
|
|
NO_BIN_ON_CDROM= #defined
|
|
BAKOMA_DIR= ${PREFIX}/share/tex-contrib/BaKoMa
|
|
WRKSRC= ${WRKDIR}/bakoma
|
|
|
|
do-build:
|
|
${RM} -f ${WRKSRC}/fontmap.map
|
|
${CAT} ${WRKSRC}/etc/cmfonts.map ${WRKSRC}/etc/amsfonts.map | \
|
|
${SED} 's;<;<${BAKOMA_DIR}/pfb/;g' > ${WRKSRC}/fontmap.map
|
|
|
|
do-install:
|
|
.for d in afm etc pfb pfm tfm ttf
|
|
${INSTALL_DATA_DIR} ${BAKOMA_DIR}/${d}
|
|
${INSTALL_DATA} ${WRKSRC}/${d}/* ${BAKOMA_DIR}/${d}
|
|
.endfor
|
|
.for f in fontmap.map BaKoMa-AMS.Fonts BaKoMa-CM.Fonts README.news
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${BAKOMA_DIR}
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|