2007-08-02 19:25:59 +02:00
|
|
|
use 5.000;
|
|
|
|
use ExtUtils::MakeMaker;
|
|
|
|
|
|
|
|
WriteMakefile(
|
|
|
|
NAME => 'PandoraFMS',
|
2009-01-12 17:20:33 +01:00
|
|
|
VERSION_FROM => 'lib/PandoraFMS/Config.pm',
|
|
|
|
AUTHOR => 'Sancho Lerena <slerena@artica.es>',
|
2007-08-02 19:25:59 +02:00
|
|
|
PREREQ_PM => {
|
2007-08-02 20:30:10 +02:00
|
|
|
NetAddr::IP => 0,
|
2007-08-02 19:25:59 +02:00
|
|
|
DBI => 0,
|
|
|
|
threads::shared => 0,
|
|
|
|
IO::Socket => 0,
|
|
|
|
Time::Format => 0,
|
|
|
|
Time::Local => 0,
|
|
|
|
Date::Manip => 0,
|
|
|
|
XML::Simple => 0,
|
|
|
|
Net::Ping => 0,
|
|
|
|
Time::HiRes => 0,
|
|
|
|
IO::Socket => 0,
|
2008-06-19 16:53:10 +02:00
|
|
|
Mail::Sendmail => 0,
|
|
|
|
Net::Traceroute::PurePerl => 0,
|
2008-08-05 12:55:41 +02:00
|
|
|
HTML::Entities => 0,
|
2007-08-02 19:25:59 +02:00
|
|
|
SNMP => 0
|
|
|
|
},
|
2009-04-14 Ramon Novoa <rnovoa@artica.es>
* pandora_ctl, pandora_network, pandora_wmi, pandora_plugin,
pandora_prediction, bin/pandora_wmi, bin/pandora_plugin,
bin/pandora_prediction, bin/pandora_snmpconsole, bin/pandora_recon,
bin/pandora_network, pandora_recon, pandora_snmpconsole: Deleted
from repository. Old server code and startup scripts.
* Makefile.PL, pandora_server_installer, lib/PandoraFMS/Config.pm
lib/PandoraFMS/DB.pm, lib/PandoraFMS/Tools.pm, bin/pandora_server,
pandora_package_installer, pandora_server: Updated to work with the
new code, removed unneeded dependencies, fixed some bugs etc.
* lib/PandoraFMS/SNMPServer.pm, lib/PandoraFMS/PluginServer.pm,
lib/PandoraFMS/ProducerConsumerServer.pm, lib/PandoraFMS/Server.pm,
lib/PandoraFMS/PredictionServer.pm, lib/PandoraFMS/Core.pm,
lib/PandoraFMS/ReconServer.pm, lib/PandoraFMS/DataServer.pm,
lib/PandoraFMS/NetworkServer.pm, lib/PandoraFMS/WMIServer.pm: Added
to repository. New server code.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1620 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-14 21:13:16 +02:00
|
|
|
EXE_FILES => [ 'bin/pandora_server', 'util/pandora_exec'],
|
2007-08-02 19:25:59 +02:00
|
|
|
PMLIBDIRS => [ 'lib' ],
|
|
|
|
'dist' => { 'TAR' => 'tar', 'TARFLAGS' => 'cvfz', 'SUFFIX'
|
|
|
|
=> '.gz', 'COMPRESS' => 'gzip'}
|
|
|
|
);
|
|
|
|
|