Upgrade to Pod::Parser 1.28
[p5sagit/p5-mst-13.2.git] / pod / pod2usage.PL
1 #!/usr/local/bin/perl
2
3 use Config;
4 use File::Basename qw(&basename &dirname);
5 use Cwd;
6
7 # List explicitly here the variables you want Configure to
8 # generate.  Metaconfig only looks for shell variables, so you
9 # have to mention them as if they were shell variables, not
10 # %Config entries.  Thus you write
11 #  $startperl
12 # to ensure Configure will look for $Config{startperl}.
13
14 # This forces PL files to create target in same directory as PL file.
15 # This is so that make depend always knows where to find PL derivatives.
16 $origdir = cwd;
17 chdir(dirname($0));
18 ($file = basename($0)) =~ s/\.PL$//;
19 $file =~ s/\.pl$// if ($^O eq 'os2' or $^O eq 'dos');  # "case-forgiving"
20 $file =~ s/\.pl$/.com/ if ($^O eq 'VMS');              # "case-forgiving"
21
22 open OUT,">$file" or die "Can't create $file: $!";
23
24 print "Extracting $file (with variable substitutions)\n";
25
26 # In this section, perl variables will be expanded during extraction.
27 # You can use $Config{...} to use Configure variables.
28
29 print OUT <<"!GROK!THIS!";
30 $Config{'startperl'}
31     eval 'exec perl -S \$0 "\$@"'
32         if 0;
33 !GROK!THIS!
34
35 # In the following, perl variables are not expanded during extraction.
36
37 print OUT <<'!NO!SUBS!';
38
39 #############################################################################
40 # pod2usage -- command to print usage messages from embedded pod docs
41 #
42 # Copyright (c) 1996-2000 by Bradford Appleton. All rights reserved.
43 # This file is part of "PodParser". PodParser is free software;
44 # you can redistribute it and/or modify it under the same terms
45 # as Perl itself.
46 #############################################################################
47
48 use strict;
49 use diagnostics;
50
51 =head1 NAME
52
53 pod2usage - print usage messages from embedded pod docs in files
54
55 =head1 SYNOPSIS
56
57 =over 12
58
59 =item B<pod2usage>
60
61 [B<-help>]
62 [B<-man>]
63 [B<-exit>S< >I<exitval>]
64 [B<-output>S< >I<outfile>]
65 [B<-verbose> I<level>]
66 [B<-pathlist> I<dirlist>]
67 I<file>
68
69 =back
70
71 =head1 OPTIONS AND ARGUMENTS
72
73 =over 8
74
75 =item B<-help>
76
77 Print a brief help message and exit.
78
79 =item B<-man>
80
81 Print this command's manual page and exit.
82
83 =item B<-exit> I<exitval>
84
85 The exit status value to return.
86
87 =item B<-output> I<outfile>
88
89 The output file to print to. If the special names "-" or ">&1" or ">&STDOUT"
90 are used then standard output is used. If ">&2" or ">&STDERR" is used then
91 standard error is used.
92
93 =item B<-verbose> I<level>
94
95 The desired level of verbosity to use:
96
97     1 : print SYNOPSIS only
98     2 : print SYNOPSIS sections and any OPTIONS/ARGUMENTS sections
99     3 : print the entire manpage (similar to running pod2text)
100
101 =item B<-pathlist> I<dirlist>
102
103 Specifies one or more directories to search for the input file if it
104 was not supplied with an absolute path. Each directory path in the given
105 list should be separated by a ':' on Unix (';' on MSWin32 and DOS).
106
107 =item I<file>
108
109 The pathname of a file containing pod documentation to be output in
110 usage mesage format (defaults to standard input).
111
112 =back
113
114 =head1 DESCRIPTION
115
116 B<pod2usage> will read the given input file looking for pod
117 documentation and will print the corresponding usage message.
118 If no input file is specifed than standard input is read.
119
120 B<pod2usage> invokes the B<pod2usage()> function in the B<Pod::Usage>
121 module. Please see L<Pod::Usage/pod2usage()>.
122
123 =head1 SEE ALSO
124
125 L<Pod::Usage>, L<pod2text(1)>
126
127 =head1 AUTHOR
128
129 Please report bugs using L<http://rt.cpan.org>.
130
131 Brad Appleton E<lt>bradapp@enteract.comE<gt>
132
133 Based on code for B<pod2text(1)> written by
134 Tom Christiansen E<lt>tchrist@mox.perl.comE<gt>
135
136 =cut
137
138 use Pod::Usage;
139 use Getopt::Long;
140
141 ## Define options
142 my %options = ();
143 my @opt_specs = (
144     "help",
145     "man",
146     "exit=i",
147     "output=s",
148     "pathlist=s",
149     "verbose=i",
150 );
151
152 ## Parse options
153 GetOptions(\%options, @opt_specs)  ||  pod2usage(2);
154 pod2usage(1)  if ($options{help});
155 pod2usage(VERBOSE => 2)  if ($options{man});
156
157 ## Dont default to STDIN if connected to a terminal
158 pod2usage(2) if ((@ARGV == 0) && (-t STDIN));
159
160 @ARGV = ("-")  unless (@ARGV > 0);
161 if (@ARGV > 1) {
162     print STDERR "pod2usage: Too many filenames given\n\n";
163     pod2usage(2);
164 }
165
166 my %usage = ();
167 $usage{-input}    = shift(@ARGV);
168 $usage{-exitval}  = $options{"exit"}      if (defined $options{"exit"});
169 $usage{-output}   = $options{"output"}    if (defined $options{"output"});
170 $usage{-verbose}  = $options{"verbose"}   if (defined $options{"verbose"});
171 $usage{-pathlist} = $options{"pathlist"}  if (defined $options{"pathlist"});
172
173 pod2usage(\%usage);
174
175
176 !NO!SUBS!
177
178 close OUT or die "Can't close $file: $!";
179 chmod 0755, $file or die "Can't reset permissions for $file: $!\n";
180 exec("$Config{'eunicefix'} $file") if $Config{'eunicefix'} ne ':';
181 chdir $origdir;