4 use File::Basename qw(&basename &dirname);
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
12 # to ensure Configure will look for $Config{startperl}.
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.
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"
22 open OUT,">$file" or die "Can't create $file: $!";
24 print "Extracting $file (with variable substitutions)\n";
26 # In this section, perl variables will be expanded during extraction.
27 # You can use $Config{...} to use Configure variables.
29 print OUT <<"!GROK!THIS!";
31 eval 'exec perl -S \$0 "\$@"'
35 # In the following, perl variables are not expanded during extraction.
37 print OUT <<'!NO!SUBS!';
39 #############################################################################
40 # pod2usage -- command to print usage messages from embedded pod docs
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
46 #############################################################################
53 pod2usage - print usage messages from embedded pod docs in files
63 [B<-exit>S< >I<exitval>]
64 [B<-output>S< >I<outfile>]
65 [B<-verbose> I<level>]
66 [B<-pathlist> I<dirlist>]
71 =head1 OPTIONS AND ARGUMENTS
77 Print a brief help message and exit.
81 Print this command's manual page and exit.
83 =item B<-exit> I<exitval>
85 The exit status value to return.
87 =item B<-output> I<outfile>
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.
93 =item B<-verbose> I<level>
95 The desired level of verbosity to use:
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)
101 =item B<-pathlist> I<dirlist>
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).
109 The pathname of a file containing pod documentation to be output in
110 usage mesage format (defaults to standard input).
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.
120 B<pod2usage> invokes the B<pod2usage()> function in the B<Pod::Usage>
121 module. Please see L<Pod::Usage/pod2usage()>.
125 L<Pod::Usage>, L<pod2text(1)>
129 Please report bugs using L<http://rt.cpan.org>.
131 Brad Appleton E<lt>bradapp@enteract.comE<gt>
133 Based on code for B<pod2text(1)> written by
134 Tom Christiansen E<lt>tchrist@mox.perl.comE<gt>
153 GetOptions(\%options, @opt_specs) || pod2usage(2);
154 pod2usage(1) if ($options{help});
155 pod2usage(VERBOSE => 2) if ($options{man});
157 ## Dont default to STDIN if connected to a terminal
158 pod2usage(2) if ((@ARGV == 0) && (-t STDIN));
160 @ARGV = ("-") unless (@ARGV > 0);
162 print STDERR "pod2usage: Too many filenames given\n\n";
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"});
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 ':';