Re: Are all map files configuration files?
On 30.03.04 Frank Küster (frank@debian.org) wrote:
> Hilmar Preusse <hille42@web.de> schrieb:
> > On 26.03.04 Frank Küster (frank@debian.org) wrote:
Hi,
> It's in tetex-extra, according to
>
> $ dlocate eurosym.map; dlocate -l tetex-extra
>
Missed that. updated patch attached.
> >> /usr/share/texmf/dvips/psnfssx/ptm8y.map
> >> /usr/share/texmf/dvips/psnfssx/phv8y.map
> >> /usr/share/texmf/dvips/psnfssx/pcr8y.map
> >>
> > these files seem to call the fonts with another encoding. Not sure,
> > if we should use them.
> >
> > Readme:
> > The map files
> > ptm8y.map phv8y.map pcr8y.map
> > are just included for completeness.
>
> But whether they are read is determined by the entries in
> updmap.cfg. Hence it shouldn't do any harm if we do include them - and
> some users might want to change updmap.cfg and use them.
>
My patch don't put them into /etc. Please object if you disagree.
H.
--
Experience is the worst teacher. It always gives the test first and
the instruction afterward.
http://rudi.urz.tu-dresden.de/~hille/
--- setup-maps.orig Tue Mar 30 16:47:44 2004
+++ setup-maps Tue Mar 30 17:51:44 2004
@@ -10,10 +10,13 @@
ANTT="config.antt antt.map antt.enc"
BLUESKY="config.ams config.cm psfonts.ams psfonts.cm config.amz config.cmz psfonts.amz psfonts.cmz"
BSRTETEX="bsr-interpolated.map bsr.map"
+CCPL="ccpl.map"
LUCIDA="lucidabr-k.map lucidabr.map lumath-k.map lumath.map"
PSNFSS="charter.map pazo.map psnfss.map"
-MISC="cmcyr.map mathpi.map cs.map config.mirr marvosym.map wolfram.map"
-TETEX="config.builtin35 config.outline hoekwater.map mt-yy.map txfonts.map config.dfaxhigh config.pdf lucidabr-o.map pdftex35.map config.dfaxlo config.pk mathpple.map ps2pk35.map config.download35 config.www mt-belleek.map pxfonts.map config.gsftopk dvips35.map mt-plus.map ttcmex.map"
+OMEGA="omega.map"
+MISC="cmcyr.map mathpi.map cs.map config.mirr marvosym.map pcrr8rn.map wolfram.map"
+EXTRAMISC="eurosym.map"
+TETEX="config.builtin35 config.outline hoekwater.map mt-yy.map txfonts.map config.dfaxhigh config.pdf lucidabr-o.map pdftex35.map config.dfaxlo config.pk mathpple.map ps2pk35.map config.download35 config.www mt-belleek.map pxfonts.map config.gsftopk dvips35.map mt-plus.map ttcmex.map dvipdfm35.map lumath-o.map"
PL="config.pl pl.map"
QFNT="config.qbk config.qpl config.qzc config.qcr config.qhv config.qtm qbk.map qcr.map qhv.map qpl.map qtm.map qzc.map"
XYPIC="xypic.map"
@@ -40,6 +43,16 @@
fi
done
+for f in ${CCPL}
+do
+if [ -f ${TXMFD}/cc-pl/${f} ]; then
+mv -i ${TXMFD}/cc-pl/${f} ${ETC}
+(cd ${TXMFD}/cc-pl ; ln -s ${DVIPS}/${f} .)
+else
+echo "*** ${TXMFD}/cc-pl/${f} doesn't exist!"
+fi
+done
+
for f in ${PSNFSS}
do
if [ -f ${TXMFD}/psnfss/${f} ]; then
@@ -114,6 +127,16 @@
fi
done
+for f in ${OMEGA}
+do
+if [ -f ${EXTD}/omega/${f} ]; then
+mv -i ${EXTD}/omega/${f} ${EXETC}
+(cd ${EXTD}/omega ; ln -s ${DVIPS}/${f} .)
+else
+echo "*** ${EXTD}/omega/${f} doesn't exist!"
+fi
+done
+
for f in ${BSRTETEX}
do
if [ -f ${TXMFD}/tetex/${f} ]; then
@@ -121,6 +144,16 @@
(cd ${EXTD}/tetex ; ln -s ${DVIPS}/${f} .)
else
echo "*** ${TXMFD}/tetex/${f} doesn't exist!"
+fi
+done
+
+for f in ${EXTRAMISC}
+do
+if [ -f ${EXTD}/misc/${f} ]; then
+mv -i ${EXTD}/misc/${f} ${EXETC}
+(cd ${EXTD}/misc ; ln -s ${DVIPS}/${f} .)
+else
+echo "*** ${EXTD}/misc/${f} doesn't exist!"
fi
done
Reply to: