mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
* lib/PandoraFMS/NetworkServer.pm: Added the Pandora FMS's console MIB to snmp* calls. * pandora_server_installer, pandora_server.spec, lib/PandoraFMS/Tools.pm, lib/PandoraFMS/Config.pm, Makefile.PL, pandora_server.redhat.spec, DEBIAN/control: Removed PERL's SNMP lib from the deps. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8131 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
37 lines
820 B
Perl
37 lines
820 B
Perl
use 5.000;
|
|
use ExtUtils::MakeMaker;
|
|
|
|
WriteMakefile(
|
|
INSTALLSITELIB => '/usr/lib/perl5',
|
|
(($^O eq 'freebsd')
|
|
? (INSTALLSITELIB => '') : ()
|
|
),
|
|
($^O eq 'netbsd') ? (
|
|
INSTALLSITELIB => '',
|
|
INSTALLSITESCRIPT => '/usr/local/bin',
|
|
) :(),
|
|
|
|
NAME => 'PandoraFMS',
|
|
VERSION_FROM => 'lib/PandoraFMS/Config.pm',
|
|
AUTHOR => 'Artica ST <info@artica.es>',
|
|
PREREQ_PM => {
|
|
NetAddr::IP => 0,
|
|
DBI => 0,
|
|
threads::shared => 0,
|
|
IO::Socket => 0,
|
|
Socket6 => 0,
|
|
Time::Local => 0,
|
|
XML::Simple => 0,
|
|
XML::Twig => 0,
|
|
Time::HiRes => 0,
|
|
HTML::Entities => 0,
|
|
IO::Socket::INET6 => 0,
|
|
JSON => 0,
|
|
},
|
|
EXE_FILES => [ 'bin/pandora_server', 'bin/pandora_exec'],
|
|
PMLIBDIRS => [ 'lib' ],
|
|
'dist' => { 'TAR' => 'tar', 'TARFLAGS' => 'cvfz', 'SUFFIX'
|
|
=> '.gz', 'COMPRESS' => 'gzip'}
|
|
);
|
|
|