X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=scripts%2Finstallation_check.pl;h=1cebcb28e3c911288e65970aed55540985722aa4;hb=5cf44d1d8544fa3426e5fd80108187fefae30df9;hp=6b5eb9c28fc381f3c4ffb9f8f52423f8ddc75efa;hpb=62f3845b7d45292676bb983c02015cb914727394;p=kivitendo-erp.git diff --git a/scripts/installation_check.pl b/scripts/installation_check.pl index 6b5eb9c28..1cebcb28e 100755 --- a/scripts/installation_check.pl +++ b/scripts/installation_check.pl @@ -4,10 +4,13 @@ use strict; use Getopt::Long; use Pod::Usage; use Term::ANSIColor; - +our $master_templates; BEGIN { unshift @INC, "modules/override"; # Use our own versions of various modules (e.g. YAML). push @INC, "modules/fallback"; # Only use our own versions of modules if there's no system version. + + # this is a default dir. may be wrong in your installation, change it then + $master_templates = './templates/print/'; } use SL::InstallationCheck; @@ -19,16 +22,18 @@ GetOptions( "a|all" => \ $check{a}, "o|optional!" => \ $check{o}, "d|devel!" => \ $check{d}, + "l|latex!" => \ $check{l}, "r|required!" => \ $check{r}, "h|help" => sub { pod2usage(-verbose => 2) }, "c|color!" => \ ( my $c = 1 ), ); -# if notihing is requested check "required" +# if nothing is requested check "required" $check{r} = 1 unless defined $check{a} || + defined $check{l} || defined $check{o} || defined $check{d}; - +my $default_run ='1' if $check{r}; # no parameter, therefore print a note after default run if ($check{a}) { foreach my $check (keys %check) { $check{$check} = 1 unless defined $check{$check}; @@ -39,21 +44,93 @@ if ($check{a}) { $| = 1; if ($check{r}) { - check($_, required => 1) for @SL::InstallationCheck::required_modules; + print_header('Checking Required Modules'); + check_module($_, required => 1) for @SL::InstallationCheck::required_modules; + print_header('Standard check for required modules done. See additional parameters for more checks (-- help)') if $default_run; } if ($check{o}) { - check($_, optional => 1) for @SL::InstallationCheck::optional_modules; + print_header('Checking Optional Modules'); + check_module($_, optional => 1) for @SL::InstallationCheck::optional_modules; } if ($check{d}) { - check($_, devel => 1) for @SL::InstallationCheck::developer_modules; + print_header('Checking Developer Modules'); + check_module($_, devel => 1) for @SL::InstallationCheck::developer_modules; } +if ($check{l}) { + check_latex(); +} + +sub check_latex { + my ($res) = check_kpsewhich(); + print_result("Looking for LaTeX kpsewhich", $res ? ('ok', 'green') : ('NOT ok', 'red')); + if ($res) { + check_template_dir($_) for SL::InstallationCheck::template_dirs($master_templates); + } +} + +sub check_template_dir { + my ($dir) = @_; + my $path = $master_templates . $dir; + + print_header("Checking LaTeX Dependencies for Master Templates '$dir'"); + kpsewhich($path, 'cls', $_) for SL::InstallationCheck::classes_from_latex($path, '\documentclass'); + kpsewhich($path, 'sty', $_) for SL::InstallationCheck::classes_from_latex($path, '\usepackage'); +} + +our $mastertemplate_path = './templates/print/'; + +sub check_kpsewhich { + return 1 if SL::InstallationCheck::check_kpsewhich(); + + print STDERR < /dev/null|); + my $res = $exit > 0 ? 0 : 1; -sub check { + print_result("Looking for LaTeX $type_desc $package", $res); + if (!$res) { + print STDERR <{"name"}, $module->{version}); - print_result($line, $res); + my ($res, $ver) = SL::InstallationCheck::module_available($module->{"name"}, $module->{version}); + if ($res) { + print_line($line, $ver || 'no version', 'green'); + } else { + print_result($line, $res); + } + return if $res; @@ -63,7 +140,7 @@ sub check { : $role{devel} ? 'It is OPTIONAL for Lx-Office and only useful for developers.' : 'It is not listed as a dependancy yet. Please tell this the developers.'; - my @source_texts = source_texts($module); + my @source_texts = module_source_texts($module); local $" = $/; print STDERR < -Probe for all modules. +Probe for all perl modules and all LaTeX master templates. =item C<-c, --color> @@ -150,11 +244,11 @@ No color output. Helpful to avoid terminal escape problems. =item C<-d, --devel> -Probe for developer dependancies. (Used for console and tags file) +Probe for perl developer dependancies. (Used for console and tags file) =item C<--no-devel> -Dont't probe for developer dependancies. (Useful in combination with --all) +Don't probe for perl developer dependancies. (Useful in combination with --all) =item C<-h, --help> @@ -166,15 +260,23 @@ Probe for optional modules. =item C<--no-optional> -Dont't probe for optional modules. (Useful in combination with --all) +Don't probe for optional perl modules. (Useful in combination with --all) =item C<-r, --required> -Probe for required modules (default). +Probe for required perl modules (default). =item C<--no-required> -Dont't probe for required modules. (Useful in combination with --all) +Don't probe for required perl modules. (Useful in combination with --all) + +=item C<-l. --latex> + +Probe for LaTeX documentclasses and packages in master templates. + +=item C<--no-latex> + +Don't probe for LaTeX document classes and packages in master templates. (Useful in combination with --all) =item C<-v. --verbose>