perl 4.0 patch 31: patch #20, continued
[p5sagit/p5-mst-13.2.git] / installperl
1 #!./perl
2
3 $mainperldir = "/usr/bin";
4
5 while (@ARGV) {
6     $nonono = 1 if $ARGV[0] eq '-n';
7     $versiononly = 1 if $ARGV[0] eq '-v';
8     shift;
9 }
10
11 umask 022;
12
13 @scripts = ('cppstdin', 'h2ph', 'c2ph', 'pstruct', 'x2p/s2p', 'x2p/find2perl');
14 @manpages = ('perl.man', 'h2ph.man', 'x2p/a2p.man', 'x2p/s2p.man');
15
16 # Read in the config file.
17
18 open(CONFIG, "config.sh") || die "You haven't run Configure yet!\n";
19 while (<CONFIG>) {
20     if (s/^(\w+=)/\$$1/) {
21         $accum =~ s/'undef'/undef/g;
22         eval $accum;
23         $accum = '';
24     }
25     $accum .= $_;
26 }
27 close CONFIG;
28
29 open(PERL_C, "perl.c");
30 while (<PERL_C>) {
31     last if /Revision:/;
32 }
33 close PERL_C;
34 s/.*Revision: //;
35 $major = $_ + 0;
36
37 $ver = sprintf("%5.3f", $major + $PATCHLEVEL / 1000);
38 $release = substr($ver,0,3);
39 $patchlevel = substr($ver,3,2);
40
41 # Do some quick sanity checks.
42
43 if ($d_dosuid && $>) { die "You must run as root to install suidperl\n"; }
44
45    $installbin          || die "No installbin directory in config.sh\n";
46 -d $installbin          || die "$installbin is not a directory\n";
47 -w $installbin          || die "$installbin is not writable by you\n"
48         unless $installbin =~ m#^/afs/#;
49
50 -x 'perl'               || die "perl isn't executable!\n";
51 -x 'taintperl'          || die "taintperl isn't executable!\n";
52 -x 'suidperl'           || die "suidperl isn't executable!\n" if $d_dosuid;
53
54 -x 't/TEST'             || warn "WARNING: You've never run 'make test'!!!",
55         "  (Installing anyway.)\n";
56
57 # First we install the version-numbered executables.
58
59 &unlink("$installbin/perl$ver");
60 &cmd("cp perl $installbin/perl$ver");
61
62 &unlink("$installbin/tperl$ver");
63 &cmd("cp taintperl $installbin/tperl$ver");
64 &chmod(0755, "$installbin/tperl$ver");          # force non-suid for security
65
66 &unlink("$installbin/sperl$ver");
67 if ($d_dosuid) {
68     &cmd("cp suidperl $installbin/sperl$ver");
69     &chmod(04711, "$installbin/sperl$ver");
70 }
71
72 exit 0 if $versiononly;
73
74 # Make links to ordinary names if installbin directory isn't current directory.
75
76 ($bdev,$bino) = stat($installbin);
77 ($ddev,$dino) = stat('.');
78
79 if ($bdev != $ddev || $bino != $dino) {
80     &unlink("$installbin/perl", "$installbin/taintperl", "$installbin/suidperl");
81     &link("$installbin/perl$ver", "$installbin/perl");
82     &link("$installbin/tperl$ver", "$installbin/taintperl");
83     &link("$installbin/sperl$ver", "$installbin/suidperl") if $d_dosuid;
84 }
85
86 ($bdev,$bino) = stat($installbin);
87 ($ddev,$dino) = stat('x2p');
88
89 if ($bdev != $ddev || $bino != $dino) {
90     &unlink("$installbin/a2p");
91     &cmd("cp x2p/a2p $installbin/a2p");
92     &chmod(0755, "$installbin/a2p");
93 }
94
95 # Make some enemies in the name of standardization.   :-)
96
97 ($udev,$uino) = stat($mainperldir);
98
99 if (-w _ && ($udev != $bdev || $uino != $bino) && !$nonono) {
100     &unlink("$mainperldir/perl");
101     eval 'link("$installbin/perl", "$mainperldir/perl")' ||
102     eval 'symlink("$installbin/perl", "$mainperldir/perl")' ||
103     &cmd("cp $installbin/perl $mainperldir");
104 }
105
106 # Install scripts.
107
108 &makedir($installscr);
109
110 for (@scripts) {
111     &cmd("cp $_ $installscr");
112     s#.*/##; &chmod(0755, "$installscr/$_");
113 }
114
115 # Install man pages.
116
117 if ($mansrc ne '') {
118     &makedir($mansrc);
119
120     ($mdev,$mino) = stat($mansrc);
121     if ($mdev != $ddev || $mino != $dino) {
122         for (@manpages) {
123             ($new = $_) =~ s/man$/$manext/;
124             $new =~ s#.*/##;
125             print STDERR "  Installing $mansrc/$new\n";
126             next if $nonono;
127             open(MI,$_) || warn "Can't open $_: $!\n";
128             open(MO,">$mansrc/$new") || warn "Can't install $mansrc/$new: $!\n";
129             print MO ".ds RP Release $release Patchlevel $patchlevel\n";
130             while (<MI>) {
131                 print MO;
132             }
133             close MI;
134             close MO;
135         }
136     }
137 }
138
139 # Install library files.
140
141 &makedir($installprivlib);
142 if (chdir "lib") {
143
144     ($pdev,$pino) = stat($installprivlib);
145     ($ldev,$lino) = stat('.');
146
147     if ($pdev != $ldev || $pino != $lino) {
148         foreach $file (<*.pl>) {
149             system "cmp", "-s", $file, "$privlib/$file";
150             if ($?) {
151                 &unlink("$installprivlib/$file");
152                 &cmd("cp $file $installprivlib");
153             }
154         }
155     }
156     chdir ".." || die "Can't cd back to source directory: $!\n";
157 }
158 else {
159     warn "Can't cd to lib to install lib files: $!\n";
160 }
161
162 &chmod(0755, "usub/mus");
163
164 print STDERR "  Installation complete\n";
165
166 exit 0;
167
168 ###############################################################################
169
170 sub unlink {
171     local(@names) = @_;
172
173     foreach $name (@names) {
174         next unless -e $name;
175         print STDERR "  unlink $name\n";
176         unlink($name) || warn "Couldn't unlink $name: $!\n" unless $nonono;
177     }
178 }
179
180 sub cmd {
181     local($cmd) = @_;
182     print STDERR "  $cmd\n";
183     unless ($nonono) {
184         system $cmd;
185         warn "Command failed!!!\n" if $?;
186     }
187 }
188
189 sub link {
190     local($from,$to) = @_;
191
192     print STDERR "  ln $from $to\n";
193     link($from,$to) || warn "Couldn't link $from to $to: $!\n" unless $nonono;
194 }
195
196 sub chmod {
197     local($mode,$name) = @_;
198
199     printf STDERR "  chmod %o %s\n", $mode, $name;
200     chmod($mode,$name) || warn "Couldn't chmod $mode $name: $!\n"
201         unless $nonono;
202 }
203
204 sub makedir {
205     local($dir) = @_;
206     unless (-d $dir) {
207         local($shortdir) = $dir;
208
209         $shortdir =~ s#(.*)/.*#$1#;
210         &makedir($shortdir);
211
212         print STDERR "  mkdir $dir\n";
213         mkdir($dir, 0777) || warn "Couldn't create $dir: $!\n" unless $nonono;
214     }
215 }