-
Notifications
You must be signed in to change notification settings - Fork 126
/
Makefile.PL
300 lines (254 loc) · 10.6 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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
BEGIN {
# Avoid installation issue introduced by perl 5.24.1 removing '.' path from
# @INC to avoid possible module injection in normal running perl scripts
push @INC, '.' if ( $^V && $^V gt 'v5.24' );
}
use inc::Module::Install;
use English qw(-no_match_vars);
use lib::FusionInventory::Agent::Version;
name 'FusionInventory-Agent';
include 'Module::AutoInstall';
abstract 'FusionInventory unified Agent for UNIX, Linux, Windows and MacOSX';
license 'gpl';
repository 'https://github.com/fusioninventory/fusioninventory-agent';
version_from 'lib/FusionInventory/Agent/Version.pm';
perl_version '5.008';
authors 'FusionInventory Team';
provides
'FusionInventory::Agent' => {
file => 'lib/FusionInventory/Agent.pm',
version => $FusionInventory::Agent::Version::VERSION
};
# mandatory dependencies
requires 'File::Which' => '0';
requires 'LWP::UserAgent' => '5.8';
requires 'Net::IP' => '0';
requires 'Text::Template' => '0';
requires 'UNIVERSAL::require' => '0';
requires 'XML::TreePP' => '0.26';
requires 'XML::XPath' => '0';
requires 'YAML::Tiny' => '0';
requires 'Memoize' => '0';
if ($OSNAME eq 'MSWin32') {
requires 'Win32::OLE' => '0';
requires 'Win32::Job' => '0';
requires 'Win32::TieRegistry' => '0';
}
recommends 'Compress::Zlib' => '0';
recommends 'HTTP::Daemon' => '0';
recommends 'IO::Socket::SSL' => '1.14';
recommends 'LWP::Protocol::https' => '0';
if ($OSNAME ne 'MSWin32') {
recommends 'Proc::Daemon' => '0';
} else {
recommends 'Win32::Daemon' => '0';
recommends 'Win32::Unicode::File' => '0';
}
# test dependencies
test_requires 'File::Copy::Recursive' => '0';
test_requires 'HTTP::Proxy' => '0';
test_requires 'HTTP::Server::Simple' => '0';
test_requires 'HTTP::Server::Simple::Authen' => '0';
test_requires 'IO::Socket::SSL' => '0';
test_requires 'IO::Capture::Stderr' => '0';
test_requires 'IPC::Run' => '0';
test_requires 'JSON::PP' => '0';
test_requires 'Net::SNMP' => '0';
test_requires 'LWP::Protocol::https' => '0';
test_requires 'Parallel::ForkManager' => '0';
test_requires 'Test::Compile' => '0';
test_requires 'Test::Deep' => '0';
test_requires 'Test::Exception' => '0';
test_requires 'Test::MockModule' => '0';
test_requires 'Test::More' => '0.93'; # subtest
test_requires 'Test::NoWarnings' => '0';
test_requires 'Test::MockObject' => '0';
# Inventory
recommends 'DateTime' => '0';
recommends 'Net::CUPS' => 0.60 if $OSNAME ne 'MSWin32';
recommends 'Parse::EDID' => '0';
# Deploy
recommends 'Archive::Extract' => '0';
recommends 'Digest::SHA' => '0';
recommends 'File::Copy::Recursive' => '0';
recommends 'JSON::PP' => '0';
recommends 'Net::Ping' => '0';
recommends 'Parallel::ForkManager' => '0';
recommends 'URI::Escape' => '0';
# Network
recommends 'Net::NBName' => '0';
recommends 'Net::SNMP' => '0';
recommends 'Thread::Queue' => '2.01';
# Wake-On-LAN
recommends 'Net::Write::Layer2' => '0';
install_script 'bin/fusioninventory-agent';
install_script 'bin/fusioninventory-win32-service' if $OSNAME eq 'MSWin32';
install_script 'bin/fusioninventory-wmi' 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';
install_script 'bin/fusioninventory-remoteinventory';
resources
homepage => "http://www.fusioninventory.org",
bugtracker => "https://github.com/fusioninventory/fusioninventory-agent/issues",
repository => "https://github.com/fusioninventory/fusioninventory-agent/",
IRC => "irc://irc.freenode.net/#fusioninventory";
makemaker_args(
test => {
TESTS => join ' ', map { glob } qw(
t/*.t
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
--------------------
version : '$MY::variables{VERSION}'
comments: '$MY::variables{COMMENTS}'
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 Config;
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',
VERSION => '',
COMMENTS => "Platform : $Config{myuname},Build date: ".gmtime()." (GMT)",
RAWCOMMENTS => '',
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;
if ($name eq 'VERSION' && ! $variables{VERSION}) {
( $variables{VERSION} ) = /=\s*(\S+)\s*$/;
}
# skip variables we're not interested
next unless $variables{$name};
$line = "$name = $variables{$name}";
}
# Fix COMMENTS and prepare it as a list of perl strings
if ($variables{COMMENTS}) {
$variables{COMMENTS} =~ s/[^a-zA-Z0-9 ,.:_-]//g;
$variables{RAWCOMMENTS} = "\\n "
. join(",\\n ",map { "\\\"$_\\\"" } split(/,/,$variables{COMMENTS}))
. "\\n";
}
# add out own variables
foreach my $name (qw/SYSCONFDIR DATADIR LOCALSTATEDIR COMMENTS RAWCOMMENTS/) {
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 setup_install version_install/;
$install =~ s/install :: all pure_install doc_install/install :: all pure_install config_install data_install setup_install version_install/;
# suppress all lines related to packlist file installation
$install =~ s/.*\.packlist \\\n//g;
# add data and configuration installation targets
$install .= <<'EOF';
config_install : pure_install
$(MKPATH) $(DESTDIR)$(SYSCONFDIR)
$(NOECHO) $(CHMOD) $(PERM_DIR) $(DESTDIR)$(SYSCONFDIR)
for config in agent.cfg $(shell cd etc; echo *-plugin.cfg ); \
do \
if $(TEST_F) $(DESTDIR)$(SYSCONFDIR)/$$config; then \
$(RM_F) $(DESTDIR)$(SYSCONFDIR)/$$config.new; \
$(CP) etc/$$config $(DESTDIR)$(SYSCONFDIR)/$$config.new; \
$(CHMOD) $(PERM_RW) $(DESTDIR)$(SYSCONFDIR)/$$config.new; \
else \
$(CP) etc/$$config $(DESTDIR)$(SYSCONFDIR)/$$config; \
$(CHMOD) $(PERM_RW) $(DESTDIR)$(SYSCONFDIR)/$$config; \
fi; \
done
$(ABSPERLRUN) -pi \
-e "s|=> undef, # SYSCONFDIR.*|=> '$(SYSCONFDIR)',|;" \
$(DESTDIR)$(INSTALLSITELIB)/FusionInventory/Agent/Config.pm
data_install : pure_install
$(MOD_INSTALL) "share" "$(DESTDIR)$(DATADIR)"
setup_install : pure_install
# Cleanup setup file to only really needed hash during install
$(ABSPERLRUN) -pi \
-e 'undef $$_ if m/^use (File::Spec|Cwd)/;' \
-e 'if (m/# Compute/) { print "1;\n"; last; };' \
-e 's|datadir => .*|datadir => "$(DATADIR)",|;' \
-e 's|libdir => .*|libdir => "$(INSTALLSITELIB)",|;' \
-e 's|vardir => .*|vardir => "$(LOCALSTATEDIR)",|' \
$(DESTDIR)$(INSTALLSITELIB)/setup.pm
version_install : pure_install
# Cleanup and update Version module during install
$(ABSPERLRUN) -pi \
-e 'last if m|^__END__|;' \
-e 's|^our \$$VERSION =.*|our \$$VERSION = "$(VERSION)";|;' \
-e 's|^our \$$COMMENTS =.*|our \$$COMMENTS = [$(RAWCOMMENTS)];|;' \
$(DESTDIR)$(INSTALLSITELIB)/FusionInventory/Agent/Version.pm
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 "$(INSTALLSITELIB)";|;' \
--
EOF
return $installbin;
}