This is patch.2b1f to perl5.002beta1.
[p5sagit/p5-mst-13.2.git] / installman
CommitLineData
16d20bd9 1#!./perl
2BEGIN { @INC = ('lib') }
3use Config;
4use Getopt::Long;
5use File::Find;
6require Cwd;
7
8umask 022;
9
10$ver = $];
11$release = substr($ver,0,3); # Not used presently.
12$patchlevel = substr($ver,3,2);
13die "Patchlevel of perl ($patchlevel)",
14 "and patchlevel of config.sh ($Config{'PATCHLEVEL'}) don't match\n"
15 if $patchlevel != $Config{'PATCHLEVEL'};
16
17$usage =
18"Usage: installman --man1dir=/usr/wherever --man1ext=1
19 --man3dir=/usr/wherever --man3ext=3
20 --notify --help
21 Defaults are:
22 man1dir = $Config{'installman1dir'};
23 man1ext = $Config{'man1ext'};
24 man3dir = $Config{'installman3dir'};
25 man3ext = $Config{'man3ext'};
26 --notify (or -n) just lists commands that would be executed.\n";
27
28GetOptions( qw( man1dir=s man1ext=s man3dir=s man3ext=s notify help))
29 || die $usage;
4633a7c4 30die $usage if $opt_help;
16d20bd9 31
32# These are written funny to avoid -w typo warnings.
33$man1dir = defined($opt_man1dir) ? $opt_man1dir : $Config{'installman1dir'};
34$man1ext = defined($opt_man1ext) ? $opt_man1ext : $Config{'man1ext'};
35$man3dir = defined($opt_man3dir) ? $opt_man3dir : $Config{'installman3dir'};
36$man3ext = defined($opt_man3ext) ? $opt_man3ext : $Config{'man3ext'};
37
38$notify = defined($opt_notify) ? $opt_notify : 0;
39
40#Sanity checks
41
42-x "./perl" || warn "./perl not found! Have you run make?\n";
43-d $Config{'installprivlib'}
44 || warn "Perl library directory $Config{'installprivlib'} not found.
45 Have you run make install?. (Installing anyway.)\n";
46-x 't/TEST' || warn "WARNING: You've never run 'make test'!!!",
47 " (Installing anyway.)\n";
48
49# Install the main pod pages.
50runpod2man('pod', $man1dir, $man1ext);
51
52# Install the pods for library modules.
53runpod2man('lib', $man3dir, $man3ext);
54
55sub runpod2man {
56 my($poddir, $mandir, $manext) = @_;
57 my($builddir) = Cwd::getcwd();
58
59 if ($mandir eq ' ' or $mandir eq '') {
60 print STDERR "Skipping installation of $poddir man pages.\n";
61 return;
62 }
63
64 chdir $poddir || die "Unable to cd to $poddir directory!\n$!\n";
65
66 # We insist on using the current version of pod2man in case there
67 # are enhancements or changes from previous installed versions.
e50aee73 68 # The error message doesn't include the '..' because the user
69 # won't be aware that we've chdir to $poddir.
70 -x "../pod/pod2man" || die "Executable pod/pod2man not found.\n";
71
72 # We want to be sure to use the current perl. We can't rely on
73 # the installed perl because it might not be actually installed
74 # yet. (The user may have set the $install* Configure variables
75 # to point to some temporary home, from which the executable gets
76 # installed by occult means.)
77 $pod2man = "../perl -I ../lib ../pod/pod2man";
16d20bd9 78
79 &makedir($mandir);
80 # Make a list of all the .pm and .pod files in the directory. We will
81 # always run pod2man from the lib directory and feed it the full pathname
82 # of the pod. This might be useful for pod2man someday.
83 @modpods = ();
84 find(\&lsmodpods, '.');
85 foreach $mod (@modpods) {
86 $manpage = $mod;
87 # Convert name from File/Basename.pm to File::Basename.3 format,
88 # if necessary.
89 $manpage =~ s#\.p(m|od)$##;
90 $manpage =~ s#/#::#g;
91 $manpage = "${mandir}/${manpage}.${manext}";
92 # Print $release $patchlevel stuff? or should pod2man do that?
93 &cmd("$pod2man $mod > $manpage");
94 }
95 chdir "$builddir" || die "Unable to cd back to $builddir directory!\n$!\n";
96}
97
98sub lsmodpods {
99 my $dir = $File::Find::dir;
100 my $name = $File::Find::name;
101 if (-f $_) {
102 $name =~ s#^\./##;
103 push(@modpods, $name) if ($name =~ /\.p(m|od)$/);
104 }
105}
106
107print STDERR " Installation complete\n";
108
109exit 0;
110
111
112###############################################################################
113# Utility subroutines from installperl
114
115sub cmd {
116 local($cmd) = @_;
117 print STDERR " $cmd\n";
118 unless ($notify) {
119 system $cmd;
120 warn "Command failed!!!\n" if $?;
121 }
122}
123
124sub link {
125 local($from,$to) = @_;
126
127 print STDERR " ln $from $to\n";
128 link($from,$to) || warn "Couldn't link $from to $to: $!\n" unless $notify;
129}
130
131sub chmod {
132 local($mode,$name) = @_;
133
134 printf STDERR " chmod %o %s\n", $mode, $name;
135 chmod($mode,$name) || warn sprintf("Couldn't chmod %o %s: $!\n",$mode,$name)
136 unless $notify;
137}
138
139sub makedir {
140 local($dir) = @_;
141 unless (-d $dir) {
142 local($shortdir) = $dir;
143
144 $shortdir =~ s#(.*)/.*#$1#;
145 &makedir($shortdir);
146
147 print STDERR " mkdir $dir\n";
148 mkdir($dir, 0777) || warn "Couldn't create $dir: $!\n" unless $notify;
149 }
150}
151
152sub samepath {
153 local($p1, $p2) = @_;
154 local($dev1, $ino1, $dev2, $ino2);
155
156 if ($p1 ne $p2) {
157 ($dev1, $ino1) = stat($p1);
158 ($dev2, $ino2) = stat($p2);
159 ($dev1 == $dev2 && $ino1 == $ino2);
160 }
161 else {
162 1;
163 }
164}