/[webpac2]/branches/Sack/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 /branches/Sack/Makefile.PL

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

trunk/Makefile.PL revision 235 by dpavlin, Tue Dec 6 22:15:33 2005 UTC branches/Sack/Makefile.PL revision 1310 by dpavlin, Mon Sep 21 19:04:14 2009 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_from 'lib/WebPAC.pm';
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' => 0,  #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          'URI::Escape' => 0,  requires        'MARC::Record' => '2.0';
28          'LWP' => 0,  requires        'Data::Dump';
29          'File::Path' => 0,  requires        'MARC::Lint' => '1.43';
30      },  requires        'Business::ISBN' => '2.02';     # WebPAC::Normalize::ISBN
31      dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },  requires        'PPI';
32      clean               => { FILES => 'WebPAC-* pod2html Makefile tags' },  requires        'XML::LibXML';
33    requires        'Pod::Usage';
34    requires        'Class::Accessor';
35    requires        'JSON';
36    requires        'File::Spec';
37    requires        'Sort::External';
38    
39    features(
40            'WebPAC::Input::XML' => [
41                    -default => 0,
42                    'XML::Simple',
43                    'File::Find',
44            ],
45            'WebPAC::Input::PDF' => [
46                    -default => 0,
47                    'CAM::PDF',
48            ],
49            'WebPAC::Input::Excel' => [
50                    -default => 1,
51                    'Spreadsheet::ParseExcel',
52            ],
53            'WebPAC::Input::CSV' => [
54                    -default => 1,
55                    'Text::CSV',
56            ],
57            'WebPAC::Input::DBF' => [
58                    -default => 0,
59                    'XBase',
60            ],
61            'WebPAC::Output::Estraier' => [
62                    -default => 0,
63                    'Search::Estraier' => 0.06,
64            ],
65            'WebPAC::Output::Webpacus and WebPAC::Output::Jifty' => [
66                    -default => 0,
67                    'Jifty',
68            ],
69            'WebPAC::Output::Excel' => [
70                    -default => 1,
71                    'Spreadsheet::WriteExcel' => 2.14,
72            ],
73            'WebPAC::Output::KinoSearch' => [
74                    -default => 0,
75                    'KinoSearch::Simple',
76            ],
77            'WebPAC::Output::SWISH' => [
78                    -default => 1,
79                    'SWISH::API',
80            ],
81            'WebPAC::Output::CouchDB' => [
82                    -default => 0,
83                    'Net::CouchDb',
84            ],
85            'Parallel execution (probably broken)' => [
86                    -default => 0,
87                    'Proc::Queue',
88            ],
89            'CGI web interface' => [
90                    -default => 0,
91                    'Data::Page',
92                    'CGI',
93                    'CGI::Carp',
94                    'SWISH::API',
95                    'Text::Unaccent::PurePerl',
96                    'HTML::FillInForm::Lite',
97            ],
98  );  );
99    
100    build_requires 'Test::More';
101    
102    clean_files('WebPAC-* pod2html Makefile tags');
103    
104    auto_install;
105    
106    WriteAll;
107    
108  sub MY::postamble {  sub MY::postamble {
109          return <<'MAKE_MORE';          return <<'MAKE_MORE';
110    
111  HTML_DIR=pod2html  HTML_DIR=pod2html
112    # no need to include --limit here!
113    #profile_perl=./run.pl --only ffps --stats
114    #profile_perl=./run.pl --only ffps/libri --validate conf/validate/ffps-libri
115    #profile_perl=./run.pl --only ffps --validate-delimiters conf/validate/delimiters/ffps
116    profile_perl=./run.pl --only ffps --validate conf/validate/ffps-libri --validate-delimiters conf/validate/delimiters/ffps
117    
118    
119  html: $(TO_INST_PM)  html: $(TO_INST_PM)
120          test -e $(HTML_DIR) || mkdir $(HTML_DIR)          test -e $(HTML_DIR) && rm -Rf "$(HTML_DIR)" || true
121            mkdir "$(HTML_DIR)"
122    
123            # add additional html documents
124            test ! -z "`which svn2html.pl`" && svk update && svn2html.pl > $(HTML_DIR)/Changes.html || true
125    
126            test -e $(HTML_DIR)/pod.css || ln -s ../pod.css $(HTML_DIR)/
127    
128          test ! -z "`which allpod2xhtml.pl`" && allpod2xhtml.pl ./lib $(HTML_DIR)          test ! -z "`which allpod2xhtml.pl`" && allpod2xhtml.pl --frames="WebPAC documentation" --existing --css=pod.css ./lib $(HTML_DIR)
         test ! -z "`which svn2html.pl`" && svn update && svn2html.pl > $(HTML_DIR)/Changes.html  
129    
130  changelog:  changelog:
131          svn update && svn -v log > Changes          svn update && svn -v log > Changes
# Line 49  tags: Line 134  tags:
134          ctags *.p[ml] */*.p[ml] */*/*.p[ml]          ctags *.p[ml] */*.p[ml] */*/*.p[ml]
135    
136  sf:  sf:
137          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
138    
139  run:  config_yml:
         rm -f log  
140          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
141          test -d db && rm -Rf db/* || mkdir db          #perl -c conf/normalize/*.pl
142            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 {}
143    
144    run: config_yml
145            rm -f log
146            ./run.pl --clean --limit 100
147    
148    full: config_yml
149            rm -f log
150          ./run.pl          ./run.pl
151    
152    profile: all
153            perl -d:DProf $(profile_perl) --limit 250 && dprofpp -O 50 > profile.`perl -e 'my @p = glob("profile.[0-9]*"); print scalar @p + 1'`
154    
155    profile2:
156            perl -d:SmallProf $(profile_perl) --limit 100 && sort -k 2nr,2 smallprof.out | vi -R -
157    
158  MAKE_MORE  MAKE_MORE
159  }  }

Legend:
Removed from v.235  
changed lines
  Added in v.1310

  ViewVC Help
Powered by ViewVC 1.1.26