blob: 856e19645fb89f2063faf64cd3e03378494b7598 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# $Id$
# post action for dvipdfmx to handle upgrades of map files
# Copyright 2011 Norbert Preining
# This file is licensed under the GNU General Public License version 2
# or any later version.
#
my $texdir;
my $mode;
BEGIN {
$^W = 1;
$mode = lc($ARGV[0]);
$texdir = $ARGV[1];
# make Perl find our packages first:
unshift (@INC, "$texdir/tlpkg");
}
use TeXLive::TLUtils qw(win32 mkdirhier conv_to_w32_path log info);
if ($mode eq 'install') {
do_install();
} elsif ($mode eq 'remove') {
do_remove();
} else {
die("unknown mode: $mode\n");
}
sub do_remove {
# do nothing
}
sub do_install {
# bin-installs font-config related stuff
chomp( my $tmfsysconf = `kpsewhich -var-value=TEXMFSYSCONFIG` ) ;
chomp( my $tmfmain = `kpsewhich -var-value=TEXMFMAIN` ) ;
if (-r "$tmfsysconf/dvipdfmx/dvipdfmx.cfg") {
# assume that succeeds, we tested -r above!
open (FOO, "<$tmfsysconf/dvipdfmx/dvipdfmx.cfg");
my @lines = <FOO>;
chomp(@lines);
close(FOO);
my @outlines;
my $isold = 0;
for my $l (@lines) {
if ($l =~ m/^f\s+cid-x\.map\s*$/) {
$isold = 1;
push @outlines, "%f cid-x.map\n\n";
push @outlines, "% the following file is generated by updmap(-sys) from the
% KanjiMap entries in the updmap.cfg file.
f kanjix.map
% minimal example for Chinese and Korean users
% improvements please to tex-live\@tug.org
f ckx.map\n";
} else {
push @outlines, "$l\n";
}
}
if ($isold) {
if (!open (FOO, ">$tmfsysconf/dvipdfmx/dvipdfmx.cfg")) {
fprintf STDERR "dvipdfmx.pl(postcode): Cannot write $tmfsysconf/dvipdfmx/dvipdfmx.cfg
This config file contains an outdated map definition line.
Please see $tmfmain/dvipdfmx/dvipdfmx.cfg for changes
";
return 0;
}
print FOO @outlines;
close (FOO);
}
}
return 0;
}
### Local Variables:
### perl-indent-level: 2
### tab-width: 2
### indent-tabs-mode: nil
### End:
# vim:set tabstop=2 expandtab: #
|