/[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 392 by dpavlin, Sat Jan 28 14:58:30 2006 UTC revision 1056 by dpavlin, Tue Nov 20 10:08:00 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          'Text::Iconv' => 0,  requires        'File::Temp';
20          'Storable' => 0,  requires        'List::Util';
21          'DBM::Deep' => 0,  requires        'Encode';
22          'XML::Simple' => 0,  requires        'LWP';
23          'Template' => 0,  requires        'File::Path';
24          'Time::HiRes' => 0,  requires        'Biblio::Isis' => '0.24';
25          'File::Temp' => 0,  requires        'MARC::Fast' => '0.09';
26          'List::Util' => 0,  requires        'List::Util';
27          'Encode' => 0,  requires        'Spreadsheet::ParseExcel';
28          'LWP' => 0,  requires        'MARC::Record' => '2.0';
29          'File::Path' => 0,  requires        'Data::Dump';
30          'Biblio::Isis' => 0.13,  requires        'MARC::Lint' => '1.43';
31          'MARC::Fast' => 0.02,  requires        'Business::ISBN' => '2.02';     # WebPAC::Normalize::ISBN
32      },  requires        'Proc::Queue';
33      dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },  requires        'PPI';
34      clean               => { FILES => 'WebPAC-* pod2html Makefile tags' },  requires        'XML::LibXML';
35    requires        'Pod::Usage';
36    requires        'Class::Accessor';
37    requires        'JSON';
38    requires        'File::Spec';
39    requires        'Sort::External';
40    
41    features(
42            'WebPAC::Output::Webpacus and WebPAC::Output::Jifty' => [
43                    -default => 0,
44                    recommends('Jifty'),
45            ],
46    );
47    
48    features(
49            'WebPAC::Input::XML' => [
50                    -default => 0,
51                    recommends('XML::Simple'),
52                    recommends('File::Find'),
53            ],
54    );
55    
56    features(
57            'WebPAC::Input::PDF' => [
58                    -default => 0,
59                    recommends('CAM::PDF'),
60            ],
61  );  );
62    
63    features(
64            'WebPAC::Output::Estraier' => [
65                    -default => 0,
66                    recommends('Search::Estraier' => 0.06),
67            ],
68    );
69    
70    
71    build_requires 'Test::More';
72    
73    clean_files('WebPAC-* pod2html Makefile tags');
74    
75    auto_install;
76    
77    WriteAll;
78    
79  sub MY::postamble {  sub MY::postamble {
80          return <<'MAKE_MORE';          return <<'MAKE_MORE';
81    
82  HTML_DIR=pod2html  HTML_DIR=pod2html
83    # no need to include --limit here!
84    #profile_perl=./run.pl --only ffps --stats
85    #profile_perl=./run.pl --only ffps/libri --validate conf/validate/ffps-libri
86    #profile_perl=./run.pl --only ffps --validate-delimiters conf/validate/delimiters/ffps
87    profile_perl=./run.pl --only ffps --validate conf/validate/ffps-libri --validate-delimiters conf/validate/delimiters/ffps
88    
89    
90  html: $(TO_INST_PM)  html: $(TO_INST_PM)
91          test -e $(HTML_DIR) || mkdir $(HTML_DIR)          test -e $(HTML_DIR) && rm -Rf "$(HTML_DIR)" || true
92            mkdir "$(HTML_DIR)"
93    
94          test ! -z "`which allpod2xhtml.pl`" && allpod2xhtml.pl ./lib $(HTML_DIR)          # add additional html documents
95          test ! -z "`which svn2html.pl`" && svn update && svn2html.pl > $(HTML_DIR)/Changes.html          test ! -z "`which svn2html.pl`" && svk update && svn2html.pl > $(HTML_DIR)/Changes.html || true
96    
97            test -e $(HTML_DIR)/pod.css || ln -s ../pod.css $(HTML_DIR)/
98    
99            test ! -z "`which allpod2xhtml.pl`" && allpod2xhtml.pl --frames="WebPAC documentation" --existing --css=pod.css ./lib $(HTML_DIR)
100    
101  changelog:  changelog:
102          svn update && svn -v log > Changes          svn update && svn -v log > Changes
# Line 51  tags: Line 105  tags:
105          ctags *.p[ml] */*.p[ml] */*/*.p[ml]          ctags *.p[ml] */*.p[ml] */*/*.p[ml]
106    
107  sf:  sf:
108          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
109    
110  config_yml:  config_yml:
111          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
112            #perl -c conf/normalize/*.pl
113            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 {}
114    
115  run: config_yml  run: config_yml
116          rm -f log          rm -f log
# Line 64  full: config_yml Line 120  full: config_yml
120          rm -f log          rm -f log
121          ./run.pl          ./run.pl
122    
123    profile: all
124            perl -d:DProf $(profile_perl) --limit 250 && dprofpp -O 50 > profile.`perl -e 'my @p = glob("profile.[0-9]*"); print scalar @p + 1'`
125    
126    profile2:
127            perl -d:SmallProf $(profile_perl) --limit 100 && sort -k 2nr,2 smallprof.out | vi -R -
128    
129  MAKE_MORE  MAKE_MORE
130  }  }

Legend:
Removed from v.392  
changed lines
  Added in v.1056

  ViewVC Help
Powered by ViewVC 1.1.26