[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GT] SVN Commit r702 - branches/CPAN



Author: clkao
Date: 2009-11-06 14:35:06 +0100 (Fri, 06 Nov 2009)
New Revision: 702

Modified:
   branches/CPAN/Makefile.PL
Log:
Categorized dependencies and author tests.

Modified: branches/CPAN/Makefile.PL
===================================================================
--- branches/CPAN/Makefile.PL	2009-11-06 13:34:23 UTC (rev 701)
+++ branches/CPAN/Makefile.PL	2009-11-06 13:35:06 UTC (rev 702)
@@ -11,6 +11,46 @@
 no_index directory => 'docs';
 no_index directory => 'website';
 
+requires 'Date::Calc';
+requires 'XML::LibXML';
+requires 'Compress::Zlib';
+
+feature 'Charting with GD',
+    'GD' => 0;
+
+feature 'Charting with Image::Magick',
+    -default => 0,
+	'Image::Magick' => 0;
+
+feature 'Charting with SVG',
+    -default => 0,
+	'SVG' => 0;
+
+feature 'Charting with PostScript',
+    -default => 0,
+	'PostScript::Simple' => 0;
+
+feature 'HTML Report',
+    -default => 0,
+	'HTML::Mason' => 0;
+
+feature 'HTTP DB Backend',
+    -default => 0,
+	'LWP' => 0;
+
+feature 'DBI DB Backend',
+    -default => 0,
+	'DBI' => 0;
+
+feature 'PostgreSql Backend',
+    -default => 0,
+	'DBI' => 0,
+	'DBD::pg' => 0;
+
+tests 't/*.t t/*/*.t t/*/*/*.t t/*/*/*/*.t t/*/*/*/*/*.t';
+author_tests 'xt';
+
+auto_include;
 auto_install;
 
 WriteAll;