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

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

  ViewVC Help
Powered by ViewVC 1.1.26