#!/usr/bin/perl my $dir = `pwd`; chomp $dir; $dir .= "/../../.."; #- avoid polluting environment with specific locales. delete $ENV{$_} foreach qw(LC_MONETARY LC_CTYPE LC_NUMERIC LC_MESSAGES LC_TIME LC_COLLATE LANGUAGE LANG RPM_INSTALL_LANG); if ($ENV{DISPLAY}) { system "xset", "+fp", "$dir/usr/X11R6/lib/X11/fonts/"; system "xset", "fp", "rehash"; } #- perl version of the install, we use directly the version we found, #- this means there SHOULD BE no module compiled for an older version of perl #- which will be used by DrakX. my ($version, $arch) = (glob "$dir/usr/lib/perl5/*/*/CORE/libperl.so")[0] =~ m|$dir/usr/lib/perl5/([^/]*)/([^/]*)/CORE/libperl.so|; #- keep it mind the ELF loader to use. $ENV{LD_LOADER} = "$dir/lib/ld-linux.so.2"; $ENV{LOCPATH}="$dir/usr/share/locale"; $ENV{GCONV_PATH}="$dir/usr/lib/gconv"; $ENV{PERL5LIB} = join ":", map { "$dir/usr/lib/perl5/$_" } ("$version/$arch", "$version", "site_perl/$version/$arch", "site_perl/$version", "site_perl"); $ENV{LD_LIBRARY_PATH} = "$dir/usr/bin:$dir/bin:$dir/sbin:$dir/usr/sbin:$dir/usr/X11R6/bin:$dir/lib:$dir/usr/lib:$dir/usr/lib/perl5/$version/$arch/CORE"; $ENV{PATH} = join(":", map { "$dir/$_" } split ":", "/usr/bin:/bin:/sbin:/usr/sbin:/usr/X11R6/bin") . ":$ENV{PATH}"; $ENV{SHARE_PATH} = "$dir/usr/share"; $ENV{RPMRC_FILE} = "$dir/usr/lib/rpm/rpmrc"; $ENV{GTK_DATA_PREFIX} = "$dir/usr"; $ENV{GTK_EXE_PREFIX} = "$dir/usr"; $ENV{GDK_IMLIB_PATH} = "$dir/usr/lib"; system $ENV{LD_LOADER}, "../perl", "./install2", "--g_auto_install", @ARGV; #- at this point, unwind above else they will not run correctly (wrong ld-linux.so.2) delete $ENV{GTK_EXE_PREFIX}; delete $ENV{RPMRC_FILE}; delete $ENV{LOCPATH}; delete $ENV{SHARE_PATH}; delete $ENV{PATH}; delete $ENV{LD_LIBRARY_PATH}; delete $ENV{PERL5LIB}; delete $ENV{LD_LOADER}; if ($ENV{DISPLAY}) { system "xset", "-fp", "$dir/usr/X11R6/lib/X11/fonts/"; system "xset", "fp", "rehash"; } >topic/Corpo_2_1 Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/perl-install/network/ifw.pm
blob: 5be73cc5911aeeea7470c31b03e6e83b903e2689 (plain)
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