summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authortetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-24 00:41:09 +0000
committertetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-24 00:41:09 +0000
commit9e34b3bf12cfda888c75a3a90decd447752fd4ff (patch)
treeacce70ef204ebf490ca233cf2339007d8a02a413 /Makefile.PL
parentfe07aaba94c4d6078445ab1ad3082ec39ad0421d (diff)
Adding Excel and OpenDocument spreadsheet options. ODS needs more work.
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1657 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL22
1 files changed, 13 insertions, 9 deletions
diff --git a/Makefile.PL b/Makefile.PL
index f7950a9b..05c61287 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -28,7 +28,6 @@ requires 'Cwd';
requires 'Config::Std';
requires 'MIME::Lite';
requires 'Template' => '2.14';
-requires 'Template::Latex';
requires 'Error';
requires 'CGI::Simple';
@@ -49,14 +48,19 @@ feature 'Developer tool dependencies',
'Getopt::Long' => 0,
'FileHandle' => 0;
-#feature 'Excel output',
-# -default => 0,
-# 'Excel::Template::Plus' => 0;
-#
-#feature 'OpenOffice.org output',
-# -default => 0,
-# 'XML::Twig' => 0,
-# 'OpenOffice::OODoc' => 0;
+# Rendering options
+feature 'PDF and Postscript output'
+ -default => 0,
+ 'Template::Latex' => 0;
+
+feature 'OpenOffice.org output',
+ -default => 0,
+ 'XML::Twig' => 0,
+ 'OpenOffice::OODoc' => 0;
+
+feature 'Excel output',
+ -default => 0,
+ 'Excel::Template::Plus' => 0;
auto_install;
WriteAll;