ced1d16612
This is a collection of scripts included in teTeX. The development of the original teTeX ceased in 2006, and these scripts are now maintained in TeX Live.
26 lines
848 B
Makefile
26 lines
848 B
Makefile
# $NetBSD: map.mk,v 1.1.1.1 2009/01/26 21:04:33 minskim Exp $
|
|
#
|
|
# This Makefile fragment is intended to be included by packages that
|
|
# install font maps for TeX. It updates font map entries in updmap.cfg
|
|
# at (de)installation time.
|
|
#
|
|
# The following variables can be defined:
|
|
#
|
|
# TEX_MAP_FILES - A list of map files.
|
|
#
|
|
# TEX_MIXEDMAP_FILES - A list of mixed map files.
|
|
#
|
|
|
|
.if !defined(TEX_MAP_MK)
|
|
TEX_MAP_MK= # defined
|
|
|
|
DEPENDS+= texlive-tetex>=2008:../../print/texlive-tetex
|
|
|
|
EVAL_PREFIX+= TETEX_PREFIX=texlive-tetex
|
|
FILES_SUBST+= UPDMAP_SYS=${TETEX_PREFIX:Q}/bin/updmap-sys
|
|
FILES_SUBST+= MAP_FILES=${TEX_MAP_FILES:Q}
|
|
FILES_SUBST+= MIXEDMAP_FILES=${TEX_MIXEDMAP_FILES:Q}
|
|
INSTALL_TEMPLATES+= ../../print/texlive-tetex/files/map-install.tmpl
|
|
DEINSTALL_TEMPLATES+= ../../print/texlive-tetex/files/map-deinstall.tmpl
|
|
|
|
.endif # TEX_MAP_MK
|