/[webpac2]/trunk/Makefile.PL
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/Makefile.PL

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 550 by dpavlin, Fri Jun 30 18:48:33 2006 UTC revision 1054 by dpavlin, Tue Nov 20 09:30:56 2007 UTC
# Line 1  Line 1 
1  use strict;  use strict;
2  use warnings;  use warnings;
3  use ExtUtils::MakeMaker;  #use ExtUtils::MakeMaker;
4    use inc::Module::Install;
5    
6  WriteMakefile(  
7      NAME                => 'WebPAC',  name    'WebPAC';
8      AUTHOR              => 'Dobrica Pavlinusic <dpavlin@rot13.org>',  version '2.32';
9      VERSION_FROM        => 'lib/WebPAC.pm',  license 'GPL';
10      ABSTRACT_FROM       => 'lib/WebPAC.pm',  
11      PL_FILES            => {},  requires        'YAML';
12      PREREQ_PM => {  requires        'File::Slurp';
13          'Test::More' => 0,  requires        'Log::Log4perl' => '1.02';
14          'YAML' => 0,  requires        'Cwd';
15          'File::Slurp' => 0,  requires        'Storable';
16          'Log::Log4perl' => 1.02,  requires        'DBM::Deep';
17          'Data::Dumper' => 0,  #       'Template';
18          'Cwd' => 0,  requires        'Time::HiRes';
19          'Storable' => 0,  requires        'File::Temp';
20          'DBM::Deep' => 0,  requires        'List::Util';
21          'Template' => 0,  requires        'Encode';
22          'Time::HiRes' => 0,  requires        'LWP';
23          'File::Temp' => 0,  requires        'File::Path';
24          'List::Util' => 0,  requires        'Biblio::Isis' => '0.24';
25          'Encode' => 0,  requires        'MARC::Fast' => '0.09';
26          'LWP' => 0,  requires        'List::Util';
27          'File::Path' => 0,  requires        'Spreadsheet::ParseExcel';
28          'Biblio::Isis' => 0.13,  requires        'MARC::Record' => '2.0';
29          'MARC::Fast' => 0.02,  requires        'Data::Dump';
30          'Search::Estraier' => 0.06,  requires        'MARC::Lint' => '1.43';
31          'List::Util' => 0,  requires        'Business::ISBN' => '2.02';     # WebPAC::Normalize::ISBN
32          'Spreadsheet::ParseExcel', => 0,  requires        'Proc::Queue';
33          'MARC::Record' => 2.0,  requires        'PPI';
34          'Data::Dump' => 0,  requires        'XML::LibXML';
35      },  requires        'Pod::Usage';
36      dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },  requires        'Class::Accessor';
37      clean               => { FILES => 'WebPAC-* pod2html Makefile tags' },  requires        'JSON';
38    requires        'File::Spec';
39    requires        'Sort::External';
40    
41    features(
42            'WebPAC::Input::XML' => [
43                    -default => 0,
44                    recommends('XML::Simple'),
45                    recommends('File::Find'),
46            ],
47    );
48    
49    features(
50            'WebPAC::Input::PDF' => [
51                    -default => 0,
52                    recommends('CAM::PDF'),
53            ],
54  );  );
55    
56    features(
57            'WebPAC::Output::Estraier' => [
58                    -default => 0,
59                    recommends('Search::Estraier' => 0.06),
60            ],
61    );
62    
63    
64    build_requires 'Test::More';
65    
66    clean_files('WebPAC-* pod2html Makefile tags');
67    
68    auto_install;
69    
70    WriteAll;
71    
72  sub MY::postamble {  sub MY::postamble {
73          return <<'MAKE_MORE';          return <<'MAKE_MORE';
74    
75  HTML_DIR=pod2html  HTML_DIR=pod2html
76  profile_perl=./run.pl  # no need to include --limit here!
77    #profile_perl=./run.pl --only ffps --stats
78    #profile_perl=./run.pl --only ffps/libri --validate conf/validate/ffps-libri
79    #profile_perl=./run.pl --only ffps --validate-delimiters conf/validate/delimiters/ffps
80    profile_perl=./run.pl --only ffps --validate conf/validate/ffps-libri --validate-delimiters conf/validate/delimiters/ffps
81    
82    
83  html: $(TO_INST_PM)  html: $(TO_INST_PM)
84          test -e $(HTML_DIR) && rm -Rf "$(HTML_DIR)" || true          test -e $(HTML_DIR) && rm -Rf "$(HTML_DIR)" || true
85          mkdir "$(HTML_DIR)"          mkdir "$(HTML_DIR)"
86    
87          # add additional html documents          # add additional html documents
88          test ! -z "`which svn2html.pl`" && svk update && svn2html.pl > $(HTML_DIR)/Changes.html          test ! -z "`which svn2html.pl`" && svk update && svn2html.pl > $(HTML_DIR)/Changes.html || true
89    
90          test -e $(HTML_DIR)/pod.css || ln -s ../pod.css $(HTML_DIR)/          test -e $(HTML_DIR)/pod.css || ln -s ../pod.css $(HTML_DIR)/
91    
# Line 60  tags: Line 98  tags:
98          ctags *.p[ml] */*.p[ml] */*/*.p[ml]          ctags *.p[ml] */*.p[ml] */*/*.p[ml]
99    
100  sf:  sf:
101          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
102    
103  config_yml:  config_yml:
104          test ! -e conf/config.yml && ln -s /data/Webpacus/config.yml conf/ || true          test ! -e conf/config.yml && ln -s /data/Webpacus/config.yml conf/ || true
# Line 75  full: config_yml Line 113  full: config_yml
113          rm -f log          rm -f log
114          ./run.pl          ./run.pl
115    
116  profile:  profile: all
117          perl -d:DProf $(profile_perl) --limit 500 && dprofpp > profile.`perl -e 'my @p = glob("profile.[0-9]*"); print scalar @p + 1'`          perl -d:DProf $(profile_perl) --limit 250 && dprofpp -O 50 > profile.`perl -e 'my @p = glob("profile.[0-9]*"); print scalar @p + 1'`
118    
119  profile2:  profile2:
120          perl -d:SmallProf $(profile_perl) --limit 100 && sort -k 2nr,2 smallprof.out | vi -R -          perl -d:SmallProf $(profile_perl) --limit 100 && sort -k 2nr,2 smallprof.out | vi -R -

Legend:
Removed from v.550  
changed lines
  Added in v.1054

  ViewVC Help
Powered by ViewVC 1.1.26