This repository has been archived by the owner on Nov 1, 2020. It is now read-only.
forked from fusioninventory/fusioninventory-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
234 lines (193 loc) · 8.03 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
use inc::Module::Install;
use English qw(-no_match_vars);
name 'FusionInventory-Agent';
include 'Module::AutoInstall';
abstract 'FusionInventory unified Agent for UNIX, Linux, Windows and MacOSX';
license 'gpl';
repository 'https://github.com/fusinv/fusioninventory-agent';
version_from 'lib/FusionInventory/Agent.pm';
perl_version '5.008';
# mandatory dependencies
requires 'File::Which' => undef;
requires 'LWP' => '5.8';
requires 'Net::IP' => undef;
requires 'UNIVERSAL::require' => undef;
requires 'Text::Template' => undef;
requires 'XML::TreePP' => '0.26';
requires 'Socket::GetAddrInfo'=> undef;
if ($OSNAME eq 'MSWin32') {
requires 'Win32::OLE' => undef;
requires 'Win32::TieRegistry' => undef;
requires 'Win32::Job' => undef;
}
recommends 'Compress::Zlib' => undef;
recommends 'HTTP::Daemon' => undef;
recommends 'IO::Socket::SSL' => undef;
recommends 'LWP::Protocol::https' => undef;
if ($OSNAME ne 'MSWin32') {
recommends 'Proc::Daemon' => undef;
recommends 'Proc::PID::File' => undef;
} else {
recommends 'Win32::Daemon' => undef;
}
# test dependencies
test_requires 'HTTP::Proxy' => undef;
test_requires 'HTTP::Server::Simple' => undef;
test_requires 'HTTP::Server::Simple::Authen' => undef;
test_requires 'IO::Socket::SSL' => undef;
test_requires 'IO::Capture::Stderr' => undef;
test_requires 'IPC::Run' => undef;
test_requires 'Test::Compile' => undef;
test_requires 'Test::Deep' => undef;
test_requires 'Test::Exception' => undef;
test_requires 'Test::MockModule' => undef;
test_requires 'Test::More' => '0.93'; # subtest
test_requires 'Test::NoWarnings' => undef;
test_requires 'LWP::Protocol::https' => undef;
test_requires 'Test::MockObject' => undef;
test_requires 'JSON' => undef;
test_requires 'Net::SNMP' => undef;
# Inventory
recommends 'Parse::EDID' => undef;
recommends 'Net::CUPS' => 0.60 if $OSNAME ne 'MSWin32';
# Deploy
recommends 'Archive::Extract' => undef;
recommends 'Digest::SHA' => undef;
recommends 'File::Copy::Recursive' => undef;
recommends 'JSON' => undef;
recommends 'URI::Escape' => undef;
recommends 'POE::Component::Client::Ping' => undef;
test_requires 'Test::HTTP::Server::Simple' => undef;
test_requires 'POE::Component::Client::Ping' => undef;
# Network
recommends 'Net::SNMP' => undef;
recommends 'Net::NBName' => undef;
recommends 'Digest::MD5' => undef;
recommends 'Crypt::DES' => undef;
# Wake-On-LAN
recommends 'Net::Write::Layer2' => undef;
install_script 'bin/fusioninventory-agent';
install_script 'bin/fusioninventory-win32-service' if $OSNAME eq 'MSWin32';
install_script 'bin/fusioninventory-injector';
install_script 'bin/fusioninventory-inventory';
install_script 'bin/fusioninventory-wakeonlan';
install_script 'bin/fusioninventory-netdiscovery';
install_script 'bin/fusioninventory-netinventory';
install_script 'bin/fusioninventory-esx';
makemaker_args(
test => {
TESTS => join ' ', map { glob } qw(t/*.t t/*/*.t t/*/*/*.t t/*/*/*/*.t)
},
INSTALLMAN3DIR => 'none'
);
WriteAll;
# substitute prefix everywhere
$MY::variables{SYSCONFDIR} =~ s/\$\(PREFIX\)/$MY::variables{PREFIX}/;
$MY::variables{DATADIR} =~ s/\$\(PREFIX\)/$MY::variables{PREFIX}/;
$MY::variables{LOCALSTATEDIR} =~ s/\$\(PREFIX\)/$MY::variables{PREFIX}/;
# look for already existing configuration file
my $config_file_message = -f "$MY::variables{SYSCONFDIR}/agent.cfg" ?
"previous configuration file found, new one will be installed as agent.cfg.new" :
"no previous configuration file found, new one will be installed as agent.cfg";
print <<EOF;
Installation summary
--------------------
prefix: $MY::variables{PREFIX}
configuration installation directory: $MY::variables{SYSCONFDIR}
constant data installation directory: $MY::variables{DATADIR}
variable data installation directory: $MY::variables{LOCALSTATEDIR}
$config_file_message
EOF
package MY;
use English qw(-no_match_vars);
our %variables;
# force a perl-independant prefix for everything
sub constants {
my ($self) = @_;
# for some reason, initialising variables from the global scope doesn't work
%variables = (
PREFIX => '/usr/local',
INSTALLSCRIPT => '$(PREFIX)/bin',
INSTALLSITESCRIPT => '$(PREFIX)/bin',
INSTALLVENDORSCRIPT => '$(PREFIX)/bin',
INSTALLLIB => '$(DATADIR)/lib',
INSTALLSITELIB => '$(DATADIR)/lib',
INSTALLVENDORLIB => '$(DATADIR)/lib',
INSTALLMAN1DIR => '$(PREFIX)/share/man/man1',
INSTALLSITEMAN1DIR => '$(PREFIX)/share/man/man1',
INSTALLVENDORMAN1DIR => '$(PREFIX)/share/man/man1',
INSTALLMAN3DIR => '$(PREFIX)/share/man/man3',
INSTALLSITEMAN3DIR => '$(PREFIX)/share/man/man3',
INSTALLVENDORMAN3DIR => '$(PREFIX)/share/man/man3',
SYSCONFDIR => '$(PREFIX)/etc/fusioninventory',
DATADIR => '$(PREFIX)/share/fusioninventory',
LOCALSTATEDIR => '$(PREFIX)/var/fusioninventory',
);
# allow variables defined on command line to override defaults
foreach my $name (keys %variables) {
$variables{$name} = $self->{ARGS}->{$name} if $self->{ARGS}->{$name};
}
# get all standard MM variables definitions, and override them if needed
my @code = split(/\n/, $self->SUPER::constants(@_));
foreach my $line (@code) {
# Skip comments
next if $line =~ /^\s*#/;
# Skip everything which isn't a var assignment.
next unless $line =~ /^([A-Z0-9_]+) =/;
my $name = $1;
# skip variables we're not interested
next unless $variables{$name};
$line = "$name = $variables{$name}";
}
# add out own variables
foreach my $name (qw/SYSCONFDIR DATADIR LOCALSTATEDIR/) {
push @code, "$name = $variables{$name}";
}
return join("\n", @code);
}
sub install {
my ($self) = @_;
my $install = $self->SUPER::install(@_);
# add dependency on data and configuration installation targets, and remove
# dependency on perlocal installation target
# depending on MakeMaker version, the line to match changes
$install =~ s/install :: pure_install doc_install/install :: pure_install config_install data_install/;
$install =~ s/install :: all pure_install doc_install/install :: all pure_install config_install data_install/;
# suppress all lines related to packlist file installation
$install =~ s/.*\.packlist \\\n//g;
# add data and configuration installation targets
$install .= <<'EOF';
config_install :
install -d -m 755 $(DESTDIR)$(SYSCONFDIR)
if [ -f $(DESTDIR)/$(SYSCONFDIR)/agent.cfg ]; then \
install -m 644 etc/agent.cfg $(DESTDIR)$(SYSCONFDIR)/agent.cfg.new; \
else \
install -m 644 etc/agent.cfg $(DESTDIR)$(SYSCONFDIR)/agent.cfg; \
fi
data_install :
install -d -m 755 $(DESTDIR)$(DATADIR)
install -m 644 share/pci.ids $(DESTDIR)$(DATADIR)/
install -m 644 share/usb.ids $(DESTDIR)$(DATADIR)/
install -m 644 share/sysobjectid.*.ids $(DESTDIR)$(DATADIR)/
install -d -m 755 $(DESTDIR)$(DATADIR)/html
install -m 644 share/html/* $(DESTDIR)$(DATADIR)/html
EOF
return $install;
}
# ensure binaries get modified to use configured directories (on Unix only)
sub installbin {
my ($self) = @_;
my $installbin = $self->SUPER::installbin(@_);
return $installbin if $OSNAME eq 'MSWin32';
$installbin =~ s|\t\$\(FIXIN\) (.*)\n|\t\$(FIXIN) $1\n\t\$(FINALIZE) $1\n|g;
$installbin .= <<'EOF';
FINALIZE = $(ABSPERLRUN) -pi \
-e 's|use lib .*|use lib "$(DATADIR)/lib";|;' \
-e 's|confdir => .*|confdir => "$(SYSCONFDIR)",|;' \
-e 's|datadir => .*|datadir => "$(DATADIR)",|;' \
-e 's|libdir => .*|libdir => "$(DATADIR)/lib",|;' \
-e 's|vardir => .*|vardir => "$(LOCALSTATEDIR)",|' \
--
EOF
return $installbin;
}