summaryrefslogtreecommitdiff
path: root/installman
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-05-19 12:26:51 +0000
committerNicholas Clark <nick@ccl4.org>2008-05-19 12:26:51 +0000
commit9e6fc21fcd859351f86785f40b58d1227720bc0b (patch)
tree5d54ec1cb9935f8dfef0ca886495bafca17eff64 /installman
parent2227e2d5ffcdf072881094a254a6a548f18569a0 (diff)
downloadperl-9e6fc21fcd859351f86785f40b58d1227720bc0b.tar.gz
Merge common code from installperl and installman into install_lib.pl
p4raw-id: //depot/perl@33862
Diffstat (limited to 'installman')
-rwxr-xr-xinstallman115
1 files changed, 7 insertions, 108 deletions
diff --git a/installman b/installman
index 9778029304..9c3f873969 100755
--- a/installman
+++ b/installman
@@ -1,55 +1,20 @@
#!./perl -w
-BEGIN { @INC = qw(lib) }
-use strict;
-
BEGIN {
- use Config;
- if ($Config{userelocatableinc}) {
- # This might be a considered a hack. Need to get information about the
- # configuration from Config.pm *before* Config.pm expands any .../
- # prefixes.
- #
- # So we set $^X to pretend that we're the already installed perl, so
- # Config.pm doesits ... expansion off that location.
-
- my $location = $Config{initialinstalllocation};
- die <<'OS' unless defined $location;
-$Config{initialinstalllocation} is not defined - can't install a relocatable
-perl without this.
-OS
- $^X = "$location/perl";
- # And then remove all trace of ever having loaded Config.pm, so that
- # it will reload with the revised $^X
- undef %Config::;
- delete $INC{"Config.pm"};
- delete $INC{"Config_heavy.pl"};
- # You never saw us. We weren't here.
- }
+ @INC = qw(lib);
+
+ # This needs to be at BEGIN time, before any use of Config
+ require './install_lib.pl';
}
+use strict;
-use Config;
use Getopt::Long;
use File::Find;
use File::Copy;
use File::Path qw(mkpath);
use ExtUtils::Packlist;
use Pod::Man;
-use subs qw(unlink chmod rename link);
-use vars qw($packlist);
-use vars qw($Is_VMS $Is_W32 $Is_OS2 $Is_Cygwin $Is_Darwin $Is_NetWare);
-
-BEGIN {
- $Is_VMS = $^O eq 'VMS';
- $Is_W32 = $^O eq 'MSWin32';
- $Is_OS2 = $^O eq 'os2';
- $Is_Cygwin = $^O eq 'cygwin';
- $Is_Darwin = $^O eq 'darwin';
- if ($Is_VMS) { eval 'use VMS::Filespec;' }
-}
-
-if ($Config{d_umask}) {
- umask(022); # umasks like 077 aren't that useful for installations
-}
+use vars qw($Is_VMS $Is_W32 $Is_OS2 $Is_Cygwin $Is_Darwin $Is_NetWare
+ %opts $packlist);
$ENV{SHELL} = 'sh' if $^O eq 'os2';
@@ -74,7 +39,6 @@ my $usage =
--verbose (or -V) report all progress.
--silent (or -S) be silent. Only report errors.\n";
-my %opts;
GetOptions( \%opts,
qw( man1dir=s man1ext=s man3dir=s man3ext=s batchlimit=i
destdir:s notify n help silent S verbose V))
@@ -244,47 +208,6 @@ print " Installation complete\n" if $opts{verbose};
exit 0;
-###############################################################################
-# Utility subroutines from installperl
-
-sub unlink {
- my(@names) = @_;
- my $cnt = 0;
-
- return scalar(@names) if $Is_VMS;
-
- foreach my $name (@names) {
- next unless -e $name;
- chmod 0777, $name if $^O eq 'os2';
- print " unlink $name\n" if $opts{verbose};
- ( CORE::unlink($name) and ++$cnt
- or warn "Couldn't unlink $name: $!\n" ) unless $opts{notify};
- }
- return $cnt;
-}
-
-sub link {
- my($from,$to) = @_;
- my($success) = 0;
-
- print " ln $from $to\n" if $opts{verbose};
- eval {
- CORE::link($from, $to)
- ? $success++
- : ($from =~ m#^/afs/# || $to =~ m#^/afs/#)
- ? die "AFS" # okay inside eval {}
- : die "Couldn't link $from to $to: $!\n"
- unless $opts{notify};
- };
- if ($@) {
- File::Copy::copy($from, $to)
- ? $success++
- : warn "Couldn't copy $from to $to: $!\n"
- unless $opts{notify};
- }
- $success;
-}
-
sub rename {
my($from,$to) = @_;
if (-f $to and not unlink($to)) {
@@ -298,27 +221,3 @@ sub rename {
link($from,$to) || return 0;
unlink($from);
}
-
-sub chmod {
- my($mode,$name) = @_;
-
- printf " chmod %o %s\n", $mode, $name if $opts{verbose};
- CORE::chmod($mode,$name) || warn sprintf("Couldn't chmod %o %s: $!\n",$mode,$name)
- unless $opts{notify};
-}
-
-sub samepath {
- my($p1, $p2) = @_;
- my($dev1, $ino1, $dev2, $ino2);
-
- return (lc($p1) eq lc($p2)) if ($Is_W32 || $Is_NetWare);
-
- if ($p1 ne $p2) {
- ($dev1, $ino1) = stat($p1);
- ($dev2, $ino2) = stat($p2);
- ($dev1 == $dev2 && $ino1 == $ino2);
- }
- else {
- 1;
- }
-}