Updated Changes
[catagits/Catalyst-Runtime.git] / Makefile.PL
index 4ff5625..b89c815 100644 (file)
@@ -3,20 +3,42 @@ use ExtUtils::MakeMaker;
 WriteMakefile(
     NAME         => 'Catalyst',
     VERSION_FROM => 'lib/Catalyst.pm',
-    EXE_FILES    => ['bin/catalyst'],
+    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,
-        Module::Pluggable::Fast  => 0
+        UNIVERSAL::require                => 0,
+        CGI::Simple                       => 0,
+        Class::Accessor::Fast             => 0,
+        Class::Data::Inheritable          => 0,
+        HTTP::Daemon                      => 0,
+        HTML::Entities                    => 0,
+        HTTP::Headers                     => 0,
+        HTTP::Request                     => 0,
+        HTTP::Response                    => 0,
+        LWP::UserAgent                    => 0,
+        Module::Pluggable::Fast           => 0,
+        Template                          => 0,
+        Text::ASCIITable                  => 0,
+        Tree::Simple                      => 0,
+        Tree::Simple::Visitor::FindByPath => 0,
+        URI                               => 0,
+    },
+    test => {
+        TESTS => join ' ',
+        (
+            glob('t/*.t'),     glob('t/*/*.t'),
+            glob('t/*/*/*.t'), glob('t/*/*/*/*.t')
+        )
     }
 );
 
-my $gabb =
-  int( rand(2) ) == 1
-  ? "Gabbana is the greatest!"
-  : "Gabbana is drunk again!";
-print "$gabb\n";
+print( '*' x 80, "\n" );
+print( (qw/chansen draven fordmason naughton sri the_jester/)[ int( rand(6) ) ],
+    " is the greatest and gabb is ", 
+    ((localtime)[2] > 12 ? "drunk" : "hung over"), " again!\n" );
+print( '*' x 80, "\n" );
+
+eval "use mod_perl; use Apache::Request";
+print qq/Install "mod_perl" and "Apache::Request" for Apache support.\n/ if $@;
+
+eval "use FCGI";
+print qq/Install "FCGI" for FastCGI support.\n/ if $@;