--- trunk/Makefile.PL 2005/05/15 21:19:26 20 +++ trunk/Makefile.PL 2005/05/16 16:25:38 28 @@ -4,16 +4,17 @@ # the contents of the Makefile that is written. WriteMakefile( NAME => 'Nos', - VERSION_FROM => 'lib/Nos.pm', # finds $VERSION + VERSION_FROM => 'Nos.pm', # finds $VERSION PREREQ_PM => { 'Class::DBI::Loader', 'Getopt::Long', 'Email::Valid', 'Email::Send', 'Carp', + 'SOAP::Lite', }, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 - (ABSTRACT_FROM => 'lib/Nos.pm', # retrieve abstract from module + (ABSTRACT_FROM => 'Nos.pm', # retrieve abstract from module AUTHOR => 'Dobrica Pavlinusic ') : ()), ); @@ -25,6 +26,7 @@ html: $(TO_INST_PM) test -e $(HTML_DIR) || mkdir $(HTML_DIR) ls $(MAN1PODS) $(MAN3PODS) | cut -d. -f1 | xargs -i sh -c "pod2html --infile {}.p[lm] --outfile $(HTML_DIR)/{}.html --htmldir $(HTML_DIR)" + ls *.cgi | cut -d. -f1 | xargs -i sh -c "pod2html --infile {}.* --outfile $(HTML_DIR)/{}.html --htmldir $(HTML_DIR)" rm -f pod2htm?.tmp test ! -z "`which svn2html.pl`" && svn update && svn2html.pl > $(HTML_DIR)/Changes.html @@ -37,7 +39,7 @@ db=notices init: - dropdb $(db) + dropdb $(db) || true createdb $(db) psql $(db) < schema.sql