update Changes file
[p5sagit/local-lib.git] / Makefile.PL
CommitLineData
391107e5 1use strict;
2use warnings;
c4dbb66c 3use File::Spec;
4use Cwd;
b9c94c15 5use vars qw($bootstrapping $bootstrapping_args $no_manpages);
53699c99 6use Config;
86f54d7f 7
1c9cde8e 8# Solaris (and possibly other Unices) have a tar in /usr/bin that, among
9# other things, does not understand @LongLink. This can cause
10# extraction to look like it succeeded, but it actually failed (because
11# the error message for the @LongLink failure scrolled offscreen).
12# Therefore, given the fact that GNU tar is the most widespread tar available,
13# and it actually supports the feature we want (I'd bet it originated in GNU
14# tar, but I digress), we'll look for GNU tar. If we don't find it, and the
15# user hasn't pointed us to a suitable tar, we'll bomb and tell them what to
16# do.
17
18my $have_gtar = 0;
19if($^O eq 'solaris') {
20 $have_gtar = 0;
21 for my $env_path (split /:/, $ENV{PATH}) {
22 $have_gtar = 1 if -x File::Spec->catfile($env_path, 'gtar');
23 }
24} else {
25 $have_gtar = 1;
26}
27if(exists $ENV{PERL_LL_TAR}) {
28 $have_gtar ||= -x $ENV{PERL_LL_TAR};
29}
30
c27d9c94 31die <<'DEATH' unless $have_gtar;
1c9cde8e 32You are using Solaris (or another traditional Unix) that does not provide a sane
33tar, capable of dealing with the output of GNU tar. Please either set the
34PERL_LL_TAR environment variable to the location of a version of tar that
35understands the @LongLink convention or put a binary named gtar somewhere on
36your PATH.
37DEATH
38
c4dbb66c 39my $cwd;
86f54d7f 40BEGIN {
c4dbb66c 41 $cwd = Cwd::cwd();
d4dbe584 42 # watch out for fancy dashes. these can wind up in our @ARGV if the user is
43 # copypasting the bootstrap command from the POD displayed e.g. by perldoc
44 # on a Mac OS X terminal. since no software recognizes and handles these
45 # dashes, it's better to die loudly telling the user exactly what happened
46 # so they don't make the same mistake again rather than being the only
47 # program in the universe that works with them.
48 if(grep { /−/ } @ARGV) {
49 die <<'DEATH';
50WHOA THERE! It looks like you've got some fancy dashes in your commandline!
51These are *not* the traditional -- dashes that software recognizes. You
52probably got these by copy-pasting from the perldoc for this module as
53rendered by a UTF8-capable formatter. This most typically happens on an OS X
54terminal, but can happen elsewhere too. Please try again after replacing the
55dashes with normal minus signs.
56DEATH
57 }
c2447f35 58 if (my ($x) = grep { /^--bootstrap(?:=.*)?$/ } @ARGV) {
59 @ARGV = grep { !/^--bootstrap(?:=.*)?$/ } @ARGV;
86f54d7f 60 $bootstrapping = 1;
b9c94c15 61 if(my ($x) = grep { /^--no-manpages/ } @ARGV) {
62 $no_manpages = 1;
63 @ARGV = grep { !/^--no-manpages/ } @ARGV;
64 }
c4dbb66c 65 my ($path) = $x =~ /^--bootstrap(?:=(.*))?$/;
66 my @args = $path ? $path : ();
86f54d7f 67
68 {
69 local @INC = @INC;
70 unshift(@INC, 'lib');
71 require local::lib;
72 }
73
74 local::lib->import(@args);
75
53699c99 76 my @libs = map { "-I$_" } split $Config{path_sep}, $ENV{PERL5LIB};
c4dbb66c 77 $bootstrapping_args = "@libs";
86f54d7f 78 push(@ARGV,$ENV{PERL_MM_OPT});
c4dbb66c 79 push(@ARGV, @libs);
86f54d7f 80
1c9cde8e 81 # <mst> GODDAMN makepl_arg INSTALLDIRS=site
82 # <mst> we must set PERL_AUTOINSTALL_PREFER_CPAN too
83 $ENV{PERL_AUTOINSTALL_PREFER_CPAN} = 1;
84
86f54d7f 85 system($^X, '-MExtUtils::MakeMaker 6.31', '-e1');
b57052ce 86 my $eumm = $? >> 8;
87
e9227729 88 system($^X, '-MExtUtils::Install 1.43', '-e1');
89 my $eui = $? >> 8;
90
d2185901 91 system($^X, '-MCPAN 1.82', '-e1');
b57052ce 92 my $cpan = $? >> 8;
93 my $cpan_command = '';
86f54d7f 94
528fa9be 95 my $did_cpan_config = 0;
96 my $cpan_config_command =
279e9381 97 'my $done; require ExtUtils::MakeMaker;
98 my $orig = ExtUtils::MakeMaker->can("prompt");
b143d045 99 *ExtUtils::MakeMaker::prompt = sub ($;$) {
279e9381 100 if (!$done && $_[0] =~ /manual configuration/) {
101 $done++;
102 return "no";
103 }
104 return $orig->(@_);
105 };
da6e3c2d 106 # not yet -- apeiron, 2010-03-10
107 #$CPAN::Config->{urllist} = ["http://cpan.shadowcatprojects.net"];
1c9cde8e 108 # <mst> all bootstrapped fine on one DH account
109 # <mst> on another, it tries to install man stuff into /usr/local
110 # <mst> cannot for the life of me figure out why
111 # <mst> (same fucking server as well)
112 # <mst> GOT THE BASTARD
113 # <mst> ExtUtils::ParseXS uses Module::Build
114 # <mst> but Module::Build depends on it
115 # <mst> so you need to set prefer_installer MM
f48dec31 116 # <mst> so cpan uses EU::ParseXS Makefile.PL
1c9cde8e 117 # <mst> since we already got EUMM, *that* works
118 $CPAN::Config->{prefer_installer} = "EUMM";
279e9381 119 CPAN::Config->load;
120 unless ($done || -w $CPAN::Config->{keep_source_where}) {
715c31a0 121 my $save = $CPAN::Config->{urllist};
122 delete @{$CPAN::Config}{keys %$CPAN::Config};
123 $CPAN::Config->{urllist} = $save;
124 CPAN::Config->init;
528fa9be 125 }';
715c31a0 126
279e9381 127 $ENV{PERL_MM_USE_DEFAULT} = 1;
128
86f54d7f 129 # XXX - remove the force on EUMM once its test suite survive PERL_MM_OPT
130
b57052ce 131 if ($eumm) { # non-zero exit
132 $cpan_command .= 'force("install","ExtUtils::MakeMaker"); ';
133 }
e9227729 134 if ($eui) {
135 $cpan_command .= 'install("ExtUtils::Install"); ';
136 }
b57052ce 137 if ($cpan) {
c2447f35 138 $cpan_command .= 'force("install","CPAN"); ';
b57052ce 139 }
140 if(length $cpan_command) {
528fa9be 141 system($^X, '-MCPAN', '-e', $cpan_config_command);
142 $did_cpan_config++;
b57052ce 143 system($^X, '-MCPAN', '-e', $cpan_command);
86f54d7f 144 }
715c31a0 145 if ($cpan) {
146 system($^X, '-MCPAN', '-e', 'CPAN::Config->load; CPAN::Config->commit;');
147 }
b9c94c15 148 if($no_manpages) {
149 # if we call this code directly, the changes get written to
150 # $BOOTSTRAP/lib/perl5/CPAN/Config.pm, not where the user expects them to
151 # be in their ~/.cpan/CPAN/MyConfig.pm.
528fa9be 152 system($^X, '-MCPAN', '-e', $cpan_config_command)
153 unless $did_cpan_config;
b9c94c15 154 system($^X, '-MCPAN',
155 '-e',
156 q[CPAN::HandleConfig->load;],
157 '-e',
158 q[$CPAN::Config->{makepl_arg} = ] .
159 q['INSTALLMAN1DIR=none INSTALLMAN3DIR=none';],
160 '-e',
161 q[$CPAN::Config->{buildpl_arg} = ] .
162 q['--install_path libdoc="" --install_path bindoc=""';],
163 '-e',
164 q[CPAN::Config->commit;],
165 );
166 }
c4dbb66c 167
168 chdir($cwd);
86f54d7f 169 }
170}
171
391107e5 172use inc::Module::Install;
173
174name 'local-lib';
175all_from 'lib/local/lib.pm';
176
177requires 'ExtUtils::MakeMaker' => '6.31'; # version INSTALL_BASE was added
e9227729 178requires 'ExtUtils::Install' => '1.43'; # ditto
176d4afb 179requires 'Module::Build' => '0.36'; # PERL_MB_OPT
d2185901 180my $required_CPAN = '1.82';
6d74e2d7 181requires 'CPAN' => $required_CPAN; # sudo support + CPAN::HandleConfig
86f54d7f 182
10fcef9b 183# No, really. See
184# https://rt.cpan.org/Public/Bug/Display.html?id=23735
185# for why CPAN now sets the CPANPLUS env var.
186# trouble is this means we can't auto_install(_now) CPAN itself
187# without this beautiful hack
188
189my $no_cpanplus_env = !exists $ENV{PERL5_CPANPLUS_IS_RUNNING};
9a021b2b 190my $no_cpan_env = !exists $ENV{PERL5_CPAN_IS_RUNNING};
10fcef9b 191require CPAN;
192delete $ENV{PERL5_CPANPLUS_IS_RUNNING} if $no_cpanplus_env;
9a021b2b 193delete $ENV{PERL5_CPAN_IS_RUNNING} if $no_cpan_env;
10fcef9b 194
c4dbb66c 195# and make sure that the user doesn't have any existing CPAN config that'll
196# cause us problems for the next few steps.
6d74e2d7 197{
198 local $@;
199 eval { require CPAN::HandleConfig; };
200 # Need newish CPAN.pm for this, ergo skip it if that version of CPAN isn't
201 # installed yet.
202 # It will already be installed by the time we reach here if bootstrapping,
203 # otherwise, if we're running from CPAN then it will be installed soon
204 # enough, and we'll come back here..
59b1a634 205 if (!$@ ) {
206 CPAN::HandleConfig->require_myconfig_or_config;
207 if ( $CPAN::Config ) {
208 for my $eumm_setting ( qw/makepl_arg make_install_arg/ ) {
209 if ($CPAN::Config->{$eumm_setting} =~ /(?:PREFIX|INSTALL_BASE)/) {
210 die <<"DEATH";
359329d3 211WHOA THERE! It looks like you've got $CPAN::Config->{$eumm_setting} set. This is
212known to cause problems with local::lib. Please either remove this setting or
213clear out your .cpan directory.
214DEATH
59b1a634 215 }
6d74e2d7 216 }
6d74e2d7 217
59b1a634 218 for my $mb_setting (qw/mbuild_arg mbuild_install_arg mbuildpl_arg/) {
219 if ($CPAN::Config->{$mb_setting} =~ /(?:--prefix|--install_base)/) {
220 die <<"DEATH";
359329d3 221WHOA THERE! It looks like you've got $CPAN::Config->{$mb_setting} set. This is
222known to cause problems with local::lib. Please either remove this setting or
223clear out your .cpan directory.
224DEATH
59b1a634 225 }
6d74e2d7 226 }
227 }
c4dbb66c 228 }
6d74e2d7 229 else {
230 my $error = $@;
231 require CPAN;
232 # Explode if it looks like requiring CPAN::HandleConfig should
233 # have worked, but didn't.
234 die($error) if $CPAN::VERSION >= $required_CPAN;
c4dbb66c 235 }
236}
237
86f54d7f 238if ($bootstrapping) {
239 auto_install_now;
c4dbb66c 240 postamble <<"END";
241PERL += $bootstrapping_args
242FULLPERL += $bootstrapping_args
243END
86f54d7f 244} else {
245 auto_install;
246}
c4dbb66c 247chdir($cwd);
391107e5 248WriteAll;