updated log format
[catagits/Catalyst-Runtime.git] / Makefile.PL
CommitLineData
022d1311 1use inc::Module::Install;
2
0ba80bce 3perl_version '5.8.1';
4
24b3262a 5name 'Catalyst';
6all_from 'lib/Catalyst.pm';
7
8requires 'perl' => '5.8.1';
9requires 'UNIVERSAL::require' => "0.10";
9ce44430 10requires 'Carp';
24b3262a 11requires 'Class::Accessor::Fast';
12requires 'Class::Data::Inheritable';
f63c03e4 13requires 'Class::Inspector' => '1.06';
24b3262a 14requires 'CGI::Cookie';
f63c03e4 15requires 'Data::Dump';
24b3262a 16requires 'File::Modified';
17requires 'HTML::Entities';
18requires 'HTTP::Body' => 0.5;
c4bbf4de 19requires 'HTTP::Headers' => 1.64;
24b3262a 20requires 'HTTP::Request';
21requires 'HTTP::Response';
ee3c41e3 22requires 'HTTP::Request::AsCGI' => '0.5';
24b3262a 23requires 'LWP::UserAgent';
24requires 'MIME::Types';
25requires 'Module::Pluggable::Fast' => 0.16;
26requires 'NEXT';
27requires 'Path::Class' => 0.09;
28requires 'Scalar::Util';
29requires 'Template';
f2777592 30requires 'Text::SimpleTable' => 0.03;
24b3262a 31requires 'Test::MockObject';
adee716c 32requires 'Test::NoWarnings' => 0.082;
24b3262a 33requires 'Time::HiRes';
f22b8975 34requires 'Tree::Simple' => 1.15;
24b3262a 35requires 'Tree::Simple::Visitor::FindByPath';
36requires 'URI' => 1.35;
37requires 'File::Copy::Recursive';
9bf43a66 38requires 'Module::Install::Admin' => '0.54';
0ff7106c 39requires 'Module::Install' => '0.54';
a6ad13b6 40requires 'YAML' => '0.55';
3736410f 41requires 'Data::Visitor' => '0.02';
24b3262a 42
43feature 'Apache/mod_perl Support',
44 -default => 0,
ef0955fa 45 'Catalyst::Engine::Apache' => '1.05';
24b3262a 46
47feature 'FastCGI Support', -default => 0, 'FCGI' => 0, 'FCGI::ProcManager' => 0;
614f3ad6 48
24b3262a 49feature 'PAR Support',
50 -default => 0,
51 'PAR' => 0;
614f3ad6 52
24b3262a 53feature 'CPANPLUS (for easier installations)',
54 -default => 0,
55 'CPANPLUS' => 0;
614f3ad6 56
24b3262a 57install_script glob('script/*.pl');
58auto_install;
59WriteAll;
614f3ad6 60
61print( '*' x 80, "\n" );
62my $banner =
63 (qw/andyg chansen draven fordmason mst naughton sri jester/)[ int( rand(8) ) ]
64 . " is the greatest and gabb is "
65 . ( (localtime)[2] > 12 ? "drunk" : "hung over" )
66 . " again!";
67print " $banner \n";
68print( '*' x 80, "\n" );
69
614f3ad6 70eval "use FCGI";
71print qq/ Install "FCGI" for FastCGI support.\n/ if $@;
72eval "use FCGI::ProcManager";
73print
74 qq/ Install "FCGI::ProcManager" for multiprocess FastCGI external support.\n/
75 if ($@);
76eval "use PAR ()";
77print qq/ Install "PAR" for PAR packaging support.\n/ if $@;
78
79print <<"EOF";
80
81 Important:
d538823f 82 Install Task::Catalyst to get everything you need to start writing
8878af8a 83 serious applications with Catalyst.
a5b5152b 84
f63c03e4 85 Note that Catalyst::Helper has been split into a separate distribution,
86 and is required for using catalyst.pl to make new distributions. It is
87 included with Task::Catalyst
88
e7d20a58 89 perl -MCPANPLUS -e 'install Task::Catalyst'
d538823f 90 perl -MCPAN -e 'install Task::Catalyst'
a5b5152b 91
a5b5152b 92 Have fun!
614f3ad6 93EOF