222f3d47615d09c39656c8dd05b8a78e2662a32c
[p5sagit/p5-mst-13.2.git] / installperl
1 #!./perl
2
3 BEGIN {
4     require 5.004;
5     chdir '..' if !-d 'lib' and -d '..\lib';
6     @INC = 'lib';
7     $ENV{PERL5LIB} = 'lib';
8 }
9
10 use File::Find;
11 use File::Compare;
12 use File::Copy ();
13 use File::Path ();
14 use Config;
15 use subs qw(unlink link chmod);
16
17 # override the ones in the rest of the script
18 sub mkpath {
19     File::Path::mkpath(@_) unless $nonono;
20 }
21
22 $mainperldir = "/usr/bin";
23 $exe_ext = $Config{exe_ext};
24
25 while (@ARGV) {
26     $nonono = 1 if $ARGV[0] eq '-n';
27     $versiononly = 1 if $ARGV[0] eq '-v';
28     shift;
29 }
30
31 umask 022;
32
33 @scripts = qw(  utils/c2ph utils/h2ph utils/h2xs
34                 utils/perlbug utils/perldoc utils/pl2pm utils/splain
35                 x2p/s2p x2p/find2perl
36                 pod/pod2man pod/pod2html pod/pod2latex pod/pod2text);
37
38 @pods = (<pod/*.pod>);
39
40 %archpms = (Config => 1, FileHandle => 1, overload => 1);
41
42 if ($^O eq 'dos') {
43     push(@scripts,'djgpp/fixpmain');
44     $archpms{config} = $archpms{filehand} = 1;
45 }
46
47 find(sub {
48         if ("$File::Find::dir/$_" =~ m{^ext/[^/]+/(.*)\.pm$}) {
49             (my $pm = $1) =~ s{^lib/}{};
50             $archpms{$pm} = 1;
51         }
52     }, 'ext');
53
54 $ver = $];
55 $release = substr($ver,0,3);   # Not used presently.
56 $patchlevel = substr($ver,3,2);
57 die "Patchlevel of perl ($patchlevel)",
58     "and patchlevel of config.sh ($Config{'PATCHLEVEL'}) don't match\n"
59         if $patchlevel != $Config{'PATCHLEVEL'};
60
61 # Fetch some frequently-used items from %Config
62 $installbin = $Config{installbin};
63 $installscript = $Config{installscript};
64 $installprivlib = $Config{installprivlib};
65 $installarchlib = $Config{installarchlib};
66 $installsitelib = $Config{installsitelib};
67 $installsitearch = $Config{installsitearch};
68 $installman1dir = $Config{installman1dir};
69 $man1ext = $Config{man1ext};
70 $libperl = $Config{libperl};
71 # Shared library and dynamic loading suffixes.
72 $so = $Config{so};
73 $dlext = $Config{dlext};
74
75 $d_dosuid = $Config{d_dosuid};
76 $binexp = $Config{binexp};
77
78 # Do some quick sanity checks.
79
80 if ($d_dosuid && $>) { die "You must run as root to install suidperl\n"; }
81
82    $installbin          || die "No installbin directory in config.sh\n";
83 -d $installbin          || mkpath($installbin, 1, 0777);
84 -d $installbin          || $nonono || die "$installbin is not a directory\n";
85 -w $installbin          || $nonono || die "$installbin is not writable by you\n"
86         unless $installbin =~ m#^/afs/# || $nonono;
87
88 -x 'perl' . $exe_ext    || die "perl isn't executable!\n";
89 -x 'suidperl' . $exe_ext|| die "suidperl isn't executable!\n" if $d_dosuid;
90
91 -x 't/TEST'             || $^O eq 'MSWin32'
92                         || warn "WARNING: You've never run 'make test'!!!",
93                                 "  (Installing anyway.)\n";
94
95 if ($^O eq 'MSWin32') {
96
97 $perldll = 'perl.' . $dlext;
98 $perldll = 'perlcore.' . $dlext if $Config{'ccflags'} =~ /PERL_OBJECT/i;
99
100 -f $perldll || die "No perl DLL built\n";
101
102 # Install the DLL
103
104 safe_unlink("$installbin/$perldll");
105 copy("$perldll", "$installbin/$perldll");
106 chmod(0755, "$installbin/$perldll");
107 }
108
109 # First we install the version-numbered executables.
110
111 if ($^O ne 'dos') {
112     safe_unlink("$installbin/perl$ver$exe_ext");
113     copy("perl$exe_ext", "$installbin/perl$ver$exe_ext");
114     chmod(0755, "$installbin/perl$ver$exe_ext");
115 } else {
116     safe_unlink("$installbin/perl.exe");
117     copy("perl.exe", "$installbin/perl.exe");
118 }
119
120 safe_unlink("$installbin/sperl$ver$exe_ext");
121 if ($d_dosuid) {
122     copy("suidperl$exe_ext", "$installbin/sperl$ver$exe_ext");
123     chmod(04711, "$installbin/sperl$ver$exe_ext");
124 }
125
126 # Install library files.
127
128 $do_installarchlib = $do_installprivlib = 0;
129     
130 mkpath($installprivlib, 1, 0777);
131 mkpath($installarchlib, 1, 0777);
132 mkpath($installsitelib, 1, 0777) if ($installsitelib);
133 mkpath($installsitearch, 1, 0777) if ($installsitearch);
134
135 if (chdir "lib") {
136     $do_installarchlib = ! samepath($installarchlib, '.');
137     $do_installprivlib = ! samepath($installprivlib, '.');
138     $do_installprivlib = 0 if $versiononly && !($installprivlib =~ m/\Q$]/);
139
140     if ($do_installarchlib || $do_installprivlib) {
141         find(\&installlib, '.');
142     }
143     chdir ".." || die "Can't cd back to source directory: $!\n";
144 }
145 else {
146     warn "Can't cd to lib to install lib files: $!\n";
147 }
148
149 # Install header files and libraries.
150 mkpath("$installarchlib/CORE", 1, 0777);
151 @corefiles = <*.h libperl*.*>;
152 # AIX needs perl.exp installed as well.
153 push(@corefiles,'perl.exp') if $^O eq 'aix';
154 # If they have built sperl.o...
155 push(@corefiles,'sperl.o') if -f 'sperl.o';
156 foreach $file (@corefiles) {
157     # HP-UX (at least) needs to maintain execute permissions
158     # on dynamically-loadable libraries. So we do it for all.
159     copy_if_diff($file,"$installarchlib/CORE/$file")
160         and chmod($file =~ /\.(so|\Q$dlext\E)$/ ? 0555 : 0444,
161                    "$installarchlib/CORE/$file");
162 }
163
164 # Install main perl executables
165 # Make links to ordinary names if installbin directory isn't current directory.
166
167 if (! $versiononly && ! samepath($installbin, '.') && ($^O ne 'dos')) {
168     safe_unlink("$installbin/perl$exe_ext", "$installbin/suidperl$exe_ext");
169     link("$installbin/perl$ver$exe_ext", "$installbin/perl$exe_ext");
170     link("$installbin/sperl$ver$exe_ext", "$installbin/suidperl$exe_ext") 
171       if $d_dosuid;
172 }
173
174 # Offer to install perl in a "standard" location
175
176 $mainperl_is_instperl = 0;
177
178 if (!$versiononly && !$nonono && $^O ne 'MSWin32' && -t STDIN && -t STDERR
179         && -w $mainperldir && ! samepath($mainperldir, $installbin)) {
180     local($usrbinperl)  = "$mainperldir/perl$exe_ext";
181     local($instperl)    = "$installbin/perl$exe_ext";
182     local($expinstperl) = "$binexp/perl$exe_ext";
183
184     # First make sure $usrbinperl is not already the same as the perl we
185     # just installed.
186     if (-x $usrbinperl) {
187         # Try to be clever about mainperl being a symbolic link
188         # to binexp/perl if binexp and installbin are different.
189         $mainperl_is_instperl =
190             samepath($usrbinperl, $instperl) ||
191             samepath($usrbinperl, $expinstperl) ||
192              (($binexp ne $installbin) &&
193               (-l $usrbinperl) &&
194               ((readlink $usrbinperl) eq $expinstperl));
195     }
196     if ((! $mainperl_is_instperl) &&
197         (yn("Many scripts expect perl to be installed as $usrbinperl.\n" . 
198              "Do you wish to have $usrbinperl be the same as\n" .
199              "$expinstperl? [y] ")))
200     {   
201         unlink($usrbinperl);
202         eval { CORE::link $instperl, $usrbinperl } ||
203             eval { symlink $expinstperl, $usrbinperl } ||
204                 copy($instperl, $usrbinperl);
205         $mainperl_is_instperl = 1;
206     }
207 }
208
209 # Make links to ordinary names if installbin directory isn't current directory.
210
211 if (!$versiononly && ! samepath($installbin, 'x2p')) {
212     safe_unlink("$installbin/a2p$exe_ext");
213     copy("x2p/a2p$exe_ext", "$installbin/a2p$exe_ext");
214     chmod(0755, "$installbin/a2p$exe_ext");
215 }
216
217 # cppstdin is just a script, but it is architecture-dependent, so
218 # it can't safely be shared.  Place it in $installbin.
219 # Note that Configure doesn't build cppstin if it isn't needed, so
220 # we skip this if cppstdin doesn't exist.
221 if (! $versiononly && (-f 'cppstdin') && (! samepath($installbin, '.'))) {
222     safe_unlink("$installbin/cppstdin");
223     copy("cppstdin", "$installbin/cppstdin");
224     chmod(0755, "$installbin/cppstdin");
225 }
226
227 # Install scripts.
228
229 mkpath($installscript, 1, 0777);
230
231 if (! $versiononly) {
232     for (@scripts) {
233         (my $base = $_) =~ s#.*/##;
234         copy($_, "$installscript/$base");
235         chmod(0755, "$installscript/$base");
236     }
237 }
238
239 # pstruct should be a link to c2ph
240
241 if (! $versiononly) {
242     safe_unlink("$installscript/pstruct");
243     if ($^O eq 'dos') {
244         copy("$installscript/c2ph","$installscript/pstruct"); 
245     } else {
246         link("$installscript/c2ph","$installscript/pstruct");
247     }
248 }
249
250 # Install pod pages.  Where? I guess in $installprivlib/pod.
251
252 if (! $versiononly || !($installprivlib =~ m/\Q$]/)) {
253     mkpath("${installprivlib}/pod", 1, 0777);
254
255     # If Perl 5.003's perldiag.pod is there, rename it.
256     if (open POD, "${installprivlib}/pod/perldiag.pod") {
257         read POD, $_, 4000;
258         close POD;
259         # Some of Perl 5.003's diagnostic messages ended with periods.
260         if (/^=.*\.$/m) {
261             my ($from, $to) = ("${installprivlib}/pod/perldiag.pod",
262                                "${installprivlib}/pod/perldiag-5.003.pod");
263             print STDERR "  rename $from $to";
264             rename($from, $to)
265                 or warn "Couldn't rename $from to $to: $!\n"
266                 unless $nonono;
267         }
268     }
269
270     foreach $file (@pods) {
271         # $file is a name like  pod/perl.pod
272         copy_if_diff($file, "${installprivlib}/${file}");
273     }
274
275     # Link perldiag.pod into archlib
276     my ($from, $to) = ("${installprivlib}/pod/perldiag.pod",
277                        "${installarchlib}/pod/perldiag.pod");
278     if (compare($from, $to) || $nonono) {
279         mkpath("${installarchlib}/pod", 1, 0777);
280         unlink($to);
281         link($from, $to) if ($^O ne 'dos');
282     }
283 }
284
285 # Check to make sure there aren't other perls around in installer's
286 # path.  This is probably UNIX-specific.  Check all absolute directories
287 # in the path except for where public executables are supposed to live.
288 # Also skip $mainperl if the user opted to have it be a link to the
289 # installed perl.
290
291 if (!$versiononly) {
292
293     $dirsep = ($^O eq 'os2' || $^O eq 'MSWin32') ? ';' : ':' ;
294     ($path = $ENV{"PATH"}) =~ s:\\:/:g ;
295     @path = split(/$dirsep/, $path);
296     @otherperls = ();
297     for (@path) {
298         next unless m,^/,;
299         # Use &samepath here because some systems have other dirs linked
300         # to $mainperldir (like SunOS)
301         next if samepath($_, $binexp);
302         next if ($mainperl_is_instperl && samepath($_, $mainperldir));
303         push(@otherperls, "$_/perl$exe_ext")
304             if (-x "$_/perl$exe_ext" && ! -d "$_/perl$exe_ext");
305     }
306     if (@otherperls) {
307         print STDERR "\nWarning: perl appears in your path in the following " .
308             "locations beyond where\nwe just installed it:\n";
309         for (@otherperls) {
310             print STDERR "    ", $_, "\n";
311         }
312         print STDERR "\n";
313     }
314
315 }
316
317 print STDERR "  Installation complete\n";
318
319 exit 0;
320
321 ###############################################################################
322
323 sub yn {
324     local($prompt) = @_;
325     local($answer);
326     local($default) = $prompt =~ m/\[([yn])\]\s*$/i;
327     print STDERR $prompt;
328     chop($answer = <STDIN>);
329     $answer = $default if $answer =~ m/^\s*$/;
330     ($answer =~ m/^[yY]/);
331 }
332
333 sub unlink {
334     local(@names) = @_;
335     my($cnt) = 0;
336
337     foreach $name (@names) {
338         next unless -e $name;
339         chmod 0777, $name if ($^O eq 'os2' || $^O eq 'MSWin32');
340         print STDERR "  unlink $name\n";
341         ( CORE::unlink($name) and ++$cnt 
342           or warn "Couldn't unlink $name: $!\n" ) unless $nonono;
343     }
344     return $cnt;
345 }
346
347 sub safe_unlink {
348     return if $nonono;
349     local @names = @_;
350     foreach $name (@names) {
351         next unless -e $name;
352         chmod 0777, $name if ($^O eq 'os2' || $^O eq 'MSWin32');
353         print STDERR "  unlink $name\n";
354         next if CORE::unlink($name);
355         warn "Couldn't unlink $name: $!\n";
356         if ($! =~ /busy/i) {
357             print STDERR "  mv $name $name.old\n";
358             safe_rename($name, "$name.old")
359                 or warn "Couldn't rename $name: $!\n";
360         }
361     }
362 }
363
364 sub safe_rename {
365     local($from,$to) = @_;
366     if (-f $to and not unlink($to)) {
367         my($i);
368         for ($i = 1; $i < 50; $i++) {
369             last if rename($to, "$to.$i");
370         }
371         warn("Cannot rename to `$to.$i': $!"), return 0 
372            if $i >= 50; # Give up!
373     }
374     link($from,$to) || return 0;
375     unlink($from);
376 }
377
378 sub link {
379     my($from,$to) = @_;
380     my($success) = 0;
381
382     print STDERR "  ln $from $to\n";
383     eval {
384         CORE::link($from, $to)
385             ? $success++
386             : ($from =~ m#^/afs/# || $to =~ m#^/afs/#)
387               ? die "AFS"  # okay inside eval {}
388               : warn "Couldn't link $from to $to: $!\n"
389           unless $nonono;
390     };
391     if ($@) {
392         File::Copy::copy($from, $to)
393             ? $success++
394             : warn "Couldn't copy $from to $to: $!\n"
395           unless $nonono;
396     }
397     $success;
398 }
399
400 sub chmod {
401     local($mode,$name) = @_;
402
403     return if ($^O eq 'dos');
404     printf STDERR "  chmod %o %s\n", $mode, $name;
405     CORE::chmod($mode,$name)
406         || warn sprintf("Couldn't chmod %o %s: $!\n", $mode, $name)
407       unless $nonono;
408 }
409
410 sub copy {
411     my($from,$to) = @_;
412
413     print STDERR "  cp $from $to\n";
414     File::Copy::copy($from, $to)
415         || warn "Couldn't copy $from to $to: $!\n"
416       unless $nonono;
417 }
418
419 sub samepath {
420     local($p1, $p2) = @_;
421
422     return (lc($p1) eq lc($p2)) if ($^O eq 'MSWin32');
423
424     if ($p1 ne $p2) {
425         local($dev1, $ino1, $dev2, $ino2);
426         ($dev1, $ino1) = stat($p1);
427         ($dev2, $ino2) = stat($p2);
428         ($dev1 == $dev2 && $ino1 == $ino2);
429     }
430     else {
431         1;
432     }
433 }
434
435 sub installlib {
436     my $dir = $File::Find::dir;
437     $dir =~ s#^\.(?![^/])/?##;
438     local($depth) = $dir ? "lib/$dir" : "lib";
439
440     my $name = $_;
441
442     if ($name eq 'CVS' && -d $name) {
443         $File::Find::prune = 1;
444         return;
445     }
446     
447     # ignore patch backups and the .exists files.
448     return if $name =~ m{\.orig$|~$|^\.exists};
449
450     $name = "$dir/$name" if $dir ne '';
451
452     my $installlib = $installprivlib;
453     if ($dir =~ /^auto/ ||
454           ($name =~ /^(.*)\.(?:pm|pod)$/ && $archpms{$1}) ||
455           ($name =~ /^(.*)\.(?:h|lib)$/i && $^O eq 'MSWin32')
456        ) {
457         $installlib = $installarchlib;
458         return unless $do_installarchlib;
459     } else {
460         return unless $do_installprivlib;
461     }
462
463     if (-f $_) {
464         if (/\.(?:al|ix)$/ && !($dir =~ m[^auto/(.*)$] && $archpms{$1})) {
465             $installlib = $installprivlib;
466             #We're installing *.al and *.ix files into $installprivlib,
467             #but we have to delete old *.al and *.ix files from the 5.000
468             #distribution:
469             #This might not work because $archname might have changed.
470             unlink("$installarchlib/$name");
471         }
472         if (compare($_, "$installlib/$name") || $nonono) {
473             unlink("$installlib/$name");
474             mkpath("$installlib/$dir", 1, 0777);
475             # HP-UX (at least) needs to maintain execute permissions
476             # on dynamically-loaded libraries.
477             copy_if_diff($_, "$installlib/$name")
478                 and chmod($name =~ /\.(so|$dlext)$/o ? 0555 : 0444,
479                            "$installlib/$name");
480         }
481     } elsif (-d $_) {
482         mkpath("$installlib/$name", 1, 0777);
483     }
484 }
485
486 # Copy $from to $to, only if $from is different than $to.
487 # Also preserve modification times for .a libraries.
488 # On some systems, if you do
489 #   ranlib libperl.a
490 #   cp libperl.a /usr/local/lib/perl5/archlib/CORE/libperl.a
491 # and then try to link against the installed libperl.a, you might
492 # get an error message to the effect that the symbol table is older
493 # than the library.
494 # Return true if copying occurred.
495
496 sub copy_if_diff {
497     my($from,$to)=@_;
498     -f $from || die "$0: $from not found";
499     if (compare($from, $to) || $nonono) {
500         safe_unlink($to);   # In case we don't have write permissions.
501         if ($nonono) {
502             $from = $depth . "/" . $from if $depth;
503         }
504         copy($from, $to);
505         # Restore timestamps if it's a .a library or for OS/2.
506         if (!$nonono && ($^O eq 'os2' || $to =~ /\.a$/)) {
507             my ($atime, $mtime) = (stat $from)[8,9];
508             utime $atime, $mtime, $to;
509         }
510         1;
511     }
512 }