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