X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=Makefile.PL;h=3c1504f3a928336e40cfee154c4393abeec11fbb;hb=dbd2713ff09f2742a45cad6038d32562b49f38a3;hp=6c964601c4cf0184b590b9a575b021e745661fbe;hpb=e979344ea9db2ea91e9aa905bdcea527ac9fe2f2;p=koha.git diff --git a/Makefile.PL b/Makefile.PL index 6c964601c4..3c1504f3a9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -16,7 +16,6 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # # Current maintainer MJR http://mjr.towers.org.uk/ -# See http://www.koha.org/wiki/?page=KohaInstaller # use strict; @@ -34,7 +33,7 @@ use C4::Installer; my $koha_pm = C4::Installer::PerlModules->new; my $DEBUG = 0; -die "perl 5.8.8 or later required" unless ($] >= 5.008008); +die "perl 5.10 or later required" unless ($] >= 5.010000); # Hash up directory structure & files beginning with the directory we were called from (should be the base of koha)... @@ -267,6 +266,7 @@ my $target_map = { './installer-CPAN.pl' => 'NONE', './installer' => 'INTRANET_CGI_DIR', './errors' => {target => 'INTRANET_CGI_DIR'}, + './Koha' => 'PERL_MODULE_DIR', './koha-tmpl/intranet-tmpl' => {target => 'INTRANET_TMPL_DIR', trimdir => -1}, './koha-tmpl/opac-tmpl' => {target => 'OPAC_TMPL_DIR', trimdir => -1}, './kohaversion.pl' => 'INTRANET_CGI_DIR', @@ -290,6 +290,7 @@ my $target_map = { './rewrite-config.PL' => 'NONE', './reviews' => 'INTRANET_CGI_DIR', './serials' => 'INTRANET_CGI_DIR', + './services' => 'INTRANET_CGI_DIR', './skel' => 'NONE', './skel/var/log/koha' => { target => 'LOG_DIR', trimdir => -1 }, './skel/var/run/koha/zebradb' => { target => 'ZEBRA_RUN_DIR', trimdir => -1 }, @@ -313,6 +314,7 @@ my $target_map = { # that should go in /var/tmp/koha './tools' => 'INTRANET_CGI_DIR', './virtualshelves' => 'INTRANET_CGI_DIR', + './xml_sax.pl' => 'PERL_MODULE_DIR', # ignore files and directories created by the install itself './pm_to_blib' => 'NONE', './blib' => 'NONE', @@ -409,6 +411,7 @@ my %config_defaults = ( 'AUTH_INDEX_MODE' => 'dom', 'ZEBRA_MARC_FORMAT' => 'marc21', 'ZEBRA_LANGUAGE' => 'en', + 'ZEBRA_TOKENIZER' => 'chr', 'ZEBRA_USER' => 'kohauser', 'ZEBRA_PASS' => 'zebrastripes', 'ZEBRA_SRU_HOST' => 'localhost', @@ -458,8 +461,9 @@ my %valid_config_values = ( 'INSTALL_ZEBRA' => { 'yes' => 1, 'no' => 1 }, 'INSTALL_SRU' => { 'yes' => 1, 'no' => 1 }, 'AUTH_INDEX_MODE' => { 'grs1' => 1, 'dom' => 1 }, - 'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation - 'ZEBRA_LANGUAGE' => { 'en' => 1, 'fr' => 1 }, # FIXME should generate from contents of distribution + 'ZEBRA_MARC_FORMAT' => { 'marc21' => 1, 'normarc' => 1, 'unimarc' => 1 }, # FIXME should generate from contents of distributation + 'ZEBRA_LANGUAGE' => { 'en' => 1, 'fr' => 1, 'nb' => 1 }, # FIXME should generate from contents of distribution + 'ZEBRA_TOKENIZER' => { chr => 1, icu => 1 }, 'RUN_DATABASE_TESTS' => { 'yes' => 1, 'no' => 1 }, 'USE_MEMCACHED' => { 'yes' => 1, 'no' => 1 }, ); @@ -486,11 +490,12 @@ my $pl_files = { 'rewrite-config.PL' => [ 'blib/KOHA_CONF_DIR/koha-conf.xml', 'blib/KOHA_CONF_DIR/koha-httpd.conf', + 'blib/ZEBRA_CONF_DIR/etc/default.idx', 'blib/MISC_DIR/koha-install-log' ], 'fix-perl-path.PL' => [ # this script ensures the correct shebang line for the platform installed on... 'blib' - ] + ], }; if ($config{'INSTALL_ZEBRA'} eq "yes") { @@ -527,6 +532,10 @@ if ($config{'INSTALL_MODE'} ne "dev") { ); } +$config{ZEBRA_TOKENIZER_STMT} = $config{ZEBRA_TOKENIZER} eq 'icu' + ? 'icuchain words-icu.xml' + : 'charmap word-phrase-utf.chr'; + my %test_suite_override_dirs = ( KOHA_CONF_DIR => ['etc'], ZEBRA_CONF_DIR => ['etc', 'zebradb'], @@ -917,8 +926,8 @@ Since you've chosen to use Zebra with Koha, you must specify the primary MARC format of the records to be indexed by Zebra. -Koha provides Zebra configuration files for MARC 21 -and UNIMARC. +Koha provides Zebra configuration files for MARC21, +NORMARC and UNIMARC. MARC format for Zebra indexing); $msg .= _add_valid_values_disp('ZEBRA_MARC_FORMAT', $valid_values); @@ -945,6 +954,15 @@ Authorities indexing mode); $msg .= _add_valid_values_disp('AUTH_INDEX_MODE', $valid_values); $config{'AUTH_INDEX_MODE'} = _get_value('AUTH_INDEX_MODE', $msg, $defaults->{'AUTH_INDEX_MODE'}, $valid_values, $install_log_values); + $msg = q( +Zebra has two methods to perform records tokenization +and characters normalization: CHR and ICU. ICU is +recommended for catalogs containing non-Latin +characters.); + + $msg .= _add_valid_values_disp('ZEBRA_TOKENIZER', $valid_values); + $config{'ZEBRA_TOKENIZER'} = _get_value('ZEBRA_TOKENIZER', $msg, $defaults->{'ZEBRA_TOKENIZER'}, $valid_values, $install_log_values); + $msg = q( Please specify Zebra database user); $config{'ZEBRA_USER'} = _get_value('ZEBRA_USER', $msg, $defaults->{'ZEBRA_USER'}, $valid_values, $install_log_values); @@ -1579,4 +1597,5 @@ MJ Ray mjr at phonecoop.coop Galen Charlton galen.charlton at liblime.com =cut + FIXME: deal with .htaccess