--- trunk/Makefile.PL 2005/11/20 20:32:46 76 +++ trunk/Makefile.PL 2007/11/10 11:11:18 1022 @@ -1,6 +1,9 @@ use strict; use warnings; -use ExtUtils::MakeMaker; +#use ExtUtils::MakeMaker; +use inc::Module::Install; + +license 'GPL'; WriteMakefile( NAME => 'WebPAC', @@ -9,35 +12,69 @@ ABSTRACT_FROM => 'lib/WebPAC.pm', PL_FILES => {}, PREREQ_PM => { - 'Test::More' => 0, - 'Config::Tiny' => 0, + 'Test::More' => 0, + 'YAML' => 0, 'File::Slurp' => 0, - 'Log::Log4perl' => 0, - 'Data::Dumper' => 0, + 'Log::Log4perl' => '1.02', 'Cwd' => 0, - 'Text::Iconv' => 0, 'Storable' => 0, 'DBM::Deep' => 0, - 'XML::Simple' => 0, - 'Template' => 0, +# 'Template' => 0, 'Time::HiRes' => 0, 'File::Temp' => 0, 'List::Util' => 0, + 'Encode' => 0, + 'LWP' => 0, + 'File::Path' => 0, + 'Biblio::Isis' => '0.24', + 'MARC::Fast' => '0.08', +# 'Search::Estraier' => 0.06, + 'List::Util' => 0, + 'Spreadsheet::ParseExcel', => 0, + 'MARC::Record' => '2.0', + 'Data::Dump' => 0, + 'MARC::Lint' => '1.43', + # WebPAC::Normalize::ISBN + 'Business::ISBN' => '2.02', + 'Proc::Queue' => 0, + 'PPI' => 0, + 'XML::LibXML' => 0, + 'Pod::Usage' => 0, + 'Class::Accessor' => 0, + 'JSON' => 0, + 'File::Spec' => 0, + 'Sort::External' => 0, + # WebPAC::Input::XML + 'XML::Simple' => 0, + 'File::Find' => 0, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'WebPAC-* pod2html Makefile tags' }, ); +auto_install; + sub MY::postamble { return <<'MAKE_MORE'; HTML_DIR=pod2html +# no need to include --limit here! +#profile_perl=./run.pl --only ffps --stats +#profile_perl=./run.pl --only ffps/libri --validate conf/validate/ffps-libri +#profile_perl=./run.pl --only ffps --validate-delimiters conf/validate/delimiters/ffps +profile_perl=./run.pl --only ffps --validate conf/validate/ffps-libri --validate-delimiters conf/validate/delimiters/ffps + html: $(TO_INST_PM) - test -e $(HTML_DIR) || mkdir $(HTML_DIR) + test -e $(HTML_DIR) && rm -Rf "$(HTML_DIR)" || true + mkdir "$(HTML_DIR)" - test ! -z "`which allpod2xhtml.pl`" && allpod2xhtml.pl ./lib $(HTML_DIR) - test ! -z "`which svn2html.pl`" && svn update && svn2html.pl > $(HTML_DIR)/Changes.html + # add additional html documents + test ! -z "`which svn2html.pl`" && svk update && svn2html.pl > $(HTML_DIR)/Changes.html || true + + test -e $(HTML_DIR)/pod.css || ln -s ../pod.css $(HTML_DIR)/ + + test ! -z "`which allpod2xhtml.pl`" && allpod2xhtml.pl --frames="WebPAC documentation" --existing --css=pod.css ./lib $(HTML_DIR) changelog: svn update && svn -v log > Changes @@ -46,11 +83,26 @@ ctags *.p[ml] */*.p[ml] */*/*.p[ml] sf: - svn2cvs.pl file:///home/dpavlin/private/svn/webpac2/trunk/ :ext:dpavlin@cvs.sourceforge.net:/cvsroot/webpac webpac2 + svn2cvs.pl file:///home/dpavlin/private/svn/webpac2/trunk/ :ext:dpavlin@webpac.cvs.sourceforge.net:/cvsroot/webpac webpac2 + +config_yml: + test ! -e conf/config.yml && ln -s /data/Webpacus/config.yml conf/ || true + #perl -c conf/normalize/*.pl + perl -c conf/normalize/*.pl 2>&1 | grep 'conf/normalize' | grep -v 'OK' | sed -e 's#^.*conf/normalize#conf/normalize#' -e 's#,##' | awk '{ print "+" $3 " " $1 }' | xargs -i echo vi {} + +run: config_yml + rm -f log + ./run.pl --clean --limit 100 -run: - rm -f ./db/* log +full: config_yml + rm -f log ./run.pl +profile: all + perl -d:DProf $(profile_perl) --limit 250 && dprofpp -O 50 > profile.`perl -e 'my @p = glob("profile.[0-9]*"); print scalar @p + 1'` + +profile2: + perl -d:SmallProf $(profile_perl) --limit 100 && sort -k 2nr,2 smallprof.out | vi -R - + MAKE_MORE }