xsubpp 1.924
[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 die $usage if $opt_help;
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.
50 runpod2man('pod', $man1dir, $man1ext);
51
52 # Install the pods for library modules.
53 runpod2man('lib', $man3dir, $man3ext);
54
55 sub 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.
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";
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
98 sub 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
107 print STDERR "  Installation complete\n";
108
109 exit 0;
110     
111
112 ###############################################################################
113 # Utility subroutines from installperl
114
115 sub cmd {
116     local($cmd) = @_;
117     print STDERR "  $cmd\n";
118     unless ($notify) {
119         system $cmd;
120         warn "Command failed!!!\n" if $?;
121     }
122 }
123
124 sub 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
131 sub 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
139 sub 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
152 sub 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 }