Blob Blame History Raw
diff -ruN pmtools-1.01-orig/Makefile.lame pmtools-1.01/Makefile.lame
--- pmtools-1.01-orig/Makefile.lame	2005-09-06 02:11:31.000000000 +0100
+++ pmtools-1.01/Makefile.lame	2006-03-22 10:23:53.000000000 +0000
@@ -1,5 +1,5 @@
 
-PROGRAMS=basepods faqpods modpods pfcat plxload pmall pman pmcat \
+PROGRAMS=basepods faqpods modpods pfcat plxload pmall pmman pmcat \
 	pmdesc pmdirs pmeth pmexp pmfunc pminst pmload pmls pmpath pmvers podgrep \
 	podpath pods podtoc sitepods stdpods
 
diff -ruN pmtools-1.01-orig/Makefile.PL pmtools-1.01/Makefile.PL
--- pmtools-1.01-orig/Makefile.PL	2006-03-22 00:54:57.000000000 +0000
+++ pmtools-1.01/Makefile.PL	2006-03-22 10:23:53.000000000 +0000
@@ -4,8 +4,8 @@
 	NAME => "pmtools",
         DISTNAME => "pmtools",
 	EXE_FILES => [  basepods, faqpods, modpods, pfcat, plxload,
-			pmall, pman, pmcat, pmdesc, pmdirs, pmeth, pmexp,
-			pmfunc, pminst, pmload, pmls, pmpath, pmvers,
+			pmall, pmcat, pmdesc, pmdirs, pmeth, pmexp,
+			pmfunc, pminst, pmload, pmman, pmls, pmpath, pmvers,
 			podgrep, podpath, pods, podtoc, sitepods,
 			stdpods ],
 	PM => { 'Devel/Loaded.pm' => '$(INST_LIBDIR)/Devel/Loaded.pm' }
diff -ruN pmtools-1.01-orig/MANIFEST pmtools-1.01/MANIFEST
--- pmtools-1.01-orig/MANIFEST	2006-03-22 02:57:51.000000000 +0000
+++ pmtools-1.01/MANIFEST	2006-03-22 10:23:53.000000000 +0000
@@ -12,7 +12,7 @@
 pfcat
 plxload
 pmall
-pman
+pmman
 pmcat
 pmdesc
 pmdirs
diff -ruN pmtools-1.01-orig/pman pmtools-1.01/pman
--- pmtools-1.01-orig/pman	2005-09-06 02:11:31.000000000 +0100
+++ pmtools-1.01/pman	1970-01-01 01:00:00.000000000 +0100
@@ -1,64 +0,0 @@
-#!/usr/bin/env perl
-# pman -- show a module's man page
-# tchrist@perl.com
-
-BEGIN { $^W = 1 }
-BEGIN { die "usage: $0 module ...\n" unless @ARGV }
-
-use FindBin qw($Bin);
-
-$errors = 0;
-
-unless ($pager = $ENV{PAGER}) {
-    require Config;
-    $pager = $Config::Config{"pager"} || "more";
-} 
-
-for $module (@ARGV) { 
-    my $path =  `$Bin/pmpath $module`;
-    if ($?) {
-	$errors++;
-	next;
-    } 
-    chomp $path;
-    system "pod2text $path | $pager";
-    $errors += ($? != 1);
-}
-
-exit($errors != 0);
-
-__END__
-
-=head1 NAME
-
-pman - show a module's man page
-
-=head1 DESCRIPTION
-
-Send a module's pod through pod2text and your pager.
-
-This is mostly here for people too lazy to type
-
-    $ pod2text `pmpath CGI` | $PAGER
-
-=head1 EXAMPLES
-
-    $ pman CGI
-    $ pman Curses
-
-Or running under different versions of Perl: 
-
-    $ oldperl -S pman CGI
-    $ filsperl -S pman Threads
-
-=head1 SEE ALSO
-
-pod2text(1), perlpod(1), pod2man(1), pod2html(1).
-
-=head1 AUTHOR and COPYRIGHT
-
-Copyright (c) 1999 Tom Christiansen
-
-This is free software.  You may modify it and distribute it 
-under Perl's Artistic Licence.  Modified versions must be
-clearly indicated.
diff -ruN pmtools-1.01-orig/pmman pmtools-1.01/pmman
--- pmtools-1.01-orig/pmman	1970-01-01 01:00:00.000000000 +0100
+++ pmtools-1.01/pmman	2006-03-22 10:23:53.000000000 +0000
@@ -0,0 +1,64 @@
+#!/usr/bin/env perl
+# pmman -- show a module's man page
+# tchrist@perl.com
+
+BEGIN { $^W = 1 }
+BEGIN { die "usage: $0 module ...\n" unless @ARGV }
+
+use FindBin qw($Bin);
+
+$errors = 0;
+
+unless ($pager = $ENV{PAGER}) {
+    require Config;
+    $pager = $Config::Config{"pager"} || "more";
+} 
+
+for $module (@ARGV) { 
+    my $path =  `$Bin/pmpath $module`;
+    if ($?) {
+	$errors++;
+	next;
+    } 
+    chomp $path;
+    system "pod2text $path | $pager";
+    $errors += ($? != 1);
+}
+
+exit($errors != 0);
+
+__END__
+
+=head1 NAME
+
+pmman - show a module's man page
+
+=head1 DESCRIPTION
+
+Send a module's pod through pod2text and your pager.
+
+This is mostly here for people too lazy to type
+
+    $ pod2text `pmpath CGI` | $PAGER
+
+=head1 EXAMPLES
+
+    $ pmman CGI
+    $ pmman Curses
+
+Or running under different versions of Perl: 
+
+    $ oldperl -S pmman CGI
+    $ filsperl -S pmman Threads
+
+=head1 SEE ALSO
+
+pod2text(1), perlpod(1), pod2man(1), pod2html(1).
+
+=head1 AUTHOR and COPYRIGHT
+
+Copyright (c) 1999 Tom Christiansen
+
+This is free software.  You may modify it and distribute it 
+under Perl's Artistic Licence.  Modified versions must be
+clearly indicated.
diff -ruN pmtools-1.01-orig/README pmtools-1.01/README
--- pmtools-1.01-orig/README	2005-09-06 02:11:31.000000000 +0100
+++ pmtools-1.01/README	2006-03-22 10:23:53.000000000 +0000
@@ -383,10 +383,10 @@
 
 =========================================================
 
-pman - show the module's pod docs
+pmman - show the module's pod docs
 
-    $ pman CGI
-    $ pman Curses
+    $ pmman CGI
+    $ pmman Curses
 
 This is mostly here for people too lazy to type
     $ pod2text `pmpath CGI` | more