X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=Makefile.PL;h=51d31fd328d6b81a957ec0c78db136d5abdba5e7;hp=95d59ad1bb91ffd44a596d0b3ec4a4a6e4cbfed8;hb=498a3b35c3ed6160b53e743c784aed05a5f641fb;hpb=3d649cfefb4bedd90018c26e01c2a27d96f14d2b diff --git a/Makefile.PL b/Makefile.PL index 95d59ad..51d31fd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,22 +1,31 @@ -use ExtUtils::MakeMaker; - -WriteMakefile( - NAME => 'Catalyst', - VERSION_FROM => 'lib/Catalyst.pm', - EXE_FILES => ['script/catalyst.pl'], - PREREQ_PM => { - UNIVERSAL::require => 0, - CGI::Simple => 0, - Class::Accessor::Fast => 0, - Class::Data::Inheritable => 0, - HTML::Entities => 0, - HTTP::Headers => 0, - HTTP::Server::Simple => '0.04', - Module::Pluggable::Fast => 0 +# Note: this file was auto-generated by Module::Build::Compat version 0.03 + + unless (eval "use Module::Build::Compat 0.02; 1" ) { + print "This module requires Module::Build to install itself.\n"; + + require ExtUtils::MakeMaker; + my $yn = ExtUtils::MakeMaker::prompt + (' Install Module::Build now from CPAN?', 'y'); + + unless ($yn =~ /^y/i) { + die " *** Cannot install without Module::Build. Exiting ...\n"; + } + + require Cwd; + require File::Spec; + require CPAN; + + # Save this 'cause CPAN will chdir all over the place. + my $cwd = Cwd::cwd(); + my $makefile = File::Spec->rel2abs($0); + + CPAN::Shell->install('Module::Build::Compat') + or die " *** Cannot install without Module::Build. Exiting ...\n"; + + chdir $cwd or die "Cannot chdir() back to $cwd: $!"; } -); - -print( - (qw/draven naughton sri the_jester/)[ int( rand(4) ) ], - " is the greatest and gabb is drunk again!\n" -); + eval "use Module::Build::Compat 0.02; 1" or die $@; + use lib '_build/lib'; + Module::Build::Compat->run_build_pl(args => \@ARGV); + require Module::Build; + Module::Build::Compat->write_makefile(build_class => 'Module::Build');