perl 4.0 patch 31: patch #20, continued
[p5sagit/p5-mst-13.2.git] / installperl
CommitLineData
c623bd54 1#!./perl
2
bee1dbe2 3$mainperldir = "/usr/bin";
4
c623bd54 5while (@ARGV) {
6 $nonono = 1 if $ARGV[0] eq '-n';
7 $versiononly = 1 if $ARGV[0] eq '-v';
8 shift;
9}
10
45d8adaa 11umask 022;
12
13@scripts = ('cppstdin', 'h2ph', 'c2ph', 'pstruct', 'x2p/s2p', 'x2p/find2perl');
352d5a3a 14@manpages = ('perl.man', 'h2ph.man', 'x2p/a2p.man', 'x2p/s2p.man');
c623bd54 15
16# Read in the config file.
17
18open(CONFIG, "config.sh") || die "You haven't run Configure yet!\n";
19while (<CONFIG>) {
20 if (s/^(\w+=)/\$$1/) {
21 $accum =~ s/'undef'/undef/g;
22 eval $accum;
23 $accum = '';
24 }
25 $accum .= $_;
26}
bee1dbe2 27close CONFIG;
28
29open(PERL_C, "perl.c");
30while (<PERL_C>) {
31 last if /Revision:/;
32}
33close PERL_C;
34s/.*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);
c623bd54 40
41# Do some quick sanity checks.
42
43if ($d_dosuid && $>) { die "You must run as root to install suidperl\n"; }
44
fe14fcc3 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/#;
c623bd54 49
fe14fcc3 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;
c623bd54 53
fe14fcc3 54-x 't/TEST' || warn "WARNING: You've never run 'make test'!!!",
55 " (Installing anyway.)\n";
c623bd54 56
57# First we install the version-numbered executables.
58
fe14fcc3 59&unlink("$installbin/perl$ver");
60&cmd("cp perl $installbin/perl$ver");
c623bd54 61
fe14fcc3 62&unlink("$installbin/tperl$ver");
63&cmd("cp taintperl $installbin/tperl$ver");
64&chmod(0755, "$installbin/tperl$ver"); # force non-suid for security
c623bd54 65
fe14fcc3 66&unlink("$installbin/sperl$ver");
c623bd54 67if ($d_dosuid) {
fe14fcc3 68 &cmd("cp suidperl $installbin/sperl$ver");
69 &chmod(04711, "$installbin/sperl$ver");
c623bd54 70}
71
72exit 0 if $versiononly;
73
fe14fcc3 74# Make links to ordinary names if installbin directory isn't current directory.
c623bd54 75
fe14fcc3 76($bdev,$bino) = stat($installbin);
c623bd54 77($ddev,$dino) = stat('.');
78
79if ($bdev != $ddev || $bino != $dino) {
fe14fcc3 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;
c623bd54 84}
85
352d5a3a 86($bdev,$bino) = stat($installbin);
87($ddev,$dino) = stat('x2p');
88
89if ($bdev != $ddev || $bino != $dino) {
90 &unlink("$installbin/a2p");
91 &cmd("cp x2p/a2p $installbin/a2p");
bee1dbe2 92 &chmod(0755, "$installbin/a2p");
352d5a3a 93}
94
c623bd54 95# Make some enemies in the name of standardization. :-)
96
bee1dbe2 97($udev,$uino) = stat($mainperldir);
c623bd54 98
bee1dbe2 99if (-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");
c623bd54 104}
105
106# Install scripts.
107
352d5a3a 108&makedir($installscr);
c623bd54 109
110for (@scripts) {
352d5a3a 111 &cmd("cp $_ $installscr");
112 s#.*/##; &chmod(0755, "$installscr/$_");
c623bd54 113}
114
c623bd54 115# Install man pages.
116
fe14fcc3 117if ($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/;
352d5a3a 124 $new =~ s#.*/##;
fe14fcc3 125 print STDERR " Installing $mansrc/$new\n";
126 next if $nonono;
bee1dbe2 127 open(MI,$_) || warn "Can't open $_: $!\n";
128 open(MO,">$mansrc/$new") || warn "Can't install $mansrc/$new: $!\n";
fe14fcc3 129 print MO ".ds RP Release $release Patchlevel $patchlevel\n";
130 while (<MI>) {
131 print MO;
132 }
133 close MI;
134 close MO;
135 }
c623bd54 136 }
137}
138
45d8adaa 139# Install library files.
140
141&makedir($installprivlib);
142if (chdir "lib") {
143
144 ($pdev,$pino) = stat($installprivlib);
145 ($ldev,$lino) = stat('.');
146
147 if ($pdev != $ldev || $pino != $lino) {
148 foreach $file (<*.pl>) {
988174c1 149 system "cmp", "-s", $file, "$privlib/$file";
150 if ($?) {
151 &unlink("$installprivlib/$file");
152 &cmd("cp $file $installprivlib");
153 }
45d8adaa 154 }
155 }
156 chdir ".." || die "Can't cd back to source directory: $!\n";
157}
158else {
159 warn "Can't cd to lib to install lib files: $!\n";
160}
161
162&chmod(0755, "usub/mus");
163
c623bd54 164print STDERR " Installation complete\n";
165
166exit 0;
167
168###############################################################################
169
170sub 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
180sub cmd {
181 local($cmd) = @_;
182 print STDERR " $cmd\n";
183 unless ($nonono) {
184 system $cmd;
185 warn "Command failed!!!\n" if $?;
186 }
187}
188
189sub 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
196sub 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
204sub 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}