summaryrefslogtreecommitdiff
path: root/cpan/Pod-Perldoc
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2014-01-07 13:55:36 +0000
committerDavid Mitchell <davem@iabyn.com>2014-01-07 14:55:45 +0000
commitfa884b76985b07640a9b8df4736d532e0273f13f (patch)
treeccc3292ce00f8ae892185606f3cae6624fdcf857 /cpan/Pod-Perldoc
parent6efa4e81fc0ed6e9f7c2d9da5f6b394809f24bb3 (diff)
downloadperl-fa884b76985b07640a9b8df4736d532e0273f13f.tar.gz
Pod-Perldoc: add Makefile.PL from distro
Since 3.21, the Makefile includes special code for copying perldoc.pod to the right location, so use that rather than an auto-generated one. See [perl #120280] 5.19.5 intermittent failure t/search50.t With this change, cpan/Pod-Perldoc/perldoc.pod is now copied to lib/perldoc.pod rather than lib/Pod/perldoc.pod (Its install location of lib/$version/pod/perldoc.pod is unaffected)
Diffstat (limited to 'cpan/Pod-Perldoc')
-rw-r--r--cpan/Pod-Perldoc/Makefile.PL76
1 files changed, 76 insertions, 0 deletions
diff --git a/cpan/Pod-Perldoc/Makefile.PL b/cpan/Pod-Perldoc/Makefile.PL
new file mode 100644
index 0000000000..6d108f2d71
--- /dev/null
+++ b/cpan/Pod-Perldoc/Makefile.PL
@@ -0,0 +1,76 @@
+use 5.006;
+use strict;
+use warnings;
+
+use ExtUtils::MakeMaker;
+
+my $EUMM_VERSION = $ExtUtils::MakeMaker::VERSION;
+
+WriteMakefile(
+ 'NAME' => 'Pod::Perldoc',
+ 'VERSION_FROM' => 'lib/Pod/Perldoc.pm',
+
+ 'AUTHOR' => 'Mark Allen <mallen@cpan.org>', # maintainer
+ 'ABSTRACT_FROM' => 'lib/Pod/Perldoc.pm',
+
+ 'PREREQ_PM' => {
+ # Are there any hard dependencies not covered here?
+ 'Config' => '0',
+ 'Encode' => '0',
+ 'Fcntl' => '0',
+ 'File::Spec::Functions' => '0',
+ 'File::Temp' => '0.22',
+ 'IO::Select' => '0',
+ 'parent' => '0',
+ 'Pod::Man' => '2.18',
+ 'Pod::Simple::RTF' => '3.16',
+ 'Pod::Simple::XMLOutStream' => '3.16',
+ 'Pod::Text' => '0',
+ 'strict' => '0',
+ 'Symbol' => '0',
+ 'Test::More' => '0',
+ 'Text::ParseWords' => '0',
+ 'warnings' => '0',
+ },
+
+ ($ENV{PERL_CORE} ? () : ('EXE_FILES' => [qw( perldoc )])),
+
+ 'META_MERGE' => {
+ no_index => {
+ directory => 'corpus',
+ },
+ resources => {
+ repository => 'https://github.com/mrallen1/Pod-Perldoc.git',
+ },
+ },
+
+ 'MAN1PODS' => { 'perldoc.pod' => 'blib/man1/perldoc.1' },
+
+ ($^V >= 5.008001 ? ( 'INSTALLDIRS' => 'perl' ) : ()),
+
+ ( $EUMM_VERSION > 6.31 ? (
+ 'LICENSE' => 'perl',
+ ) : () ),
+
+ test => {TESTS => 't/*.t t/*/*.t'}
+);
+
+package MY;
+
+sub libscan
+{ # Determine things that should *not* be installed
+ my($self, $path) = @_;
+ return '' if $path =~ m/~/;
+ $path;
+}
+
+sub init_dirscan
+{
+ my($self) = shift;
+ $self->SUPER::init_dirscan;
+ # Need to force perldoc.pod to install at the top level of the lib dir:
+ $self->{PM}{'perldoc.pod'} = $self->catfile($self->{INST_LIB}, 'perldoc.pod');
+ return;
+}
+
+__END__