More h2ph tweaks: recognition of C types
[p5sagit/p5-mst-13.2.git] / pod / pod2usage.PL
CommitLineData
360aca43 1#!/usr/local/bin/perl
2
3use Config;
4use File::Basename qw(&basename &dirname);
933fea7f 5use Cwd;
360aca43 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
3b5ca523 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.
933fea7f 16$origdir = cwd;
3b5ca523 17chdir(dirname($0));
7d8277e2 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"
360aca43 21
22open OUT,">$file" or die "Can't create $file: $!";
23
24print "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
29print 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
37print OUT <<'!NO!SUBS!';
38
39#############################################################################
40# pod2usage -- command to print usage messages from embedded pod docs
41#
92e3d63a 42# Copyright (c) 1996-2000 by Bradford Appleton. All rights reserved.
360aca43 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
48use strict;
49use diagnostics;
50
51=head1 NAME
52
53pod2usage - 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>]
67I<file>
68
69=back
70
71=head1 OPTIONS AND ARGUMENTS
72
73=over 8
74
75=item B<-help>
76
77Print a brief help message and exit.
78
79=item B<-man>
80
81Print this command's manual page and exit.
82
83=item B<-exit> I<exitval>
84
85The exit status value to return.
86
87=item B<-output> I<outfile>
88
89The output file to print to. If the special names "-" or ">&1" or ">&STDOUT"
90are used then standard output is used. If ">&2" or ">&STDERR" is used then
91standard error is used.
92
93=item B<-verbose> I<level>
94
95The 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
103Specifies one or more directories to search for the input file if it
104was not supplied with an absolute path. Each directory path in the given
105list should be separated by a ':' on Unix (';' on MSWin32 and DOS).
106
107=item I<file>
108
109The pathname of a file containing pod documentation to be output in
110usage mesage format (defaults to standard input).
111
112=back
113
114=head1 DESCRIPTION
115
116B<pod2usage> will read the given input file looking for pod
117documentation and will print the corresponding usage message.
118If no input file is specifed than standard input is read.
119
120B<pod2usage> invokes the B<pod2usage()> function in the B<Pod::Usage>
121module. Please see L<Pod::Usage/pod2usage()>.
122
123=head1 SEE ALSO
124
125L<Pod::Usage>, L<pod2text(1)>
126
127=head1 AUTHOR
128
aaa799f9 129Please report bugs using L<http://rt.cpan.org>.
130
360aca43 131Brad Appleton E<lt>bradapp@enteract.comE<gt>
132
133Based on code for B<pod2text(1)> written by
134Tom Christiansen E<lt>tchrist@mox.perl.comE<gt>
135
136=cut
137
138use Pod::Usage;
139use Getopt::Long;
140
141## Define options
142my %options = ();
143my @opt_specs = (
144 "help",
145 "man",
146 "exit=i",
147 "output=s",
148 "pathlist=s",
149 "verbose=i",
150);
151
152## Parse options
153GetOptions(\%options, @opt_specs) || pod2usage(2);
154pod2usage(1) if ($options{help});
155pod2usage(VERBOSE => 2) if ($options{man});
156
157## Dont default to STDIN if connected to a terminal
158pod2usage(2) if ((@ARGV == 0) && (-t STDIN));
159
160@ARGV = ("-") unless (@ARGV > 0);
161if (@ARGV > 1) {
162 print STDERR "pod2usage: Too many filenames given\n\n";
163 pod2usage(2);
164}
165
166my %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
173pod2usage(\%usage);
174
175
176!NO!SUBS!
177
178close OUT or die "Can't close $file: $!";
179chmod 0755, $file or die "Can't reset permissions for $file: $!\n";
180exec("$Config{'eunicefix'} $file") if $Config{'eunicefix'} ne ':';
933fea7f 181chdir $origdir;