0.70 as released to CPAN. (only metadata and Module::Install changes)
[p5sagit/Devel-Size.git] / inc / Module / Install / Makefile.pm
CommitLineData
0430b7f7 1#line 1
2package Module::Install::Makefile;
3
4use strict 'vars';
5use Module::Install::Base;
6use ExtUtils::MakeMaker ();
7
8use vars qw{$VERSION $ISCORE @ISA};
9BEGIN {
f44772ad 10 $VERSION = '0.77';
0430b7f7 11 $ISCORE = 1;
12 @ISA = qw{Module::Install::Base};
13}
14
15sub Makefile { $_[0] }
16
17my %seen = ();
18
19sub prompt {
8b959707 20 shift;
21
22 # Infinite loop protection
23 my @c = caller();
24 if ( ++$seen{"$c[1]|$c[2]|$_[0]"} > 3 ) {
25 die "Caught an potential prompt infinite loop ($c[1]|$c[2]|$_[0])";
26 }
27
28 # In automated testing, always use defaults
29 if ( $ENV{AUTOMATED_TESTING} and ! $ENV{PERL_MM_USE_DEFAULT} ) {
30 local $ENV{PERL_MM_USE_DEFAULT} = 1;
31 goto &ExtUtils::MakeMaker::prompt;
32 } else {
33 goto &ExtUtils::MakeMaker::prompt;
34 }
0430b7f7 35}
36
37sub makemaker_args {
8b959707 38 my $self = shift;
f44772ad 39 my $args = ( $self->{makemaker_args} ||= {} );
40 %$args = ( %$args, @_ );
41 return $args;
0430b7f7 42}
43
44# For mm args that take multiple space-seperated args,
45# append an argument to the current list.
46sub makemaker_append {
8b959707 47 my $self = sShift;
48 my $name = shift;
49 my $args = $self->makemaker_args;
50 $args->{name} = defined $args->{$name}
51 ? join( ' ', $args->{name}, @_ )
52 : join( ' ', @_ );
0430b7f7 53}
54
55sub build_subdirs {
8b959707 56 my $self = shift;
57 my $subdirs = $self->makemaker_args->{DIR} ||= [];
58 for my $subdir (@_) {
59 push @$subdirs, $subdir;
60 }
0430b7f7 61}
62
63sub clean_files {
8b959707 64 my $self = shift;
65 my $clean = $self->makemaker_args->{clean} ||= {};
6ea94d90 66 %$clean = (
8b959707 67 %$clean,
6ea94d90 68 FILES => join ' ', grep { length $_ } ($clean->{FILES} || (), @_),
8b959707 69 );
0430b7f7 70}
71
72sub realclean_files {
6ea94d90 73 my $self = shift;
8b959707 74 my $realclean = $self->makemaker_args->{realclean} ||= {};
6ea94d90 75 %$realclean = (
8b959707 76 %$realclean,
6ea94d90 77 FILES => join ' ', grep { length $_ } ($realclean->{FILES} || (), @_),
8b959707 78 );
0430b7f7 79}
80
81sub libs {
8b959707 82 my $self = shift;
83 my $libs = ref $_[0] ? shift : [ shift ];
84 $self->makemaker_args( LIBS => $libs );
0430b7f7 85}
86
87sub inc {
8b959707 88 my $self = shift;
89 $self->makemaker_args( INC => shift );
90}
91
92my %test_dir = ();
93
94sub _wanted_t {
95 /\.t$/ and -f $_ and $test_dir{$File::Find::dir} = 1;
96}
97
98sub tests_recursive {
99 my $self = shift;
100 if ( $self->tests ) {
101 die "tests_recursive will not work if tests are already defined";
102 }
103 my $dir = shift || 't';
104 unless ( -d $dir ) {
105 die "tests_recursive dir '$dir' does not exist";
106 }
8b959707 107 %test_dir = ();
6ea94d90 108 require File::Find;
8b959707 109 File::Find::find( \&_wanted_t, $dir );
110 $self->tests( join ' ', map { "$_/*.t" } sort keys %test_dir );
0430b7f7 111}
112
113sub write {
8b959707 114 my $self = shift;
115 die "&Makefile->write() takes no arguments\n" if @_;
116
6ea94d90 117 # Make sure we have a new enough
118 require ExtUtils::MakeMaker;
f44772ad 119
120 # MakeMaker can complain about module versions that include
121 # an underscore, even though its own version may contain one!
122 # Hence the funny regexp to get rid of it. See RT #35800
123 # for details.
124
125 $self->configure_requires( 'ExtUtils::MakeMaker' => $ExtUtils::MakeMaker::VERSION =~ /^(\d+\.\d+)/ );
6ea94d90 126
127 # Generate the
8b959707 128 my $args = $self->makemaker_args;
129 $args->{DISTNAME} = $self->name;
6ea94d90 130 $args->{NAME} = $self->module_name || $self->name;
131 $args->{VERSION} = $self->version;
8b959707 132 $args->{NAME} =~ s/-/::/g;
133 if ( $self->tests ) {
134 $args->{test} = { TESTS => $self->tests };
135 }
136 if ($] >= 5.005) {
137 $args->{ABSTRACT} = $self->abstract;
138 $args->{AUTHOR} = $self->author;
139 }
140 if ( eval($ExtUtils::MakeMaker::VERSION) >= 6.10 ) {
141 $args->{NO_META} = 1;
142 }
143 if ( eval($ExtUtils::MakeMaker::VERSION) > 6.17 and $self->sign ) {
144 $args->{SIGN} = 1;
145 }
146 unless ( $self->is_admin ) {
147 delete $args->{SIGN};
148 }
149
150 # merge both kinds of requires into prereq_pm
151 my $prereq = ($args->{PREREQ_PM} ||= {});
152 %$prereq = ( %$prereq,
153 map { @$_ }
154 map { @$_ }
155 grep $_,
6ea94d90 156 ($self->configure_requires, $self->build_requires, $self->requires)
8b959707 157 );
158
6ea94d90 159 # Remove any reference to perl, PREREQ_PM doesn't support it
160 delete $args->{PREREQ_PM}->{perl};
161
8b959707 162 # merge both kinds of requires into prereq_pm
163 my $subdirs = ($args->{DIR} ||= []);
164 if ($self->bundles) {
165 foreach my $bundle (@{ $self->bundles }) {
166 my ($file, $dir) = @$bundle;
167 push @$subdirs, $dir if -d $dir;
168 delete $prereq->{$file};
169 }
170 }
171
172 if ( my $perl_version = $self->perl_version ) {
173 eval "use $perl_version; 1"
174 or die "ERROR: perl: Version $] is installed, "
175 . "but we need version >= $perl_version";
176 }
177
178 $args->{INSTALLDIRS} = $self->installdirs;
179
180 my %args = map { ( $_ => $args->{$_} ) } grep {defined($args->{$_})} keys %$args;
181
182 my $user_preop = delete $args{dist}->{PREOP};
183 if (my $preop = $self->admin->preop($user_preop)) {
f44772ad 184 foreach my $key ( keys %$preop ) {
185 $args{dist}->{$key} = $preop->{$key};
186 }
8b959707 187 }
188
189 my $mm = ExtUtils::MakeMaker::WriteMakefile(%args);
190 $self->fix_up_makefile($mm->{FIRST_MAKEFILE} || 'Makefile');
0430b7f7 191}
192
193sub fix_up_makefile {
8b959707 194 my $self = shift;
195 my $makefile_name = shift;
196 my $top_class = ref($self->_top) || '';
197 my $top_version = $self->_top->VERSION || '';
198
199 my $preamble = $self->preamble
200 ? "# Preamble by $top_class $top_version\n"
201 . $self->preamble
202 : '';
203 my $postamble = "# Postamble by $top_class $top_version\n"
204 . ($self->postamble || '');
205
206 local *MAKEFILE;
207 open MAKEFILE, "< $makefile_name" or die "fix_up_makefile: Couldn't open $makefile_name: $!";
208 my $makefile = do { local $/; <MAKEFILE> };
209 close MAKEFILE or die $!;
210
211 $makefile =~ s/\b(test_harness\(\$\(TEST_VERBOSE\), )/$1'inc', /;
212 $makefile =~ s/( -I\$\(INST_ARCHLIB\))/ -Iinc$1/g;
213 $makefile =~ s/( "-I\$\(INST_LIB\)")/ "-Iinc"$1/g;
214 $makefile =~ s/^(FULLPERL = .*)/$1 "-Iinc"/m;
215 $makefile =~ s/^(PERL = .*)/$1 "-Iinc"/m;
216
217 # Module::Install will never be used to build the Core Perl
218 # Sometimes PERL_LIB and PERL_ARCHLIB get written anyway, which breaks
219 # PREFIX/PERL5LIB, and thus, install_share. Blank them if they exist
220 $makefile =~ s/^PERL_LIB = .+/PERL_LIB =/m;
221 #$makefile =~ s/^PERL_ARCHLIB = .+/PERL_ARCHLIB =/m;
222
223 # Perl 5.005 mentions PERL_LIB explicitly, so we have to remove that as well.
6ea94d90 224 $makefile =~ s/(\"?)-I\$\(PERL_LIB\)\1//g;
8b959707 225
226 # XXX - This is currently unused; not sure if it breaks other MM-users
227 # $makefile =~ s/^pm_to_blib\s+:\s+/pm_to_blib :: /mg;
228
229 open MAKEFILE, "> $makefile_name" or die "fix_up_makefile: Couldn't open $makefile_name: $!";
230 print MAKEFILE "$preamble$makefile$postamble" or die $!;
231 close MAKEFILE or die $!;
232
233 1;
0430b7f7 234}
235
236sub preamble {
8b959707 237 my ($self, $text) = @_;
238 $self->{preamble} = $text . $self->{preamble} if defined $text;
239 $self->{preamble};
0430b7f7 240}
241
242sub postamble {
8b959707 243 my ($self, $text) = @_;
244 $self->{postamble} ||= $self->admin->postamble;
245 $self->{postamble} .= $text if defined $text;
246 $self->{postamble}
0430b7f7 247}
248
2491;
250
251__END__
252
f44772ad 253#line 379