X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FInstallationCheck.pm;h=78a5f6208d71fe578a400d720d645f2bf9ce631a;hb=f203bc24057969b15c414e84272afb6bbd740e77;hp=d5d1ff7762f552203e779317c144ef6298c56b2f;hpb=0d2ae687e61dc79cf92c4121ea1b802cdf3c83ac;p=kivitendo-erp.git diff --git a/SL/InstallationCheck.pm b/SL/InstallationCheck.pm index d5d1ff776..78a5f6208 100644 --- a/SL/InstallationCheck.pm +++ b/SL/InstallationCheck.pm @@ -8,16 +8,16 @@ use vars qw(@required_modules @optional_modules @developer_modules); use strict; BEGIN { -# name: the name of the module if you install it with cpan -# version: the minimum version required to run. optional -# url: web path to the author page of the module -# debian: dpkg package name for debianoid distos -# note: (suse) (fedora) (redhat) entries welcome if you -# are willing to maintain them -# distname: name of the package in cpan if it differs from name (ex.: LWP != libwww-perl) +# name: the name of the module if you install it with cpan +# version: the minimum version required to run. optional +# url: web path to the author page of the module +# debian: dpkg package name for debianoid distos +# note: (suse) (fedora) (redhat) entries welcome if you +# are willing to maintain them +# dist_name: name of the package in cpan if it differs from name (ex.: LWP != libwww-perl) @required_modules = ( { name => "parent", url => "http://search.cpan.org/~corion/", debian => 'libparent-perl' }, - { name => "Archive::Zip", version => '1.16', url => "http://search.cpan.org/~adamk/", debian => 'libarchive-zip-perl' }, + { name => "Archive::Zip", version => '1.16', url => "http://search.cpan.org/~phred/", debian => 'libarchive-zip-perl' }, { name => "Clone", url => "http://search.cpan.org/~rdf/", debian => 'libclone-perl' }, { name => "Config::Std", url => "http://search.cpan.org/~dconway/", debian => 'libconfig-std-perl' }, { name => "DateTime", url => "http://search.cpan.org/~drolsky/", debian => 'libdatetime-perl' }, @@ -27,6 +27,10 @@ BEGIN { { name => "Email::MIME", url => "http://search.cpan.org/~rjbs/", debian => 'libemail-mime-perl' }, { name => "FCGI", version => '0.72', url => "http://search.cpan.org/~mstrout/", debian => 'libfcgi-perl' }, { name => "File::Copy::Recursive", url => "http://search.cpan.org/~dmuey/", debian => 'libfile-copy-recursive-perl' }, + { name => "GD", url => "http://search.cpan.org/~lds/", debian => 'libgd-gd2-perl', }, + { name => 'HTML::Parser', url => 'http://search.cpan.org/~gaas/', debian => 'libhtml-parser-perl', }, + { name => 'HTML::Restrict', url => 'http://search.cpan.org/~oalders/', }, + { name => "Image::Info", url => "http://search.cpan.org/~srezic/", debian => 'libimage-info-perl' }, { name => "JSON", url => "http://search.cpan.org/~makamaka", debian => 'libjson-perl' }, { name => "List::MoreUtils", version => '0.21', url => "http://search.cpan.org/~vparseval/", debian => 'liblist-moreutils-perl' }, { name => "Params::Validate", url => "http://search.cpan.org/~drolsky/", debian => 'libparams-validate-perl' }, @@ -56,7 +60,9 @@ BEGIN { ); @developer_modules = ( + { name => "DBIx::Log4perl", url => "http://search.cpan.org/~mjevans/", }, { name => "Devel::REPL", url => "http://search.cpan.org/~doy/", debian => 'libdevel-repl-perl' }, + { name => "Log::Log4perl", url => "http://search.cpan.org/~mschilli/", debian => 'liblog-log4perl-perl' }, { name => "LWP::Simple", url => "http://search.cpan.org/~gaas/", debian => 'libwww-perl', dist_name => 'libwww-perl' }, { name => "Moose::Role", url => "http://search.cpan.org/~doy/", debian => 'libmoose-role-perl' }, { name => "Perl::Tags", url => "http://search.cpan.org/~osfameron/", debian => 'libperl-tags-perl' }, @@ -65,6 +71,7 @@ BEGIN { { name => "Test::Output", url => "http://search.cpan.org/~bdfoy/", debian => 'libtest-output-perl' }, { name => "URI::Find", url => "http://search.cpan.org/~mschwern/", debian => 'liburi-find-perl' }, { name => "GD", version => '2.00', url => "http://search.cpan.org/~lds/", debian => 'libgd-perl' }, + { name => "Rose::DB::Object", version => 0.809, url => "http://search.cpan.org/~jsiracusa/", debian => 'librose-db-object-perl' }, ); $_->{fullname} = join ' ', grep $_, @$_{qw(name version)}