X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=Build.PL;h=0d8bdf7ff103360713d6701ead7276a4da07d0ea;hp=08b48ba5c6a369b31d7353c73b32ae29370c449a;hb=496021a4740bcccf5b630f9fbd6f6bff0882dfc7;hpb=91d4abc5cc6b75fb46cef7aac04f3cb58f6b3551 diff --git a/Build.PL b/Build.PL index 08b48ba..0d8bdf7 100644 --- a/Build.PL +++ b/Build.PL @@ -12,8 +12,9 @@ my $build = Module::Build->new( 'Class::Data::Inheritable' => 0, 'Class::Inspector' => 0, 'CGI::Cookie' => 0, + 'File::Modified' => 0, 'HTML::Entities' => 0, - 'HTTP::Body' => 0.03, + 'HTTP::Body' => 0.4, 'HTTP::Headers' => 1.59, 'HTTP::Request' => 0, 'HTTP::Response' => 0, @@ -24,8 +25,9 @@ my $build = Module::Build->new( 'Path::Class' => 0.09, 'Scalar::Util' => 0, 'Template' => 0, - 'Text::ASCIITable' => 0.17, + 'Text::SimpleTable' => 0, 'Test::MockObject' => 0, + 'Time::HiRes' => 0, 'Tree::Simple' => 0, 'Tree::Simple::Visitor::FindByPath' => 0, 'URI' => 1.35, @@ -44,28 +46,39 @@ my $build = Module::Build->new( $build->create_build_script; print( '*' x 80, "\n" ); -print( - (qw/andyg chansen draven fordmason mst naughton sri jester/) - [ int( rand(8) ) ], - " is the greatest and gabb is ", - ( (localtime)[2] > 12 ? "drunk" : "hung over" ), - " again!\n" -); +my $banner = + (qw/andyg chansen draven fordmason mst naughton sri jester/)[ int( rand(8) ) ] + . " is the greatest and gabb is " + . ( (localtime)[2] > 12 ? "drunk" : "hung over" ) + . " again!"; +print " $banner \n"; print( '*' x 80, "\n" ); +print <<'EOF'; + + ____ _ _ _ + / ___|__ _| |_ __ _| |_ _ ___| |_ + | | / _` | __/ _` | | | | / __| __| + | |__| (_| | || (_| | | |_| \__ \ |_ + \____\__ _|\__\__ _|_|\__ |___/\__| + |___/ carpe diem! + +EOF + eval "use FCGI"; if ($@) { - print qq/Install "FCGI" for FastCGI support.\n/; + print qq/ Install "FCGI" for FastCGI support.\n/; } else { eval "use FCGI::ProcManager"; print -qq/Install "FCGI::ProcManager" for multiprocess FastCGI external support.\n/ +qq/ Install "FCGI::ProcManager" for multiprocess FastCGI external support.\n/ if ($@); } -print qq/ -*** IMPORTANT NOTE: *** -The Apache engines have been moved to a separate package in Catalyst 5.5. -Please install Catalyst::Engine::Apache if you need Apache support. -/; +print <<"EOF"; + + Important: + The Apache engines have been moved to a separate package in Catalyst 5.5. + Please install Catalyst::Engine::Apache if you need Apache support. +EOF