summaryrefslogtreecommitdiff
path: root/Build/source/texk
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2011-06-16 13:58:57 +0000
committerKarl Berry <karl@freefriends.org>2011-06-16 13:58:57 +0000
commite7326f53cb947e1155a7dfcd96bf0afd53e585b2 (patch)
treed5dbbc25d4a0a3a7345f2aa12e5c0188248feef5 /Build/source/texk
parentba55638f5bad2a560d9394efedee5202c6d30a09 (diff)
use same transformation as the sh updmap, to improve compatibility; remove spurious "-Narrow-BoldOblique" in lw35 support files; regenerate
git-svn-id: svn://tug.org/texlive/trunk@23012 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk')
-rw-r--r--Build/source/texk/tetex/ChangeLog17
-rwxr-xr-xBuild/source/texk/tetex/updmap.pl119
2 files changed, 76 insertions, 60 deletions
diff --git a/Build/source/texk/tetex/ChangeLog b/Build/source/texk/tetex/ChangeLog
index 162eb2cb59a..0f31699c480 100644
--- a/Build/source/texk/tetex/ChangeLog
+++ b/Build/source/texk/tetex/ChangeLog
@@ -1,5 +1,22 @@
2011-06-16 Karl Berry <karl@tug.org>
+ * updmap.pl ($pdftexStripEnc): set to zero.
+ (to_pdftex): return the input, not empty.
+ (ProcessOptions): accept and ignore dvipdfmoutputdir.
+
+ * updmap.pl (@psADOBE): use the same list as from sh updmap,
+ including the spaces, to be sure we are getting the same behavior.
+
+ Related:
+ * Master/texmf/fonts/map/dvips/tetex/pdftex35.map,
+ * Master/texmf/fonts/map/dvips/tetex/ps2pk35.map (phvbo8rn,phvbo8yn):
+ ever since at least TL 7, these have had
+ spurious "-Narrow-BoldOblique" suffixes on the correct
+ NimbusSanL-BoldCondItal, left over from the Adobe
+ Helvetica-Narrow-BoldOblique.
+ (Yet the fonts could still be used.)
+ * Master/texmf/fonts/map/{dvips,pdftex}/updmap: regenerate.
+
* updmap.pl: support --setoption foo bar as well as foo=bar,
for compatibility.
(setOptions): new fn.
diff --git a/Build/source/texk/tetex/updmap.pl b/Build/source/texk/tetex/updmap.pl
index be54d4cd33f..d67589561dc 100755
--- a/Build/source/texk/tetex/updmap.pl
+++ b/Build/source/texk/tetex/updmap.pl
@@ -61,7 +61,7 @@ my @missing;
my $writelog = 0;
my $cache = 0; # don't change!
my $copy;
-my $pdftexStripEnc=1;
+my $pdftexStripEnc = 0;
# initialize mktexupd
my $updLSR=&mktexupd();
@@ -69,45 +69,42 @@ $updLSR->{mustexist}(0);
my @cfg = ();
-my @psADOBE = ( # this list is in reverse order by PostScript name
- # so that the Times-BoldItalic substitution (for
- # example) happens before Times-Bold. Otherwise the
- # result is the bogus "Times-Bold Ital".
- 's/Dingbats/ZapfDingbats/',
- 's/URWChanceryL-MediItal/ZapfChancery-MediumItalic/',
- 's/NimbusRomNo9L-ReguItal/Times-Italic/',
- 's/NimbusRomNo9L-Regu/Times-Roman/',
- 's/NimbusRomNo9L-MediItal/Times-BoldItalic/',
- 's/NimbusRomNo9L-Medi/Times-Bold/',
- 's/StandardSymL/Symbol/',
- 's/URWPalladioL-Ital/Palatino-Italic/',
- 's/URWPalladioL-Roma/Palatino-Roman/',
- 's/URWPalladioL-BoldItal/Palatino-BoldItalic/',
- 's/URWPalladioL-Bold/Palatino-Bold/',
- 's/CenturySchL-Ital/NewCenturySchlbk-Italic/',
- 's/CenturySchL-Roma/NewCenturySchlbk-Roman/',
- 's/CenturySchL-BoldItal/NewCenturySchlbk-BoldItalic/',
- 's/CenturySchL-Bold/NewCenturySchlbk-Bold/',
- 's/NimbusSanL-ReguCondItal/Helvetica-Narrow-Oblique/',
- 's/NimbusSanL-ReguItal/Helvetica-Oblique/',
- 's/NimbusSanL-ReguCond/Helvetica-Narrow/',
- 's/NimbusSanL-Regu/Helvetica/',
- 's/NimbusSanL-BoldCondItal/Helvetica-Narrow-BoldOblique/',
- 's/NimbusSanL-BoldItal/Helvetica-BoldOblique/',
- 's/NimbusSanL-BoldCond/Helvetica-Narrow-Bold/',
- 's/NimbusSanL-Bold/Helvetica-Bold/',
- 's/NimbusMonL-ReguObli/Courier-Oblique/',
- 's/NimbusMonL-Regu/Courier/',
- 's/NimbusMonL-BoldObli/Courier-BoldOblique/',
- 's/NimbusMonL-Bold/Courier-Bold/',
- 's/URWBookmanL-LighItal/Bookman-LightItalic/',
- 's/URWBookmanL-Ligh/Bookman-Light/',
- 's/URWBookmanL-DemiBoldItal/Bookman-DemiItalic/',
- 's/URWBookmanL-DemiBold/Bookman-Demi/',
- 's/URWGothicL-BookObli/AvantGarde-BookOblique/',
- 's/URWGothicL-Book/AvantGarde-Book/',
- 's/URWGothicL-DemiObli/AvantGarde-DemiOblique/',
- 's/URWGothicL-Demi/AvantGarde-Demi/',
+my @psADOBE = (
+ 's/ URWGothicL-Demi / AvantGarde-Demi /',
+ 's/ URWGothicL-DemiObli / AvantGarde-DemiOblique /',
+ 's/ URWGothicL-Book / AvantGarde-Book /',
+ 's/ URWGothicL-BookObli / AvantGarde-BookOblique /',
+ 's/ URWBookmanL-DemiBold / Bookman-Demi /',
+ 's/ URWBookmanL-DemiBoldItal / Bookman-DemiItalic /',
+ 's/ URWBookmanL-Ligh / Bookman-Light /',
+ 's/ URWBookmanL-LighItal / Bookman-LightItalic /',
+ 's/ NimbusMonL-Bold / Courier-Bold /',
+ 's/ NimbusMonL-BoldObli / Courier-BoldOblique /',
+ 's/ NimbusMonL-Regu / Courier /',
+ 's/ NimbusMonL-ReguObli / Courier-Oblique /',
+ 's/ NimbusSanL-Bold / Helvetica-Bold /',
+ 's/ NimbusSanL-BoldCond / Helvetica-Narrow-Bold /',
+ 's/ NimbusSanL-BoldItal / Helvetica-BoldOblique /',
+ 's/ NimbusSanL-BoldCondItal / Helvetica-Narrow-BoldOblique /',
+ 's/ NimbusSanL-Regu / Helvetica /',
+ 's/ NimbusSanL-ReguCond / Helvetica-Narrow /',
+ 's/ NimbusSanL-ReguItal / Helvetica-Oblique /',
+ 's/ NimbusSanL-ReguCondItal / Helvetica-Narrow-Oblique /',
+ 's/ CenturySchL-Bold / NewCenturySchlbk-Bold /',
+ 's/ CenturySchL-BoldItal / NewCenturySchlbk-BoldItalic /',
+ 's/ CenturySchL-Roma / NewCenturySchlbk-Roman /',
+ 's/ CenturySchL-Ital / NewCenturySchlbk-Italic /',
+ 's/ URWPalladioL-Bold / Palatino-Bold /',
+ 's/ URWPalladioL-BoldItal / Palatino-BoldItalic /',
+ 's/ URWPalladioL-Roma / Palatino-Roman /',
+ 's/ URWPalladioL-Ital / Palatino-Italic /',
+ 's/ StandardSymL / Symbol /',
+ 's/ NimbusRomNo9L-Medi / Times-Bold /',
+ 's/ NimbusRomNo9L-MediItal / Times-BoldItalic /',
+ 's/ NimbusRomNo9L-Regu / Times-Roman /',
+ 's/ NimbusRomNo9L-ReguItal / Times-Italic /',
+ 's/ URWChanceryL-MediItal / ZapfChancery-MediumItalic /',
+ 's/ Dingbats / ZapfDingbats /',
);
my @fileADOBEkb = (
@@ -423,7 +420,7 @@ Valid commands:
--edit edit updmap.cfg file
--showoptions ITEM show alternatives for options
--setoption OPTION VALUE set option, where OPTION is one of:
- dvipsPreferOutline, LW35, dvipsDownloadBase35,
+ LW35, dvipsPreferOutline, dvipsDownloadBase35,
or pdftexDownloadBase14
--setoption OPTION=VALUE as above, just different syntax
--enable MAPTYPE MAPFILE add "MAPTYPE MAPFILE" to updmap.cfg,
@@ -453,6 +450,7 @@ Report bugs to: tex-k\@tug.org
TeX Live home page: <http://tug.org/texlive/>
EOF
;
+ print &version() . "\n";
print $usage;
exit 0;
}
@@ -551,7 +549,7 @@ sub transLW35 {
for my $r (@psADOBE) {
map { eval($r); } @lines;
}
- my @filemode = eval ("\@file" .$mode);
+ my @filemode = eval ("\@file" . $mode);
for my $r (@filemode) {
map { eval($r); } @lines;
}
@@ -849,6 +847,7 @@ sub processOptions {
"cnffile=s" => \$cnfFile,
"copy" => \$copy,
"disable=s" => \@disableItem,
+ "dvipdfmoutputdir=s" => sub {print "$0: ignoring --dvipdfmoutputdir\n"},
"dvipsoutputdir=s" => \$dvipsoutputdir,
"enable=s" => \$enableItem,
"edit" => \$opt_edit,
@@ -864,7 +863,7 @@ sub processOptions {
"setoption=s{1,2}" => \@setoptions,
"showoptions=s" => \@showoptions,
"syncwithtrees" => \$syncwithtrees,
- "version" => sub { print &version() . "\n"; exit(0) },
+ "version" => sub { print &version() . "\n"; exit(0); },
"h|help" => \$opt_help)) {
my $progname = &progname();
die "Try \"$progname --help\" for more information.\n";
@@ -958,7 +957,7 @@ sub normalizeLines {
# differences, this is not done by default.
#
sub to_pdftex {
- return unless $pdftexStripEnc;
+ return @_ unless $pdftexStripEnc;
my @in = @_;
my @out;
foreach my $line (@in) {
@@ -1023,26 +1022,26 @@ sub mkMaps {
$pdftexDownloadBase14 = &cfgval("pdftexDownloadBase14");
$pdftexDownloadBase14 = 1 unless (defined $pdftexDownloadBase14);
- &wlog ("\nupdmap " .
- ($dry_run ? "would create" : "is creating") .
- " new map files using the following configuration:" .
- "\n LW35 font names : " .
- $mode .
- "\n prefer outlines : " .
- ($dvipsPreferOutline ? "true" : "false") .
- "\n texhash enabled : " .
- ($nohash ? "false" : "true") .
- "\n download standard fonts (dvips) : " .
- ($dvipsDownloadBase35 ? "true" : "false") .
- "\n download standard fonts (pdftex) : " .
- ($pdftexDownloadBase14 ? "true" : "false") .
- "\n\n");
+ &wlog ("\nupdmap "
+ . ($dry_run ? "would create" : "is creating")
+ . " new map files using the following configuration:"
+ . "\n LW35 font names : "
+ . $mode
+ . "\n prefer outlines : "
+ . ($dvipsPreferOutline ? "true" : "false")
+ . "\n texhash enabled : "
+ . ($nohash ? "false" : "true")
+ . "\n download standard fonts (dvips) : "
+ . ($dvipsDownloadBase35 ? "true" : "false")
+ . "\n download standard fonts (pdftex) : "
+ . ($pdftexDownloadBase14 ? "true" : "false")
+ . "\n\n");
&wlog ("Scanning for LW35 support files");
$dvips35 = &locateMap("dvips35.map");
$pdftex35 = &locateMap("pdftex35.map");
$ps2pk35 = &locateMap("ps2pk35.map");
- my $LW35="\n$dvips35\n$pdftex35\n$ps2pk35\n\n";
+ my $LW35 = "\n$dvips35\n$pdftex35\n$ps2pk35\n\n";
if ($dry_run) {
print $LW35;
} else {
@@ -1081,7 +1080,7 @@ sub mkMaps {
if (@missing > 0) {
print STDERR "\nERROR: The following map file(s) couldn't be found:\n\t";
print STDERR join(' ', @missing);
- my $progname=&progname();
+ my $progname = &progname();
print STDERR "\n\n\tDid you run mktexlsr?\n\n" .
"\tYou can delete non-existent map entries using the command\n".
"\n\t $progname --syncwithtrees\n\n";