Add basic restrictive robots.txt file to opac
[koha-equinox.git] / Makefile.PL
1 # Copyright 2007 MJ Ray
2 #
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17 #
18 # Current maintainer MJR http://mjr.towers.org.uk/
19 # See http://www.koha.org/wiki/?page=KohaInstaller
20 #
21
22 use strict;
23 use warnings;
24 use ExtUtils::MakeMaker;
25 use POSIX;
26 use File::Spec;
27 use Getopt::Long;
28
29 my $DEBUG = 0;
30 die "perl 5.6.1 or later required" unless ($] >= 5.006001);
31
32 # Hash up directory structure & files beginning with the directory we were called from (should be the base of koha)...
33
34 my $dirtree = hashdir('.');
35 my %result = ();
36
37 =head1 NAME
38
39 Makefile.PL - Koha packager and installer
40
41 =head1 SYNOPSIS
42
43 =head2 BASIC INSTALLATION
44
45     perl Makefile.PL
46     make
47     make test
48     sudo make install
49
50 =head2 UPGRADE INSTALLATION
51     
52     NOTE: This option is only available if koha-install-log exists.
53
54     perl Makefile.PL --prev-install-log /path/to/koha-install-log
55
56     make
57     make test
58     sudo make upgrade
59
60 =head2 PACKAGING RELEASE TARBALLS
61
62     make manifest tardist
63     make manifest zipdist
64
65 =head2 CLEANING UP
66
67         make clean
68
69 =head1 DESCRIPTION
70
71 This is a packager and installer that uses
72 ExtUtils::MakeMaker, which is fairly common
73 on perl systems.
74 As well as building tar or zip files
75 and installing with the above commands,
76 it allows us to check pre-requisites
77 and generate configuration files.
78
79 =head1 VARIABLES
80
81 =head2 NAME, VERSION_FROM, ABSTRACT, AUTHOR
82
83 Basic metadata about this software.
84
85 =head2 NO_META
86
87 Suppress generation of META.yml file.
88
89 =head2 PREREQ_PM
90
91 Hash of perl modules and versions required.
92
93 =head2 PM
94
95 Hash of file mappings
96
97 =head2 PL_FILES
98
99 This is a hash of PL scripts to run after installation and
100 the files to ask them to generate.
101 Maybe use the values from CONFIGURE
102 to generate initial configuration files in future.
103
104 =cut
105
106 =head2 target_map
107
108 This is a hash mapping directories and files in the
109 source tree to installation target directories.  The rules
110 for this mapping are:
111
112 =over 4
113
114 =item If a directory or file is specified, it and its
115 contents will be copied to the installation target directory.
116
117 =item If a subdirectory of a mapped directory is specified,
118 its target overrides the parent's target for that subdirectory.
119
120 =item The value of each map entry may either be a scalar containing 
121 one target or a reference to a hash containing 'target' and 'trimdir'
122 keys.
123
124 =item Any files at the top level of the source tree that are
125 not included in the map will not be installed.
126
127 =item Any directories at the top level of the source tree
128 that are not included in the map will be installed in
129 INTRANET_CGI_DIR.  This is a sensible default given the
130 current organization of the source tree, but (FIXME) it
131 would be better to reorganize the source tree to better
132 match the installation system, to allow adding new directories
133 without having to adjust Makefile.PL each time.  The idea
134 is to make the C<$target_map> hash as minimal as possible.
135
136 =back
137
138 The permitted installation targets are:
139
140 =over 4
141
142 =item INTRANET_CGI_DIR 
143
144 CGI scripts for intranet (staff) interface.
145
146 =item INTRANET_TMPL_DIR
147
148 HTML templates for the intranet interface.
149
150 =item INTRANET_WWW_DIR
151
152 HTML files, images, etc. for DocumentRoot for the intranet interface.
153
154 =item OPAC_CGI_DIR
155
156 CGI scripts for OPAC (public) interface.
157
158 =item OPAC_TMPL_DIR
159
160 HTML templates for the OPAC interface.
161
162 =item OPAC_WWW_DIR
163
164 HTML files, images, etc. for DocumentRoot for the OPAC interface.
165
166 =item PERL_MODULE_DIR
167
168 Perl modules (at present just the C4 modules) that are intimately
169 tied to Koha.  Depending on the installation options, these
170 may or may not be installed one of the standard directories
171 in Perl's default @LIB.
172
173 =item KOHA_CONF_DIR
174
175 Directory for Koha configuration files.
176
177 =item ZEBRA_CONF_DIR
178
179 Directory for Zebra configuration files.
180
181 =item ZEBRA_LOCK_DIR
182
183 Directory for Zebra's lock files.
184
185 =item ZEBRA_DATA_DIR
186
187 Directory for Zebra's data files.
188
189 =item ZEBRA_RUN_DIR
190
191 Directory for Zebra's UNIX-domain sockets.
192
193 =item MISC_DIR
194
195 Directory for for miscellaenous scripts, among other
196 things the translation toolkit and RSS feed tools.
197
198 =item SCRIPT_DIR
199
200 Directory for command-line scripts and daemons to
201 be set up all for installation modes.
202
203 =item SCRIPT_NONDEV_DIR
204
205 Directory for command-line scripts that should
206 be installed in the same directory as the
207 SCRIPT_DIR target except 'dev' installs.
208
209 =item MAN_DIR
210
211 Directory for man pages created from POD -- will mostly
212 contain information of interest to Koha developers.
213
214 =item DOC_DIR
215
216 Directory for Koha documentation accessed from the 
217 command-line, e.g., READMEs.
218
219 =item LOG_DIR
220
221 Directory for Apache and Zebra logs produced by Koha.
222
223 =item PAZPAR2_CONF_DIR
224
225 Directory for PazPar2 configuration files.
226
227 =item NONE
228
229 This is a dummy target used to explicitly state
230 that a given file or directory is not to be installed.
231 This is used either for parts of the installer itself
232 or for development tools that are not applicable to a
233 production installation.
234
235 =back
236
237 =cut
238
239 my $target_map = {
240   './about.pl'                  => 'INTRANET_CGI_DIR',
241   './acqui'                     => 'INTRANET_CGI_DIR',
242   './admin'                     => 'INTRANET_CGI_DIR',
243   './authorities'               => 'INTRANET_CGI_DIR',
244   './C4'                        => 'PERL_MODULE_DIR',
245   './C4/SIP/t'                  => 'NONE',
246   './C4/SIP/koha_test'          => 'NONE',
247   './C4/tests'                  => 'NONE',
248   './catalogue'                 => 'INTRANET_CGI_DIR',
249   './cataloguing'               => 'INTRANET_CGI_DIR',
250   './changelanguage.pl'         => 'INTRANET_CGI_DIR',
251   './check_sysprefs.pl'         => 'NONE',
252   './circ'                      => 'INTRANET_CGI_DIR',
253   './offline_circ'              => 'INTRANET_CGI_DIR',
254   './edithelp.pl'               => 'INTRANET_CGI_DIR',
255   './etc'                       => { target => 'KOHA_CONF_DIR', trimdir => -1 },
256   './etc/zebradb'               => { target => 'ZEBRA_CONF_DIR', trimdir => -1 },
257   './etc/pazpar2'               => { target => 'PAZPAR2_CONF_DIR', trimdir => -1 },
258   './help.pl'                   => 'INTRANET_CGI_DIR', 
259   './installer-CPAN.pl'         => 'NONE',
260   './installer'                 => 'INTRANET_CGI_DIR',
261   './errors'                    => {target => 'INTRANET_CGI_DIR'},
262   './koha-tmpl/intranet-tmpl'   => {target => 'INTRANET_TMPL_DIR', trimdir => -1},
263   './koha-tmpl/opac-tmpl'       => {target => 'OPAC_TMPL_DIR', trimdir => -1},
264   './koha-tmpl/robots.txt'      => {target => 'OPAC_WWW_DIR', trimdir => -1},
265   './kohaversion.pl'            => 'INTRANET_CGI_DIR', 
266   './labels'                    => 'INTRANET_CGI_DIR',
267   './mainpage.pl'               => 'INTRANET_CGI_DIR',
268   './Makefile.PL'               => 'NONE',
269   './MANIFEST.SKIP'             => 'NONE',
270   './members'                   => 'INTRANET_CGI_DIR',
271   './misc'                      => { target => 'SCRIPT_NONDEV_DIR', trimdir => -1 }, 
272   './misc/bin'                  => { target => 'SCRIPT_DIR', trimdir => -1 }, 
273   './misc/release_notes'        => { target => 'DOC_DIR', trimdir => 2 },
274   './misc/translator'           => { target => 'MISC_DIR', trimdir => 2 }, 
275   './misc/koha-install-log'     => { target => 'MISC_DIR', trimdir => -1 },
276   './misc/installer_devel_notes' => 'NONE',
277   './opac'                      => 'OPAC_CGI_DIR',
278   './README.txt'                => 'NONE',
279   './reports'                   => 'INTRANET_CGI_DIR',
280   './reserve'                   => 'INTRANET_CGI_DIR',
281   './reviews'                   => 'INTRANET_CGI_DIR',
282   './rewrite-config.PL'         => 'NONE',
283   './reviews'                   => 'INTRANET_CGI_DIR',
284   './serials'                   => 'INTRANET_CGI_DIR',
285   './skel'                      => 'NONE',
286   './skel/var/log/koha'         => { target => 'LOG_DIR', trimdir => -1 },
287   './skel/var/run/koha/zebradb' => { target => 'ZEBRA_RUN_DIR', trimdir => -1 },
288   './skel/var/lock/koha/zebradb/authorities' => { target => 'ZEBRA_LOCK_DIR', trimdir => 6 },
289   './skel/var/lib/koha/zebradb/authorities/key'  => { target => 'ZEBRA_DATA_DIR', trimdir => 6 },
290   './skel/var/lib/koha/zebradb/authorities/register'  => { target => 'ZEBRA_DATA_DIR', trimdir => 6 },
291   './skel/var/lib/koha/zebradb/authorities/shadow'  => { target => 'ZEBRA_DATA_DIR', trimdir => 6 },
292   './skel/var/lib/koha/zebradb/authorities/tmp'  => { target => 'ZEBRA_DATA_DIR', trimdir => 6 },
293   './skel/var/lock/koha/zebradb/biblios' => { target => 'ZEBRA_LOCK_DIR', trimdir => 6 },
294   './skel/var/lib/koha/zebradb/biblios/key'  => { target => 'ZEBRA_DATA_DIR', trimdir => 6 },
295   './skel/var/lib/koha/zebradb/biblios/register'  => { target => 'ZEBRA_DATA_DIR', trimdir => 6 },
296   './skel/var/lib/koha/zebradb/biblios/shadow'  => { target => 'ZEBRA_DATA_DIR', trimdir => 6 },
297   './skel/var/lib/koha/zebradb/biblios/tmp'  => { target => 'ZEBRA_DATA_DIR', trimdir => 6 },
298   './sms'                       => 'INTRANET_CGI_DIR',
299   './suggestion'                => 'INTRANET_CGI_DIR',
300   './svc'                       => 'INTRANET_CGI_DIR',
301   './t'                         => 'NONE',
302   './tags'                      => 'INTRANET_CGI_DIR',
303   './tmp'                       => 'NONE', # FIXME need to determine whether 
304                                            # Koha generates any persistent temp files
305                                            # that should go in /var/tmp/koha
306   './tools'                     => 'INTRANET_CGI_DIR',
307   './virtualshelves'            => 'INTRANET_CGI_DIR',
308   # ignore files and directories created by the install itself
309   './pm_to_blib'                => 'NONE',
310   './blib'                      => 'NONE',
311 };
312
313 =head1 CONFIGURATION OPTIONS
314
315 The following configuration options are used by the installer.
316
317 =over 4
318
319 =item INSTALL_MODE
320
321 Specifies whether installation will be FHS-compliant (default,
322 assumes user has root), put everything under
323 a single directory (for users installing on a web host
324 that allows CGI scripts and a MySQL database but not root 
325 access), or development (for a developer who wants to run
326 Koha from a git clone with no fuss).
327
328 =item INSTALL_BASE
329
330 Directory under which most components will go.  Default
331 value will vary depending on INSTALL_MODE.
332
333 =item DB_TYPE
334
335 Type of DBMS (e.g., mysql or Pg).
336
337 =item DB_HOST
338
339 Name of DBMS server.
340
341 =item DB_PORT
342
343 Port that DBMS server is listening on.
344
345 =item DB_NAME
346
347 Name of the DBMS database for Koha.
348
349 =item DB_USER
350
351 Name of DBMS user account for Koha's database.
352
353 =item DB_PASS
354
355 Pasword of DMBS user account for Koha's database.
356
357 =item INSTALL_ZEBRA
358
359 Whether to install Zebra configuration files and data
360 directories.
361
362 =item ZEBRA_MARC_FORMAT
363
364 Specifies format of MARC records to be indexed by Zebra.
365
366 =item ZEBRA_LANGUAGE
367
368 Specifies primary language of records that will be 
369 indexed by Zebra.
370
371 =item ZEBRA_USER
372
373 Internal Zebra user account for the index.
374
375 =item ZEBRA_PASS
376
377 Internal Zebra user account's password.
378
379 =item KOHA_USER
380
381 System user account that will own Koha's files.
382
383 =item KOHA_GROUP
384
385 System group that will own Koha's files.
386
387 =back
388
389 =cut
390
391 # default configuration options
392 my %config_defaults = (
393   'DB_TYPE'           => 'mysql',
394   'DB_HOST'           => 'localhost',
395   'DB_NAME'           => 'koha',    
396   'DB_USER'           => 'kohaadmin',
397   'DB_PASS'           => 'katikoan',
398   'INSTALL_ZEBRA'     => 'yes',
399   'INSTALL_SRU'       => 'yes',
400   'INSTALL_PAZPAR2'   => 'no',
401   'AUTH_INDEX_MODE'   => 'grs1',
402   'ZEBRA_MARC_FORMAT' => 'marc21',
403   'ZEBRA_LANGUAGE'    => 'en',
404   'ZEBRA_USER'        => 'kohauser',
405   'ZEBRA_PASS'        => 'zebrastripes',
406   'ZEBRA_SRU_HOST'    => 'localhost',
407   'ZEBRA_SRU_BIBLIOS_PORT'    => '9998',
408   'ZEBRA_SRU_AUTHORITIES_PORT'    => '9999',
409   'KOHA_USER'         => 'koha',
410   'KOHA_GROUP'        => 'koha',
411   'MERGE_SERVER_HOST' => 'localhost',
412   'MERGE_SERVER_PORT' => '11001',
413   'PAZPAR2_HOST' => 'localhost',
414   'PAZPAR2_PORT' => '11002',
415   'RUN_DATABASE_TESTS' => 'no',
416   'PATH_TO_ZEBRA' => '',
417   'USE_MEMCACHED'     => 'no',
418   'MEMCACHED_SERVERS' => '127.0.0.1:11211',
419   'MEMCACHED_NAMESPACE' => 'KOHA'
420 );
421
422 # set some default configuration options based on OS
423 # more conditions need to be added for other OS's
424 # this should probably also incorporate usage of Win32::GetOSName() and/or Win32::GetOSVersion()
425 # to allow for more granular decisions based on which Win32 platform
426
427 warn "Your platform appears to be $^O.\n" if $DEBUG;
428
429 if ( $^O eq 'MSWin32' ) {
430         # Most Unix2Win32 ports seem to poke everything into the Program Files directory
431         # this could be changed to put some files (ie. libraries) into system32, etc.
432         $config_defaults{'INSTALL_MODE'} = 'single';
433         $config_defaults{'INSTALL_BASE'} = 'c:/progra~1/koha';  # Use 8.3 names to be safe...
434 }
435 elsif ( $^O eq 'cygwin' ) {
436         # Most Unix2Win32 ports seem to poke everything into the Program Files directory
437         # this could be changed to put some files (ie. libraries) into system32, etc.
438         $config_defaults{'INSTALL_MODE'} = 'single';
439         $config_defaults{'INSTALL_BASE'} = 'c:/progra~1/koha';  # Use 8.3 names to be safe...
440 }
441 else {
442         $config_defaults{'INSTALL_MODE'} = 'standard';
443         $config_defaults{'INSTALL_BASE'} = '/usr/share/koha';
444 }
445
446 # valid values for certain configuration options
447 my %valid_config_values = (
448   'INSTALL_MODE'  => { 'standard' => 1, 'single' => 1, 'dev' => 1 },
449   'DB_TYPE' => { 'mysql' => 1, 'Pg' => 1 },
450   'INSTALL_ZEBRA' => { 'yes' => 1, 'no' => 1 },
451   'INSTALL_SRU' => { 'yes' => 1, 'no' => 1 },
452   'AUTH_INDEX_MODE' => { 'grs1' => 1, 'dom' => 1 },
453   'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation
454   'ZEBRA_LANGUAGE'    => { 'en' => 1, 'fr' => 1 }, # FIXME should generate from contents of distribution
455   'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 },
456   'USE_MEMCACHED'      => { 'yes' => 1, 'no' => 1 },
457 );
458
459 # get settings from command-line
460 my $koha_install_log = "";
461 Getopt::Long::Configure('pass_through');
462 my $results = GetOptions(
463     "prev-install-log=s" => \$koha_install_log
464 );
465
466 my %install_log_values = ();
467 if ($koha_install_log ne "") {
468     get_install_log_values($koha_install_log, \%install_log_values);
469 }
470
471 my %config = get_configuration(\%config_defaults, \%valid_config_values, \%install_log_values);
472 my ($target_directories, $skip_directories) = get_target_directories(\%config);
473 display_configuration(\%config, $target_directories);
474 my $file_map = {};
475 get_file_map($target_map, $dirtree, $file_map, $config{'INSTALL_ZEBRA'} eq "yes" ? 1: 0);
476
477 my $pl_files = {
478       'rewrite-config.PL' => [
479          'blib/KOHA_CONF_DIR/koha-conf.xml',
480          'blib/KOHA_CONF_DIR/koha-httpd.conf',
481          'blib/MISC_DIR/koha-install-log'
482          ],
483           'fix-perl-path.PL' => [       # this script ensures the correct shebang line for the platform installed on...
484                  'blib'
485                  ]
486 };
487
488 if ($config{'INSTALL_ZEBRA'} eq "yes") {
489     push @{ $pl_files->{'rewrite-config.PL'} }, (
490         'blib/ZEBRA_CONF_DIR/etc/passwd',
491         'blib/ZEBRA_CONF_DIR/zebra-biblios.cfg',
492         'blib/ZEBRA_CONF_DIR/zebra-authorities.cfg',
493         'blib/ZEBRA_CONF_DIR/zebra-authorities-dom.cfg',
494         'blib/ZEBRA_CONF_DIR/explain-authorities.xml',
495         'blib/ZEBRA_CONF_DIR/explain-biblios.xml',
496         'blib/ZEBRA_CONF_DIR/retrieval-info-auth-grs1.xml',
497         'blib/ZEBRA_CONF_DIR/retrieval-info-auth-dom.xml',
498     );
499     push @{ $pl_files->{'rewrite-config.PL'} }, (
500         'blib/SCRIPT_DIR/koha-zebra-ctl.sh',
501         'blib/SCRIPT_DIR/koha-pazpar2-ctl.sh',
502         'blib/SCRIPT_DIR/koha-zebraqueue-ctl.sh',
503     );
504     if ($config{'INSTALL_PAZPAR2'} eq 'yes') {
505         push @{ $pl_files->{'rewrite-config.PL'} }, (
506             'blib/PAZPAR2_CONF_DIR/koha-biblios.xml',
507             'blib/PAZPAR2_CONF_DIR/pazpar2.xml'
508         );
509     }
510     $config{'ZEBRA_AUTH_CFG'} = $config{'AUTH_INDEX_MODE'} eq 'dom' ? 'zebra-authorities-dom.cfg' : 'zebra-authorities.cfg';
511     $config{'AUTH_RETRIEVAL_CFG'} = 
512         $config{'AUTH_INDEX_MODE'} eq 'dom' ? 'retrieval-info-auth-dom.xml' : 'retrieval-info-auth-grs1.xml';
513 }
514
515 if ($config{'INSTALL_MODE'} ne "dev") {
516     push @{ $pl_files->{'rewrite-config.PL'} }, (
517         'blib/PERL_MODULE_DIR/C4/Context.pm',
518         'blib/SCRIPT_NONDEV_DIR/kohalib.pl'
519     );
520 }
521
522 my %test_suite_override_dirs = (
523     KOHA_CONF_DIR  => ['etc'],
524     ZEBRA_CONF_DIR => ['etc', 'zebradb'],
525     LOG_DIR        => ['var', 'log'],
526     SCRIPT_DIR     => ['bin'],
527     ZEBRA_LOCK_DIR => ['var', 'lock', 'zebradb'],
528     ZEBRA_DATA_DIR => ['var', 'lib', 'zebradb'],
529     ZEBRA_RUN_DIR  => ['var', 'run', 'zebradb'],
530 );
531  
532 WriteMakefile(
533               NAME         => 'koha',
534               #VERSION     => strftime('2.9.%Y%m%d%H',gmtime),
535               VERSION_FROM => 'kohaversion.pl',
536               ABSTRACT     => 'Award-winning integrated library system (ILS) and Web OPAC',
537               AUTHOR       => 'Koha Developers <koha-devel@nongnu.org>',
538               NO_META      => 1,
539               PREREQ_PM => {
540                             'Algorithm::CheckDigits'           => 0.50,
541                             'Biblio::EndnoteStyle'             => 0.05,
542                             'CGI'                              => 3.15,
543                             'CGI::Carp'                        => 1.29,
544                             'CGI::Session'                     => 4.20,
545                             'CGI::Session::Serialize::yaml'    => 4.20,
546                             'Class::Factory::Util'             => 1.6,
547                             'Class::Accessor'                  => 0.30,
548                             'DBD::mysql'                       => 4.004,
549                             'DBD::SQLite2'                     => 0.33, # optional, used for offline circulation
550                             'DBI'                              => 1.53,
551                             'Data::Dumper'                     => 2.121,
552                             'Data::ICal'                       => 0.13,
553                             'Date::Calc'                       => 5.4,
554                             'Date::ICal'                       => 1.72,
555                             'Date::Manip'                      => 5.44,
556                             'Digest::MD5'                      => 2.36,
557                             'Digest::SHA'                      => 5.43,
558                             'Email::Date'                      => 1.103,
559                             'File::Temp'                       => 0.16,
560                             'GD'                               => 2.39,    #optional
561                             'GD::Barcode::UPCE'                => 1.1,
562                             'Getopt::Long'                     => 2.35,
563                             'Getopt::Std'                      => 1.05,
564                             'HTML::Template::Pro'              => 0.69,
565                             'HTML::Scrubber'                   => 0.08,
566                             'HTTP::Cookies'                    => 1.39,
567                             'HTTP::OAI'                        => 3.20,
568                             'HTTP::Request::Common'            => 1.26,
569                             'IPC::Cmd'                         => 0.46,
570                             'JSON'                             => 2.07, # Needed by admin/item_circulation_alerts.pl
571                             'LWP::Simple'                      => 1.41,
572                             'LWP::UserAgent'                   => 2.033,
573                             'Lingua::Stem'                     => 0.82,
574                             'Lingua::Stem::Snowball'           => 0.952,
575                             'List::Util'                       => 1.18,
576                             'List::MoreUtils'                  => 0.21,
577                             'Locale::Language'                 => 2.07,
578                             'MARC::Charset'                    => 0.98,
579                             'MARC::Crosswalk::DublinCore'      => 0.02,
580                             'MARC::File::XML'                  => 0.88,
581                             'MARC::Record'                     => 2.00,
582                             'MIME::Base64'                     => 3.07,
583                             'MIME::Lite'                       => 3.00,
584                             'MIME::QuotedPrint'                => 3.07,
585                             'Mail::Sendmail'                   => 0.79,
586                             'Memoize::Memcached'               => 0.03, # optional
587                             'Net::LDAP'                        => 0.33, # optional
588                             'Net::LDAP::Filter'                => 0.14, # optional
589                             'Net::Z3950::ZOOM'                 => 1.16,
590                             'Number::Format'                   => 1.52,
591                             'PDF::API2'                        => 2.000,
592                             'PDF::API2::Page'                  => 2.000,
593                             'PDF::API2::Util'                  => 2.000,
594                             'PDF::API2::Simple'                => 1.000,
595                             'PDF::Table'                       => 0.9.3,
596                             'PDF::Reuse'                       => 0.33,
597                             'PDF::Reuse::Barcode'              => 0.05,
598                             'POE'                              => 0.9999,
599                             'POSIX'                            => 1.09,
600                             'Schedule::At'                     => 1.06,
601                             'Storable'                         => 2.21,
602                             'SMS::Send'                        => 0.05, # optional
603                             'Term::ANSIColor'                  => 1.10,
604                             'Test'                             => 1.25,
605                             'Test::Harness'                    => 2.56,
606                             'Test::More'                       => 0.80,
607                             'Text::CSV'                        => 0.01,
608                             'Text::CSV_XS'                     => 0.32,
609                             'Text::Iconv'                      => 1.7,
610                             'Text::Wrap'                       => 2005.082401,
611                             'Time::HiRes'                      => 1.86,
612                             'Time::localtime'                  => 1.02,
613                             'Unicode::Normalize'               => 0.32,
614                             'URI::Escape'                      => 1.36,
615                             'XML::Dumper'                      => 0.81,
616                             'XML::LibXML'                      => 1.59,
617                             'XML::LibXSLT'                     => 1.59,
618                             'XML::SAX::ParserFactory'          => 1.01,
619                             'XML::SAX::Writer'                 => 0.44,
620                             'XML::Simple'                      => 2.14,
621                             'XML::RSS'                         => 1.31,
622                             'YAML::Syck'                       => 0.71,
623                         },
624
625               # File tree mapping
626               PM => $file_map,
627
628               # Man pages generated from POD
629               # ExtUtils::MakeMaker already manage $(DESTDIR)
630               INSTALLMAN1DIR => File::Spec->catdir(_strip_destdir($target_directories->{'MAN_DIR'}), 'man1'),
631               INSTALLMAN3DIR => File::Spec->catdir(_strip_destdir($target_directories->{'MAN_DIR'}), 'man3'),
632
633               PL_FILES => $pl_files,
634 );
635
636 =head1 FUNCTIONS
637
638 =head2 hashdir
639
640 This function recurses through the directory structure and builds
641 a hash of hashes containing the structure with arrays holding filenames.
642 This directory hashing routine was taken from BrowserUK @ http://www.perlmonks.org/?node_id=219919
643
644 =cut
645
646 sub hashdir{
647     my $dir = shift;
648     opendir my $dh, $dir or die $!;
649     my $tree = {}->{$dir} = {};
650     while( my $file = readdir($dh) ) {
651         next if $file =~ m/^\.{1,2}/ and $file !~ /^\.htaccess/; # .htaccess is a special case
652         my $path = $dir .'/' . $file;
653         $tree->{$file} = hashdir($path), next if -d $path;
654         push @{$tree->{'.'}}, $file;
655     }
656     return $tree;
657 }
658
659 =head2 get_file_map 
660
661 This function combines the target_map and file hash to
662 map each source file to its destination relative to
663 the set of installation targets.
664
665 Output will be a hash mapping from each source file
666 to its destination value, like this:
667
668 'mainpage.pl' => '$(INTRANET_CGI_DIR)/mainpage.pl'
669
670 =cut
671
672 sub get_file_map {
673     my $target_map = shift;
674     my $dirtree = shift;
675     my $file_map = shift;
676     my $install_zebra = shift;
677     my $curr_path = @_ ? shift : ['.'];
678
679     # Traverse the directory tree.
680     # For each file or directory, identify the
681     # most specific match in the target_map
682     foreach my $dir (sort keys %{ $dirtree }) {
683         if ($dir eq '.') {
684             # deal with files in directory
685             foreach my $file (sort @{ $dirtree->{$dir} }) {
686                 my $targetdir = undef;
687                 my $matchlevel = undef;
688                 # first, see if there is a match on this specific
689                 # file in the target map
690                 my $filepath = join("/", @$curr_path, $file);
691                 if (exists $target_map->{$filepath}) {
692                     $targetdir = $target_map->{$filepath};
693                     $matchlevel = scalar(@$curr_path) + 1;
694                 } else {
695                     # no match on the specific file; look for
696                     # a directory match
697                     for (my $i = scalar(@$curr_path) - 1; $i >= 0; $i--)  {
698                         my $dirpath = join("/", @$curr_path[0..$i]);
699                         if (exists $target_map->{$dirpath}) {
700                             $targetdir = $target_map->{$dirpath};
701                             $matchlevel = $i + 1;
702                             last;
703                         }
704                     }
705                 }
706                 if (defined $targetdir) {
707                      _add_to_file_map($file_map, $targetdir, $curr_path, $file, $matchlevel, $install_zebra);
708                 } else {
709                     my $path = join("/", @$curr_path);
710                     print "failed to map: $path/$file\n" if $DEBUG;
711                 }
712             }
713         } else {
714             # dealing with subdirectory
715             push @$curr_path, $dir;
716             get_file_map($target_map, $dirtree->{$dir}, $file_map, $install_zebra, $curr_path);
717             pop @$curr_path;
718         }
719     }
720 }
721
722 sub _add_to_file_map {
723     my $file_map = shift;
724     my $targetdir = shift;
725     my $curr_path = shift;
726     my $file = shift;
727     my $matchlevel = shift;
728     my $install_zebra = shift;
729     my $dest_path = @_ ? shift : $curr_path;
730
731     # The target can be one of the following:
732     # 1. scalar representing target symbol
733     # 2. hash ref containing target and trimdir keys
734     #
735     # Consequently, this routine traverses this structure,
736     # calling itself recursively, until it deals with
737     # all of the scalar target symbols.
738     if (ref $targetdir eq 'HASH') {
739         my $subtarget = $targetdir->{target};
740         if (exists $targetdir->{trimdir}) {
741             # if we get here, we've specified that
742             # rather than installing the file to
743             # $(TARGET)/matching/dirs/subdirs/file,
744             # we want to install it to
745             # $(TARGET)/subdirs/file
746             #
747             # Note that this the only place where
748             # $matchlevel is used.
749             my @new_dest_path = @$dest_path;
750             if ($targetdir->{trimdir} == -1)  {
751                 splice @new_dest_path, 0, $matchlevel;
752             } else {
753                 splice @new_dest_path, 0, $targetdir->{trimdir};
754             }
755             _add_to_file_map($file_map, $subtarget, $curr_path, $file, $matchlevel, $install_zebra, \@new_dest_path);
756         } else {
757             # actually getting here means that the
758             # target was unnecessarily listed
759             # as a hash, but we'll forgive that
760             _add_to_file_map($file_map, $subtarget, $curr_path, $file, $matchlevel, $install_zebra);
761         }
762     } elsif ($targetdir ne 'NONE' and $targetdir ne '') {
763         my $source = File::Spec->catfile(@$curr_path, $file);
764         my $destination = File::Spec->catfile('blib', $targetdir, @$dest_path, $file);
765         #print "$source => $destination\n"; # DEBUG
766         # quote spaces in file names
767         # FIXME: this is of questionable portability and
768         # probably depends on user's make recognizing this
769         # quoting syntax -- probably better to remove
770         # spaces and shell metacharacters from all file names
771         $source =~ s/ /\\ /g;
772         $destination =~ s/ /\\ /g;
773       
774         $file_map->{$source} = $destination unless (!$install_zebra and $targetdir =~ /ZEBRA/);
775     }
776 }
777
778 =head2 get_install_log_values
779
780 Reads value from the Koha install log specified by
781 --prev-install-log
782
783 =cut
784
785 sub get_install_log_values {
786     my $install_log = shift;
787     my $values = shift;
788     
789     open LOG, "<$install_log" or die "Cannot open install log $install_log: $!\n";
790     while (<LOG>) {
791         chomp;
792         next if /^#/ or /^\s*$/;
793         next if /^=/;
794         next unless m/=/;
795         s/\s+$//g;
796         my ($key, $value) = split /=/, $_, 2;
797         $values->{$key} = $value;
798     }
799     close LOG;
800
801     print <<_EXPLAIN_INSTALL_LOG_;
802 Reading values from install log $install_log.  You
803 will be prompted only for settings that have been
804 added since the last time you installed Koha.  To
805 be prompted for all settings, run 'perl Makefile.PL'
806 without the --prev-install-log option.
807 _EXPLAIN_INSTALL_LOG_
808 }
809
810 =head2 get_configuration
811
812 This prompts the user for various configuration options.
813
814 =cut
815
816 sub get_configuration {
817   my $defaults = shift;
818   my $valid_values = shift;
819   my $install_log_values = shift;
820   my %config = ();
821
822   my $msg = q(
823 By default, Koha can be installed in one of three ways:
824
825 standard: Install files in conformance with the Filesystem
826           Hierarchy Standard (FHS).  This is the default mode
827           and should be used when installing a production
828           Koha system.  On Unix systems, root access is 
829           needed to complete a standard installation.
830
831 single:   Install files under a single directory.  This option
832           is useful for installing Koha without root access, e.g.,
833           on a web host that allows CGI scripts and MySQL databases
834           but requires the user to keep all files under the user's
835           HOME directory.
836
837 dev:      Create a set of symbolic links and configuration files to
838           allow Koha to run directly from the source distribution.
839           This mode is useful for developers who want to run
840           Koha from a git clone.
841
842 Installation mode);
843     $msg .= _add_valid_values_disp('INSTALL_MODE', $valid_values);
844     $config{'INSTALL_MODE'} = _get_value('INSTALL_MODE', $msg, $defaults->{'INSTALL_MODE'}, $valid_values, $install_log_values);
845
846     # set message and default value for INSTALL_BASE
847     # depending on value of INSTALL_MODE
848     my $install_base_default = $defaults->{'INSTALL_BASE'};
849     if ($config{'INSTALL_MODE'} eq 'dev') {
850         $msg = q(
851 Please specify the directory in which to install Koha's
852 active configuration files and (if applicable) the
853 Zebra database.  Koha's CGI scripts and templates will
854 be run from the current directory.
855
856 Configuration directory:);
857         # FIXME - home directory portability consideration apply
858         $install_base_default = 
859             $ENV{DESTDIR}
860             || ( exists $ENV{HOME} ? "$ENV{HOME}/koha-dev" : "$defaults->{'INSTALL_BASE'}-dev" ) 
861         ;
862     } elsif ($config{'INSTALL_MODE'} eq 'single') {
863         $msg = "\nPlease specify the directory in which to install Koha";
864         # FIXME -- we're assuming under a 'single' mode install
865         # that user will likely want to install under the home
866         # directory.  This is OK in and of itself, but we should
867         # use File::HomeDir to locate the home directory portably.  
868         # This is deferred for now because File::HomeDir is not yet
869         # core.
870                 # --we must also keep this portable to the major OS's -fbcit
871         $install_base_default = (exists $ENV{'HOME'}) ? "$ENV{'HOME'}/koha" : $defaults->{'INSTALL_BASE'};
872     } else {
873         # must be standard
874         $msg = q(
875 Please specify the directory under which most Koha files 
876 will be installed.
877
878 Note that if you are planning in installing more than 
879 one instance of Koha, you may want to modify the last
880 component of the directory path, which will be used
881 as the package name in the FHS layout.
882
883 Base installation directory);
884     }
885     $config{'INSTALL_BASE'} = _get_value('INSTALL_BASE', $msg, $install_base_default, $valid_values, $install_log_values);
886
887     $config{'INSTALL_BASE'} = File::Spec->rel2abs($config{'INSTALL_BASE'});
888         print "INSTALL_BASE=$config{'INSTALL_BASE'}\r\n" if $DEBUG;
889     if ($config{'INSTALL_MODE'} eq "standard") {
890         $msg = q(
891 Since you are using the 'standard' install
892 mode, you should run 'make install' as root.
893 However, it is recommended that a non-root
894 user (on Unix and Linux platforms) have 
895 ownership of Koha's files, including the
896 Zebra indexes if applicable.
897
898 Please specify a user account.  This
899 user account does not need to exist
900 right now, but it needs to exist
901 before you run 'make install'.  Please
902 note that for security reasons, this
903 user should not be the same as the user
904 account Apache runs under.
905
906 User account);
907         $config{'KOHA_USER'} = _get_value('KOHA_USER', $msg, $defaults->{'KOHA_USER'}, $valid_values, $install_log_values);
908
909         $msg = q(
910 Please specify the group that should own
911 Koha's files.  As above, this group need
912 not exist right now, but should be created
913 before you run 'make install'.
914
915 Group);
916         $config{'KOHA_GROUP'} = _get_value('KOHA_GROUP', $msg, $defaults->{'KOHA_GROUP'}, $valid_values, $install_log_values);
917     }
918
919     $msg = q(
920 Please specify which database engine you will use
921 to store data in Koha.  The choices are MySQL and
922 PostgreSQL; please note that at the moment
923 PostgreSQL support is highly experimental.
924
925 DBMS to use);
926     $msg .= _add_valid_values_disp('DB_TYPE', $valid_values);
927     $config{'DB_TYPE'} = _get_value('DB_TYPE', $msg, $defaults->{'DB_TYPE'}, $valid_values, $install_log_values);
928
929     $msg = q(
930 Please specify the name or address of your 
931 database server.  Note that the database 
932 does not have to exist at this point, it
933 can be created after running 'make install'
934 and before you try using Koha for the first time.
935
936 Database server);
937     $config{'DB_HOST'} = _get_value('DB_HOST', $msg, $defaults->{'DB_HOST'}, $valid_values, $install_log_values);
938
939     $msg = q(
940 Please specify the port used to connect to the
941 DMBS);
942     my $db_port_default = $config{'DB_TYPE'} eq 'mysql' ? '3306' : '5432';
943     $config{'DB_PORT'} = _get_value('DB_PORT', $msg, $db_port_default, $valid_values, $install_log_values);
944
945     $msg = q(
946 Please specify the name of the database to be
947 used by Koha);
948     $config{'DB_NAME'} = _get_value('DB_NAME', $msg, $defaults->{'DB_NAME'}, $valid_values, $install_log_values);
949
950     $msg = q(
951 Please specify the user that owns the database to be
952 used by Koha);
953     $config{'DB_USER'} = _get_value('DB_USER', $msg, $defaults->{'DB_USER'}, $valid_values, $install_log_values);
954
955     $msg = q(
956 Please specify the password of the user that owns the 
957 database to be used by Koha);
958     $config{'DB_PASS'} = _get_value('DB_PASS', $msg, $defaults->{'DB_PASS'}, $valid_values, $install_log_values);
959
960     $msg = q(
961 Koha can use the Zebra search engine for high-performance
962 searching of bibliographic and authority records.  If you
963 have installed the Zebra software and would like to use it,
964 please answer 'yes' to the following question.  Otherwise, 
965 Koha will default to using its internal search engine.
966
967 Please note that if you choose *NOT* to install Zebra,
968 koha-conf.xml will still contain some references to Zebra
969 settings.  Those references will be ignored by Koha.
970
971 Install the Zebra configuration files?);
972     $msg .= _add_valid_values_disp('INSTALL_ZEBRA', $valid_values);
973     $config{'INSTALL_ZEBRA'} = _get_value('INSTALL_ZEBRA', $msg, $defaults->{'INSTALL_ZEBRA'}, $valid_values, $install_log_values);
974
975     if ($config{'INSTALL_ZEBRA'} eq 'yes') {
976
977         if (defined(my $zebra_path = find_zebra())) {
978             $config{'PATH_TO_ZEBRA'} = $zebra_path;
979             print qq(
980 Found 'zebrasrv' and 'zebraidx' in $zebra_path.
981 );
982         } else {
983             print q(
984 Unable to find the Zebra programs 'zebrasrv' and 'zebraidx'
985 in your PATH or in some of the usual places.  If you haven't
986 installed Zebra yet, please do so and run Makefile.PL again.
987
988 );
989         }
990
991         $msg = q(
992 Since you've chosen to use Zebra with Koha,
993 you must specify the primary MARC format of the
994 records to be indexed by Zebra.
995
996 Koha provides Zebra configuration files for MARC 21
997 and UNIMARC.
998
999 MARC format for Zebra indexing);
1000         $msg .= _add_valid_values_disp('ZEBRA_MARC_FORMAT', $valid_values);
1001         $config{'ZEBRA_MARC_FORMAT'} = _get_value('ZEBRA_MARC_FORMAT', $msg, $defaults->{'ZEBRA_MARC_FORMAT'}, $valid_values, $install_log_values);
1002         $msg = q(
1003 Koha supplies Zebra configuration files tuned for
1004 searching either English (en) or French (fr) MARC
1005 records.
1006
1007 Primary language for Zebra indexing);
1008         $msg .= _add_valid_values_disp('ZEBRA_LANGUAGE', $valid_values);
1009         $config{'ZEBRA_LANGUAGE'} = _get_value('ZEBRA_LANGUAGE', $msg, $defaults->{'ZEBRA_LANGUAGE'}, $valid_values, $install_log_values);
1010    
1011         $msg = q(
1012 Koha can use one of  two different indexing modes 
1013 for the MARC authorities records:
1014
1015 grs1 - uses the Zebra GRS-1 filter, available 
1016        for legacy support
1017 dom  - uses the DOM XML filter; offers improved
1018        functionality.
1019
1020 Authorities indexing mode);
1021         $msg .= _add_valid_values_disp('AUTH_INDEX_MODE', $valid_values);
1022         $config{'AUTH_INDEX_MODE'} = _get_value('AUTH_INDEX_MODE', $msg, $defaults->{'AUTH_INDEX_MODE'}, $valid_values, $install_log_values);
1023        
1024         $msg = q(
1025 Please specify Zebra database user);
1026         $config{'ZEBRA_USER'} = _get_value('ZEBRA_USER', $msg, $defaults->{'ZEBRA_USER'}, $valid_values, $install_log_values);
1027
1028         $msg = q(
1029 Please specify the Zebra database password);
1030         $config{'ZEBRA_PASS'} = _get_value('ZEBRA_PASS', $msg, $defaults->{'ZEBRA_PASS'}, $valid_values, $install_log_values);
1031
1032         $msg = q(
1033 Since you've chosen to use Zebra, you can enable the SRU/
1034 Z39.50 Server if you so choose, but you must specify a
1035 few configuration options for it.
1036
1037 Please note that if you choose *NOT* to configure SRU,
1038 koha-conf.xml will still contain some references to SRU
1039 settings.  Those references will be ignored by Koha.
1040
1041 Install the SRU configuration files?);
1042         $msg .= _add_valid_values_disp('INSTALL_SRU', $valid_values);
1043         $config{'INSTALL_SRU'} = _get_value('INSTALL_SRU', $msg, $defaults->{'INSTALL_SRU'}, $valid_values, $install_log_values);
1044
1045         if ($config{'INSTALL_SRU'} eq 'yes') {
1046             $msg = q(
1047 Since you've chosen to configure SRU, you must
1048 specify the host and port(s) that the SRU
1049 Servers (bibliographic and authority) should run on.
1050 );
1051             $msg = q(
1052 SRU Database host?);
1053             $config{'ZEBRA_SRU_HOST'} = _get_value('ZEBRA_SRU_HOST', $msg, $defaults->{'ZEBRA_SRU_HOST'}, $valid_values, $install_log_values);
1054
1055             $msg = q(
1056 SRU port for bibliographic data?);
1057             $config{'ZEBRA_SRU_BIBLIOS_PORT'} = _get_value('ZEBRA_SRU_BIBLIOS_PORT', $msg, $defaults->{'ZEBRA_SRU_BIBLIOS_PORT'}, $valid_values, $install_log_values);
1058
1059             $msg = q(
1060 SRU port for authority data?);
1061             $config{'ZEBRA_SRU_AUTHORITIES_PORT'} = _get_value('ZEBRA_SRU_AUTHORITIES_PORT', $msg, $defaults->{'ZEBRA_SRU_AUTHORITIES_PORT'}, $valid_values, $install_log_values);
1062
1063         }
1064
1065         $msg = q(
1066 Since you've chosen to use Zebra, you can also choose to
1067 install PazPar2, which is a metasearch tool.  With PazPar2,
1068 Koha can perform on-the-fly merging of bibliographic
1069 records during searching, allowing for FRBRization of
1070 the results list.
1071
1072 Install the PazPar2 configuration files?);
1073         $msg .= _add_valid_values_disp('INSTALL_PAZPAR2', $valid_values);
1074         $config{'INSTALL_PAZPAR2'} = _get_value('INSTALL_PAZPAR2', $msg, $defaults->{'INSTALL_PAZPAR2'}, $valid_values, $install_log_values);
1075
1076         if ($config{'INSTALL_PAZPAR2'} eq 'yes') {
1077             $msg = q(
1078 Since you've chosen to configure PazPar2, you must
1079 specify the host and port(s) that PazPar2
1080 uses:
1081 );
1082             $msg = q(
1083 Zebra bibliographic server host?);
1084             $config{'MERGE_SERVER_HOST'} = _get_value('MERGE_SERVER_HOST', $msg, $defaults->{'MERGE_SERVER_HOST'}, $valid_values, $install_log_values);
1085
1086             $msg = q(
1087 Zebra bibliographic port for PazPar2 to use?);
1088             $config{'MERGE_SERVER_PORT'} = _get_value('MERGE_SERVER_PORT', $msg, $defaults->{'MERGE_SERVER_PORT'}, $valid_values, $install_log_values);
1089
1090             $msg = q(
1091 PazPar2 host?);
1092             $config{'PAZPAR2_HOST'} = _get_value('PAZPAR2_HOST', $msg, $defaults->{'PAZPAR2_HOST'}, $valid_values, $install_log_values);
1093
1094             $msg = q(
1095 PazPar2 port?);
1096             $config{'PAZPAR2_PORT'} = _get_value('PAZPAR2_PORT', $msg, $defaults->{'PAZPAR2_PORT'}, $valid_values, $install_log_values);
1097
1098         }
1099     }
1100   $msg = q(
1101 Use memcached and memoize to cache the results of some function calls? 
1102 This provides a signficant performance improvement. 
1103 You will need a Memcached server running.);
1104   $msg .= _add_valid_values_disp('USE_MEMCACHED', $valid_values);
1105   $config{'USE_MEMCACHED'} = _get_value('USE_MEMCACHED', $msg, $defaults->{'USE_MEMCACHED'}, $valid_values, $install_log_values);
1106   if ($config{'USE_MEMCACHED'} eq 'yes'){
1107       $msg = q(
1108 Since you've chosen to use caching, you must specify the memcached servers and the namespace to use:
1109 );
1110       $msg = q(
1111 Memcached server address?);
1112       $config{'MEMCACHED_SERVERS'} = _get_value('MEMCACHED_SERVERS', $msg, $defaults->{'MEMCACHED_SERVERS'}, $valid_values, $install_log_values);
1113        
1114       $msg = q(
1115 Memcached namespace?);
1116       $config{'MEMCACHED_NAMESPACE'} = _get_value('MEMCACHED_NAMESPACE', $msg, $defaults->{'MEMCACHED_NAMESPACE'}, $valid_values, $install_log_values);
1117   }
1118
1119
1120
1121   $msg = q(
1122 Would you like to run the database-dependent test suite?);
1123   $msg .= _add_valid_values_disp( 'RUN_DATABASE_TESTS', $valid_values );
1124     $config{'RUN_DATABASE_TESTS'} = _get_value( 'RUN_DATABASE_TESTS', $msg, $defaults->{'RUN_DATABASE_TESTS'}, $valid_values, $install_log_values );
1125
1126   if ( $config{'RUN_DATABASE_TESTS'} eq 'yes' ) {
1127       $config{'TEST_DB_TYPE'} = $config{'DB_TYPE'};
1128       $config{'TEST_DB_HOST'} = $config{'DB_HOST'};
1129       $msg = q(TEST DATABASE
1130
1131 THE DATA IN THIS DATABASE WILL BE DESTROYED during the process of
1132 testing. Please don't do this on your production database. It is not
1133 reversable.
1134
1135 YOU WILL SUFFER DATA LOSS if you run this test suite on your test
1136 database. You are better off not running this optional test suite than
1137 doing it in a database that you don't want to lose.
1138
1139 Please specify the name of the test database to be
1140 used by Koha);
1141       
1142       $config{'TEST_DB_NAME'} = _get_value('TEST_DB_NAME', $msg, $defaults->{'TEST_DB_NAME'}, $valid_values, $install_log_values);
1143       while ( $config{'TEST_DB_NAME'} eq $config{'DB_NAME'} ) {
1144           $msg = q(Please do not use the same database for testing as you do for production. You run the severe risk of data loss.);
1145           $config{'TEST_DB_NAME'} = _get_value('TEST_DB_NAME', $msg, $defaults->{'TEST_DB_NAME'}, $valid_values, $install_log_values);
1146       }
1147
1148       $msg = q(
1149 Please specify the user that owns the database to be
1150 used by Koha);
1151     $config{'TEST_DB_USER'} = _get_value('TEST_DB_USER', $msg, $defaults->{'TEST_DB_USER'}, $valid_values, $install_log_values);
1152       
1153       $msg = q(
1154 Please specify the password of the user that owns the 
1155 database to be used by Koha);
1156       $config{'TEST_DB_PASS'} = _get_value('TEST_DB_PASS', $msg, $defaults->{'TEST_DB_PASS'}, $valid_values, $install_log_values);
1157   }
1158
1159     print "\n\n";
1160
1161     # add version number
1162     my $version = "no_version_found";
1163     eval {
1164         require 'kohaversion.pl';
1165         $version = kohaversion();
1166     };
1167     $config{'KOHA_INSTALLED_VERSION'} = $version;
1168
1169     return %config;
1170 }
1171
1172 sub _add_valid_values_disp {
1173     my $key = shift;
1174     my $valid_values = shift;
1175    
1176     my $disp = "";
1177     if (exists $valid_values->{$key}) {
1178         $disp = " (" . join(", ", sort keys %{ $valid_values->{$key} }) . ")";
1179     }
1180     return $disp;
1181 }
1182
1183 sub _get_value {
1184     my $key = shift;
1185     my $msg = shift;
1186     my $default = shift;
1187     my $valid_values = shift;
1188     my $install_log_values = shift;
1189
1190     # take value from install log if present
1191     if (exists $install_log_values{$key}) {
1192         return $install_log_values{$key};
1193     }
1194
1195     # override default value from environment
1196     if (exists $ENV{$key}) {
1197         $default = $ENV{$key};
1198         $msg .= " (default from environment)";
1199     }
1200
1201     my $val = prompt($msg, $default);
1202
1203     while (exists $valid_values->{$key} and 
1204            $val ne $default and
1205            not exists $valid_values->{$key}->{$val}) {
1206         my $retry_msg = "Value '$val' is not a valid option.\n";
1207         $retry_msg .= "Please enter a value";
1208         $retry_msg .= _add_valid_values_disp($key, $valid_values);
1209         $val = prompt($retry_msg, $default);
1210     }
1211     return $val;
1212 }
1213
1214 =head2 get_target_directories 
1215
1216 Creates a hash mapping from symbols for installation target
1217 directories to actual directory paths.
1218
1219 Also returns a hash indicating targets for which 
1220 files need not be copied -- this is used for the 'dev'
1221 mode installation, where some files are installed in place.
1222
1223 =cut
1224
1225 sub get_target_directories {
1226     my $config = shift;
1227
1228     my $base = $config->{'INSTALL_BASE'};
1229     my $mode = $config->{'INSTALL_MODE'};
1230
1231     # get last component of install base directory
1232     # to treat as package name
1233     my ($volume, $directories, $file) = File::Spec->splitpath($base, 1);
1234
1235     my @basedir = File::Spec->splitdir($directories);
1236
1237         # for Win32 we need to prepend the volume to the directory path
1238         if ( $^O eq 'MSWin32' ) { shift @basedir; unshift @basedir, $volume; }
1239         elsif ( $^O eq 'cygwin' ) { shift @basedir; unshift @basedir, 'c:'; }   # in a cygwin environment, $volume is returned empty
1240
1241     my $package = pop @basedir;
1242
1243
1244     my %dirmap = ();
1245     my %skipdirs = ();
1246     if ($mode eq 'single') {
1247         $dirmap{'INTRANET_CGI_DIR'} = File::Spec->catdir(@basedir, $package, 'intranet', 'cgi-bin');
1248         $dirmap{'INTRANET_TMPL_DIR'} = File::Spec->catdir(@basedir, $package, 'intranet', 'htdocs', 'intranet-tmpl');
1249         $dirmap{'INTRANET_WWW_DIR'} = File::Spec->catdir(@basedir, $package, 'intranet', 'htdocs');
1250         $dirmap{'OPAC_CGI_DIR'} = File::Spec->catdir(@basedir, $package, 'opac', 'cgi-bin');
1251         $dirmap{'OPAC_TMPL_DIR'} = File::Spec->catdir(@basedir, $package, 'opac', 'htdocs', 'opac-tmpl');
1252         $dirmap{'OPAC_WWW_DIR'} = File::Spec->catdir(@basedir, $package, 'opac', 'htdocs');
1253         $dirmap{'PERL_MODULE_DIR'} = File::Spec->catdir(@basedir, $package, 'lib');
1254         $dirmap{'KOHA_CONF_DIR'} = File::Spec->catdir(@basedir, $package, 'etc');
1255         $dirmap{'ZEBRA_CONF_DIR'} = File::Spec->catdir(@basedir, $package, 'etc', 'zebradb');
1256         $dirmap{'PAZPAR2_CONF_DIR'} = File::Spec->catdir(@basedir, $package, 'etc', 'pazpar2');
1257         $dirmap{'MISC_DIR'} = File::Spec->catdir(@basedir, $package, 'misc');
1258         $dirmap{'SCRIPT_DIR'} = File::Spec->catdir(@basedir, $package, 'bin');
1259         $dirmap{'SCRIPT_NONDEV_DIR'} = $dirmap{'SCRIPT_DIR'};
1260         $dirmap{'MAN_DIR'} = File::Spec->catdir(@basedir, $package, 'man');
1261         $dirmap{'DOC_DIR'} = File::Spec->catdir(@basedir, $package, 'doc');
1262         $dirmap{'ZEBRA_LOCK_DIR'} = File::Spec->catdir(@basedir, $package, 'var', 'lock', 'zebradb');
1263         $dirmap{'LOG_DIR'} =  File::Spec->catdir(@basedir, $package, 'var', 'log');
1264         $dirmap{'ZEBRA_DATA_DIR'} =  File::Spec->catdir(@basedir, $package, 'var', 'lib', 'zebradb');
1265         $dirmap{'ZEBRA_RUN_DIR'} =  File::Spec->catdir(@basedir, $package, 'var', 'run', 'zebradb');
1266     } elsif ($mode eq 'dev') {
1267         my $curdir = File::Spec->rel2abs(File::Spec->curdir());
1268         $dirmap{'INTRANET_CGI_DIR'} = File::Spec->catdir($curdir);
1269         $skipdirs{'INTRANET_CGI_DIR'} = 1;
1270         $dirmap{'INTRANET_TMPL_DIR'} = File::Spec->catdir($curdir, 'koha-tmpl', 'intranet-tmpl');
1271         $skipdirs{'INTRANET_TMPL_DIR'} = 1;
1272         $dirmap{'INTRANET_WWW_DIR'} = File::Spec->catdir($curdir, 'koha-tmpl');
1273         $skipdirs{'INTRANET_WWW_DIR'} = 1;
1274         $dirmap{'OPAC_CGI_DIR'} = File::Spec->catdir($curdir);
1275         $skipdirs{'OPAC_CGI_DIR'} = 1;
1276         $dirmap{'OPAC_TMPL_DIR'} = File::Spec->catdir($curdir, 'koha-tmpl', 'opac-tmpl');
1277         $skipdirs{'OPAC_TMPL_DIR'} = 1;
1278         $dirmap{'OPAC_WWW_DIR'} = File::Spec->catdir($curdir, 'koha-tmpl');
1279         $skipdirs{'OPAC_WWW_DIR'} = 1;
1280         $dirmap{'PERL_MODULE_DIR'} = File::Spec->catdir($curdir);
1281         $skipdirs{'PERL_MODULE_DIR'} = 1;
1282         $dirmap{'KOHA_CONF_DIR'} = File::Spec->catdir(@basedir, $package, 'etc');
1283         $dirmap{'ZEBRA_CONF_DIR'} = File::Spec->catdir(@basedir, $package, 'etc', 'zebradb');
1284         $dirmap{'PAZPAR2_CONF_DIR'} = File::Spec->catdir(@basedir, $package, 'etc', 'pazpar2');
1285         $dirmap{'MISC_DIR'} = File::Spec->catdir(@basedir, $package, 'misc');
1286         $dirmap{'SCRIPT_DIR'} = File::Spec->catdir(@basedir, $package, 'bin');
1287         $dirmap{'SCRIPT_NONDEV_DIR'} = $dirmap{'SCRIPT_DIR'};
1288         $skipdirs{'SCRIPT_NONDEV_DIR'} = 1;
1289         $dirmap{'MAN_DIR'} = File::Spec->catdir(@basedir, $package, 'man');
1290         $dirmap{'DOC_DIR'} = File::Spec->catdir(@basedir, $package, 'doc');
1291         $dirmap{'ZEBRA_LOCK_DIR'} = File::Spec->catdir(@basedir, $package, 'var', 'lock', 'zebradb');
1292         $dirmap{'LOG_DIR'} =  File::Spec->catdir(@basedir, $package, 'var', 'log');
1293         $dirmap{'ZEBRA_DATA_DIR'} =  File::Spec->catdir(@basedir, $package, 'var', 'lib', 'zebradb');
1294         $dirmap{'ZEBRA_RUN_DIR'} =  File::Spec->catdir(@basedir, $package, 'var', 'run', 'zebradb');
1295     } else {
1296         # mode is standard, i.e., 'fhs'
1297         $dirmap{'INTRANET_CGI_DIR'} = File::Spec->catdir(@basedir, $package, 'intranet', 'cgi-bin');
1298         $dirmap{'INTRANET_TMPL_DIR'} = File::Spec->catdir(@basedir, $package, 'intranet', 'htdocs', 'intranet-tmpl');
1299         $dirmap{'INTRANET_WWW_DIR'} = File::Spec->catdir(@basedir, $package, 'intranet', 'htdocs');
1300         $dirmap{'OPAC_CGI_DIR'} = File::Spec->catdir(@basedir, $package, 'opac', 'cgi-bin');
1301         $dirmap{'OPAC_TMPL_DIR'} = File::Spec->catdir(@basedir, $package, 'opac', 'htdocs', 'opac-tmpl');
1302         $dirmap{'OPAC_WWW_DIR'} = File::Spec->catdir(@basedir, $package, 'opac', 'htdocs');
1303         $dirmap{'PERL_MODULE_DIR'} = File::Spec->catdir(@basedir, $package, 'lib');
1304         $dirmap{'KOHA_CONF_DIR'} = File::Spec->catdir(File::Spec->rootdir(), 'etc', $package);
1305         $dirmap{'ZEBRA_CONF_DIR'} = File::Spec->catdir(File::Spec->rootdir(), 'etc', $package, 'zebradb');
1306         $dirmap{'PAZPAR2_CONF_DIR'} = File::Spec->catdir(File::Spec->rootdir(), 'etc', $package, 'pazpar2');
1307         $dirmap{'MISC_DIR'} = File::Spec->catdir(@basedir, $package, 'misc');
1308         $dirmap{'SCRIPT_DIR'} = File::Spec->catdir(@basedir, $package, 'bin');
1309         $dirmap{'SCRIPT_NONDEV_DIR'} = $dirmap{'SCRIPT_DIR'};
1310         $dirmap{'MAN_DIR'} = File::Spec->catdir(@basedir, $package, 'man');
1311         $dirmap{'DOC_DIR'} = File::Spec->catdir(@basedir, $package, 'doc');
1312         $dirmap{'ZEBRA_LOCK_DIR'} = File::Spec->catdir(File::Spec->rootdir(), 'var', 'lock', $package, 'zebradb');
1313         $dirmap{'LOG_DIR'} =  File::Spec->catdir(File::Spec->rootdir(), 'var', 'log', $package);
1314         $dirmap{'ZEBRA_DATA_DIR'} =  File::Spec->catdir(File::Spec->rootdir(), 'var', 'lib', $package, 'zebradb');
1315         $dirmap{'ZEBRA_RUN_DIR'} =  File::Spec->catdir(File::Spec->rootdir(), 'var', 'run', $package, 'zebradb');
1316     }
1317
1318     _get_env_overrides(\%dirmap);
1319     _get_argv_overrides(\%dirmap);
1320     _add_destdir(\%dirmap) unless ($^O eq 'MSWin32');
1321
1322     return \%dirmap, \%skipdirs;
1323 }
1324
1325 =head2 get_test_dir 
1326
1327 Map a directory target to the corresponding path for
1328 the test suite.
1329
1330 =cut
1331
1332 sub get_test_dir {
1333     my ($dirname) = @_;
1334   
1335     my @basedir = (File::Spec->rel2abs(File::Spec->curdir()), 't', 'run'); 
1336     if (exists $test_suite_override_dirs{$dirname}) {
1337         return File::Spec->catdir(@basedir, @{ $test_suite_override_dirs{$dirname} });
1338     } else {
1339         return;
1340     }
1341     
1342 }
1343
1344 sub _get_env_overrides {
1345     my $dirmap = shift;
1346
1347     foreach my $key (keys %$dirmap) {
1348         if (exists $ENV{$key}) {
1349             $dirmap->{$key} = $ENV{$key};
1350             print "Setting $key from environment\n";
1351         }
1352     }
1353 }
1354
1355 sub _get_argv_overrides {
1356     my $dirmap = shift;
1357     
1358     my @new_argv = ();
1359     for (my $i = 0; $i <= $#ARGV; $i++) {
1360         if ($ARGV[$i] =~ /^([^=]+)=([^=]+)$/ and exists $dirmap->{$1}) {
1361             $dirmap->{$1} = $2;
1362         } else {
1363             push @new_argv, $ARGV[$i];
1364         }
1365     }
1366     @ARGV = @new_argv;
1367 }
1368
1369 sub _strip_destdir {
1370     my $dir = shift;
1371     $dir =~ s/^\$\(DESTDIR\)//;
1372     return $dir;
1373 }
1374
1375 sub _add_destdir {
1376     my $dirmap = shift;
1377
1378     foreach my $key (keys %$dirmap) {
1379         $dirmap->{$key} = '$(DESTDIR)'.$dirmap->{$key};
1380     }
1381 }
1382
1383 sub display_configuration {
1384     my $config = shift;
1385     my $dirmap = shift;
1386     print "\n\nKoha will be installed with the following configuration parameters:\n\n";
1387     foreach my $key (sort keys %$config) {
1388         print sprintf("%-25.25s%s\n", $key, $config->{$key});
1389     }
1390
1391     print "\nand in the following directories:\n\n";
1392     foreach my $key (sort keys %$dirmap) {
1393         print sprintf("%-25.25s%s\n", $key, $dirmap->{$key});
1394     }
1395     print "\n\nTo change any configuration setting, please run\n";
1396     print "perl Makefile.PL again.  To override one of the target\n";
1397     print "directories, you can do so on the command line like this:\n";
1398     print "\nperl Makefile.PL PERL_MODULE_DIR=/usr/share/perl/5.8\n\n";
1399     print "You can also set different default values for parameters\n";
1400     print "or override directory locations by using environment variables.\n";
1401     print "\nFor example:\n\n";
1402     print "export DB_USER=my_koha\n";
1403     print "perl Makefile.PL\n";
1404     print "\nor\n\n";
1405     print "DB_USER=my_koha DOC_DIR=/usr/local/info perl Makefile.PL\n\n";
1406     print "If installing on a Win32 platform, be sure to use:\n";
1407     print "'dmake -x MAXLINELENGTH=300000'\n\n";
1408 }
1409
1410 =head2 find_zebra
1411
1412 Attempt to find Zebra - check user's PATH and
1413 a few other directories for zebrasrv and zebraidx.
1414
1415 FIXME: doesn't handle Win32
1416
1417 =cut
1418
1419 sub find_zebra {
1420     my @search_dirs = map {
1421                             my $abs = File::Spec->rel2abs($_);
1422                             my ($toss, $directories);
1423                             ($toss, $directories, $toss) = File::Spec->splitpath($abs, 1);
1424                             $directories;
1425                         }  split /:/, $ENV{PATH};
1426     push @search_dirs, qw(/usr/local/bin /opt/local/bin /usr/bin);
1427     my @zebrasrv_dirs = grep { -x File::Spec->catpath('', $_, 'zebrasrv') } @search_dirs;
1428     return unless @zebrasrv_dirs;
1429     # verify that directory that contains zebrasrv also contains zebraidx
1430     foreach my $dir (@zebrasrv_dirs) {
1431         return $dir if -x File::Spec->catpath('', $dir, 'zebraidx');
1432     }
1433     return;
1434 }
1435
1436 package MY;
1437
1438 # This will have to be reworked in order to accommodate Win32...
1439
1440 sub test {
1441     my $self = shift;
1442     my $test = $self->SUPER::test(@_);
1443     $test =~ s!\$\(INST_LIB\)!blib/PERL_MODULE_DIR!g;
1444
1445     # set KOHA_CONF 
1446     $test =~ s!\$\(FULLPERLRUN\)!KOHA_CONF=blib/KOHA_CONF_DIR/koha-conf.xml \$(FULLPERLRUN)!g;
1447     return $test;
1448 }
1449
1450 sub install {
1451     my $self = shift;
1452     my $install = ""; 
1453     # NOTE: we're *not* doing this: my $install = $self->SUPER::install(@_);
1454     # This means that we're completely overriding EU::MM's default
1455     # installation and uninstallation targets.
1456
1457 # If installation is on Win32, we need to do permissions different from *nix
1458     if ( $^O =~ /darwin|linux|cygwin|freebsd|solaris/ ) { # this value needs to be verified for each platform and modified accordingly
1459             foreach my $key (sort keys %$target_directories) {
1460                     $install .= qq(
1461 KOHA_INST_$key = blib/$key
1462 KOHA_DEST_$key = $target_directories->{$key}
1463 )                       unless ($config{'INSTALL_ZEBRA'} ne "yes" and $key =~ /ZEBRA/) or exists $skip_directories->{$key};
1464                 }
1465                 $install .= qq(
1466 install :: all install_koha set_koha_ownership set_koha_permissions warn_koha_env_vars
1467 \t\$(NOECHO) \$(NOOP)
1468 );
1469                         $install .= "install_koha ::\n";      
1470                         $install .= "\t\$(NOECHO) umask 022; \$(MOD_INSTALL) \\\n";
1471                         foreach my $key (sort keys %$target_directories) {
1472                                 $install .= "\t\t\$(KOHA_INST_$key) \$(KOHA_DEST_$key) \\\n" 
1473                                         unless ($config{'INSTALL_ZEBRA'} ne "yes" and $key =~ /ZEBRA/) or exists $skip_directories->{$key};
1474                         }
1475                         $install .= "\t\t\$(INST_MAN1DIR) \$(DESTINSTALLMAN1DIR) \\\n";
1476                         $install .= "\t\t\$(INST_MAN3DIR) \$(DESTINSTALLMAN3DIR)\n";
1477
1478                         $install .= "\n";
1479                         $install .= "set_koha_ownership ::\n";
1480 # Do not try to change ownership if DESTDIR is set
1481                         if ($config{'INSTALL_MODE'} eq 'standard' and $config{'KOHA_USER'} ne "root") {
1482                                 foreach my $key (sort keys %$target_directories) {
1483                                         $install .= "\t\$(NOECHO) if test -z \"\$(DESTDIR)\"; then chown -R $config{'KOHA_USER'}:$config{'KOHA_GROUP'} \$(KOHA_DEST_$key); fi\n"
1484                                                 unless ($config{'INSTALL_ZEBRA'} ne "yes" and $key =~ /ZEBRA/) or exists $skip_directories->{$key};
1485                                 }
1486                         } else {
1487                                 $install .= "\t\t\$(NOECHO) \$(NOOP)\n\n";
1488                         }
1489
1490                         $install .= "\n";
1491                         $install .= "set_koha_permissions ::\n";
1492                         # This is necessary because EU::MM installs files
1493                         # as either 0444 or 0555, and we want the owner
1494                         # of Koha's files to have write permission by default.
1495                         foreach my $key (sort keys %$target_directories) {
1496                                 $install .= "\t\$(NOECHO) chmod -R u+w \$(KOHA_DEST_$key)\n"
1497                                         unless ($config{'INSTALL_ZEBRA'} ne "yes" and $key =~ /ZEBRA/) or exists $skip_directories->{$key};
1498                         }
1499         }
1500         elsif ($^O eq 'MSWin32' ) {     # On Win32, the install probably needs to be done under the user account koha will be running as...
1501                                                                 # We can attempt some creative things with command line utils such as CACLS which allows permission
1502                                                                 # management from Win32 cmd.exe, but permissions really only apply to NTFS.
1503             foreach my $key (sort keys %$target_directories) {
1504                     $install .= qq(
1505 KOHA_INST_$key = blib/$key
1506 KOHA_DEST_$key = $target_directories->{$key}
1507 )                       unless ($config{'INSTALL_ZEBRA'} ne "yes" and $key =~ /ZEBRA/) or exists $skip_directories->{$key};
1508                 }
1509                 $install .= qq(
1510 install :: all install_koha warn_koha_env_vars
1511 \t\$(NOECHO) \$(NOOP)
1512 );
1513                 $install .= "install_koha ::\n";
1514                 $install .= "\t\$(MOD_INSTALL) \\\n";
1515                 foreach my $key (sort keys %$target_directories) {
1516                         $install .= "\t\t\$(KOHA_INST_$key) \$(KOHA_DEST_$key) \\\n" 
1517                                 unless ($config{'INSTALL_ZEBRA'} ne "yes" and $key =~ /ZEBRA/) or exists $skip_directories->{$key};
1518                 }
1519         }
1520         $install .= "\n";
1521
1522     $install .= "warn_koha_env_vars ::\n";
1523     $install .= "\t\$(NOECHO) \$(ECHO)\n";
1524     $install .= "\t\$(NOECHO) \$(ECHO) Koha\\'s files have now been installed. \n";
1525     $install .= "\t\$(NOECHO) \$(ECHO)\n";
1526     $install .= "\t\$(NOECHO) \$(ECHO) In order to use Koha\\'s command-line batch jobs,\n";
1527     $install .= "\t\$(NOECHO) \$(ECHO) you should set the following environment variables:\n";
1528     $install .= "\t\$(NOECHO) \$(ECHO)\n";
1529     $install .= "\t\$(NOECHO) \$(ECHO) export KOHA_CONF=\$(KOHA_DEST_KOHA_CONF_DIR)/koha-conf.xml\n";
1530     $install .= "\t\$(NOECHO) \$(ECHO) export PERL5LIB=$target_directories->{'PERL_MODULE_DIR'}\n";
1531     $install .= "\t\$(NOECHO) \$(ECHO)\n";
1532     $install .= "\t\$(NOECHO) \$(ECHO) For other post-installation tasks, please consult the README.\n";
1533     $install .= "\t\$(NOECHO) \$(ECHO)\n";
1534
1535     if ($config{'INSTALL_ZEBRA'} eq "yes") {
1536         $install .= _update_zebra_conf_target();
1537     }
1538
1539     $install .= upgrade();
1540
1541     return $install;
1542 }
1543
1544 =head2 _update_zebra_conf_target
1545
1546 Add an installation target for updating
1547 Zebra's configuration files.
1548
1549 =cut
1550
1551 sub _update_zebra_conf_target {
1552
1553     my $target = "\nupdate_zebra_conf ::\n";
1554     $target .= "\tumask 022; \$(MOD_INSTALL) \\\n";
1555     $target .= "\t\t\$(KOHA_INST_ZEBRA_CONF_DIR) \$(KOHA_DEST_ZEBRA_CONF_DIR) \n";
1556     $target .= "\t\$(NOECHO) chmod -R u+w \$(KOHA_DEST_ZEBRA_CONF_DIR)\n" unless $^O eq "MSWin32";
1557     $target .= "\tumask 022; \$(MOD_INSTALL) \\\n";
1558     $target .= "\t\t\$(KOHA_INST_PAZPAR2_CONF_DIR) \$(KOHA_DEST_PAZPAR2_CONF_DIR) \n";
1559     $target .= "\t\$(NOECHO) chmod -R u+w \$(KOHA_DEST_PAZPAR2_CONF_DIR)\n" unless $^O eq "MSWin32";
1560
1561     return $target;
1562 }
1563
1564 sub upgrade {
1565     my $upgrade = ""; 
1566
1567     my $backup_suffix;
1568     if (exists $install_log_values{'KOHA_INSTALLED_VERSION'}) {
1569         my $version = $install_log_values{'KOHA_INSTALLED_VERSION'};
1570         $version =~ s/\./_/g;
1571         $backup_suffix = "_koha_$version";
1572     } else {
1573         $backup_suffix = "_upgrade_backup";
1574     }
1575
1576     $upgrade .= qq/
1577 MOD_BACKUP = \$(ABSPERLRUN) -Minstall_misc::UpgradeBackup -e 'backup_changed_files({\@ARGV}, '$backup_suffix', '\''\$(VERBINST)'\'', '\''\$(UNINST)'\'');' --
1578
1579 upgrade :: make_upgrade_backup install
1580 \t\$(NOECHO) \$(NOOP)
1581 make_upgrade_backup ::
1582 \t\$(NOECHO) umask 022; \$(MOD_BACKUP) \\
1583 /;
1584     foreach my $key (qw/KOHA_CONF_DIR INTRANET_TMPL_DIR INTRANET_WWW_DIR OPAC_TMPL_DIR OPAC_WWW_DIR
1585                      PAZPAR2_CONF_DIR ZEBRA_CONF_DIR/) {
1586         $upgrade .= "\t\t\$(KOHA_INST_$key) \$(KOHA_DEST_$key) \\\n" 
1587             unless ($config{'INSTALL_ZEBRA'} ne "yes" and $key =~ /ZEBRA/) or
1588                    exists $skip_directories->{$key} or
1589                    not exists $target_directories->{$key};
1590     }
1591     $upgrade =~ s/\\\n$/\n/;
1592
1593     return $upgrade;
1594 }
1595
1596 sub postamble {
1597     # put directory mappings into Makefile
1598     # so that Make will export as environment
1599     # variables -- this is for the use of
1600     # rewrite-confg.PL
1601
1602     # quote '$' in the two password parameters
1603     my %config = %config;
1604     $config{'DB_PASS'} =~ s/\$/\$\$/g;
1605     if ($config{'INSTALL_ZEBRA'} eq "yes") {
1606         $config{'ZEBRA_PASS'} =~ s/\$/\$\$/g;
1607     }
1608
1609     my $env;
1610         # Hereagain, we must alter syntax per platform...
1611         if ( $^O eq 'MSWin32' ) {
1612                 # NOTE: it is imperative that there be no whitespaces in ENV=value...
1613                 $env = join("\n", map { "__${_}__=$target_directories->{$_}" } keys %$target_directories); 
1614                 $env .= "\n\n";
1615                 $env .= join("\n", map { "__${_}__=$config{$_}" } keys %config);
1616         }
1617     else {
1618                 $env = join("\n", map { "export __${_}__ := $target_directories->{$_}" } keys %$target_directories); 
1619                 $env .= "\n\n";
1620                 $env .= join("\n", map { "export __${_}__ := $config{$_}" } keys %config);
1621         }
1622     
1623     if ( $config{'RUN_DATABASE_TESTS'} eq 'yes' ) {
1624         if ( open( my $confhandle, '>', 't/test-config.txt' ) ) {
1625             print $confhandle "# This configuration file lets the t/Makefile prepare a test koha-conf.xml file.\n";
1626             print $confhandle "# It is generated by the top-level Makefile.PL.\n";
1627             print $confhandle "# It is separate from the standard koha-conf.xml so that you can edit this by hand and test with different configurations.\n";
1628
1629             # these directories will be relocated to the 't' directory
1630             foreach my $dirname ( keys %$target_directories ) {
1631                 my $dir = main::_strip_destdir( $target_directories->{$dirname} );
1632                 if ( exists $test_suite_override_dirs{$dirname} ) {
1633                     $dir = main::get_test_dir($dirname);
1634                 }
1635                 print $confhandle "$dirname = $dir\n"
1636             }
1637             print $confhandle "\n";
1638
1639             print $confhandle join( "\n", map { "$_ = $config{$_}" } keys( %config ) ), "\n";
1640             close( $confhandle );
1641         } else {
1642             warn 'unable to open conf file for database dependent tests: $!';
1643         }
1644           
1645     }
1646     return "$env\n";
1647 }
1648
1649
1650 __END__
1651
1652
1653 =head1 SEE ALSO
1654
1655 ExtUtils::MakeMaker(3)
1656
1657 =head1 AUTHORS
1658
1659 MJ Ray mjr at phonecoop.coop
1660 Galen Charlton galen.charlton at liblime.com
1661
1662 =cut
1663 FIXME: deal with .htaccess