X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FInstallationCheck.pm;h=e8670761c918f8354ee8862ceebc77471f536b95;hb=72be9c763f3b7f7df1fae4fe10011e45f9e2ad1d;hp=5f9776816224c61e792eb27b72d23e4939a1732f;hpb=5c695f5dff59f951d17172851a6428bf346b9d66;p=kivitendo-erp.git diff --git a/SL/InstallationCheck.pm b/SL/InstallationCheck.pm index 5f9776816..e8670761c 100644 --- a/SL/InstallationCheck.pm +++ b/SL/InstallationCheck.pm @@ -54,6 +54,36 @@ sub module_available { return eval "use $module $version; 1"; } +sub check_kpsewhich { + my $exit = system("which kpsewhich > /dev/null"); + + return $exit > 0 ? 0 : 1; +} + +sub template_dirs { + my ($path) = @_; + opendir my $dh, $path || die "can't open $path"; + my @templates = sort grep { !/^\.\.?$/ } readdir $dh; + close $dh; + + return @templates; +} + +sub classes_from_latex { + my ($path, $class) = @_; + eval { use String::ShellQuote; 1 } or warn "can't load String::ShellQuote" && return; + $path = shell_quote $path; + $class = shell_quote $class; + + open my $pipe, q#egrep -rs '^[\ \t]*# . "$class' $path". q# | sed 's/ //g' | awk -F '{' '{print $2}' | awk -F '}' '{print $1}' |#; + my @cls = <$pipe>; + close $pipe; + + # can't use uniq here + my %class_hash = map { $_ => 1 } map { s/\n//; $_ } split ',', join ',', @cls; + return sort keys %class_hash; +} + my %conditional_dependencies; sub check_for_conditional_dependencies {