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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
#!/usr/bin/env perl
# $Id$
# Copyright 2008 TeX Users Group.
# This file is licensed under the GNU General Public License version 2
# or any later version.
#
# Check that the same set of files are wrappers on w32 and symlinks on
# all others.
BEGIN {
$^W = 1;
($mydir = $0) =~ s,/[^/]*$,,;
unshift (@INC, "$mydir/..");
}
use Getopt::Long;
use Pod::Usage;
our $mydir;
my $help = 0;
GetOptions("help|?" => \$help) or pod2usage(1);
pod2usage(-exitstatus => 0, -verbose => 2) if $help;
exit (&main ());
sub main
{
my $err = 0;
chomp (my $Master = `cd $mydir/../.. && pwd`);
my $bindir = "$Master/bin";
chdir ($bindir) || die "chdir($bindir) failed: $!";
my %w = &unx_wrapper_entries ("i386-linux");
# add some additional wrappers which are currently not found
# automatically
$w{'getnonfreefonts-sys'} = 1;
$w{'updmap-sys'} = 1;
$w{'updmap'} = 1;
$w{'xindy'} = 1;
$w{'texindy'} = 1;
$w{'fmtutil-sys'} = 1;
$cww = "$Master/../Build/source/texk/texlive/tl-w32-starter.bat";
$err += &check_w32 ("win32", $cww, %w);
system("cmp win32/tl-w32-wrapper.texlua $Master/../Build/source/texk/texlive/tl-w32-wrapper.texlua");
return $err;
}
# return all symlinks starting with ".." in DIR as a hash, with symlink
# targets as the values.
#
sub unx_wrapper_entries
{
my ($DIR) = @_;
my %ret;
local *DIR;
opendir (DIR, $DIR) || die "opendir($DIR) failed: $!";
while (my $ent = readdir (DIR)) {
my $file = "$DIR/$ent";
next unless -l $file; # skip all but symlinks
my $target = readlink ($file);
die "readlink($file) failed: $!" if !defined ($target);
next unless $target =~ /^\.\./; # skip all but .. symlinks
$ret{$ent} = $target; # remember name and link target
}
closedir (DIR) || warn "closedir($DIR) failed: $!";
return %ret;
}
# windows is special, as usual. given the list of wrappers in UW, check
# that each of those entries exists in W32DIR and is a copy of the
# canonical w32 wrapper specified in W32CANONICAL.
#
sub check_w32
{
my ($w32dir, $w32canonical, %uw) = @_;
for my $k (sort keys %uw) {
system ("cmp $w32dir/$k.bat $w32canonical");
#print "$k -> $uw{$k}\n";
}
}
|