Forgot from #16628.
[p5sagit/p5-mst-13.2.git] / ext / Encode / Makefile.PL
CommitLineData
3ef515df 1use 5.007003;
2c674647 2use ExtUtils::MakeMaker;
14a8264b 3
a999c27c 4# Just for sure :)
5unless($ENV{PERL_CORE}) {
6 $ENV{PERL_CORE} = 1 if ($^X =~ m{\bminiperl[^/\\\]>:]*$}o);
7}
8
5d030b67 9my %tables =
10 (
071db25d 11 def_t => ['ascii.ucm',
12 '8859-1.ucm',
13 ]
5d030b67 14 );
14a8264b 15
3ef515df 16my @exe_files = qw(bin/enc2xs
17 bin/piconv
18 );
19my @more_exe_files = qw(
a999c27c 20 unidump
3ef515df 21 );
22my @pmlibdirs = qw(lib Encode);
67d7b5ef 23for my $arg (@ARGV){
037b88d6 24 if ($arg eq "MORE_SCRIPTS"){
67d7b5ef 25 push @exe_files, @more_exe_files;
26 }
3ef515df 27 if ($arg eq "INSTALL_UCM"){
28 push @pmlibdirs, "ucm";
29 }
67d7b5ef 30}
31
2c674647 32WriteMakefile(
18586f54 33 NAME => "Encode",
67d7b5ef 34 EXE_FILES => \@exe_files,
023d8852 35 VERSION_FROM => 'Encode.pm',
18586f54 36 OBJECT => '$(O_FILES)',
37 'dist' => {
38 COMPRESS => 'gzip -9f',
39 SUFFIX => 'gz',
40 DIST_DEFAULT => 'all tardist',
41 },
42 MAN3PODS => {},
3ef515df 43 INC => "-I./Encode",
44 PMLIBDIRS => \@pmlibdirs,
18586f54 45 );
2f2b4ff2 46
47package MY;
48
311a0942 49
50sub post_initialize
51{
18586f54 52 my ($self) = @_;
53 my %o;
54 # Find existing O_FILES
55 foreach my $f (@{$self->{'O_FILES'}})
56 {
57 $o{$f} = 1;
58 }
59 my $x = $self->{'OBJ_EXT'};
60 # Add the table O_FILES
61 foreach my $e (keys %tables)
14a8264b 62 {
18586f54 63 $o{$e.$x} = 1;
14a8264b 64 }
18586f54 65 # Trick case-blind filesystems.
66 delete $o{'encode'.$x};
67 $o{'Encode'.$x} = 1;
68 # Reset the variable
69 $self->{'O_FILES'} = [sort keys %o];
70 my @files;
71 foreach my $table (keys %tables)
72 {
e7cbefb8 73 foreach my $ext (qw($(OBJ_EXT) .c .h .exh .fnm))
18586f54 74 {
75 push (@files,$table.$ext);
76 }
77}
78$self->{'clean'}{'FILES'} .= join(' ',@files);
79return '';
311a0942 80}
81
2f2b4ff2 82sub postamble
83{
18586f54 84 my $self = shift;
3ef515df 85 my $dir = $self->catdir($self->curdir,'ucm');
e7cbefb8 86 my $str = "# Encode\$(OBJ_EXT) depends on .h and .exh files not .c files - but all written by enc2xs\n";
18586f54 87 $str .= 'Encode$(OBJ_EXT) :';
88 foreach my $table (keys %tables)
14a8264b 89 {
18586f54 90 $str .= " $table.c";
14a8264b 91 }
18586f54 92 $str .= "\n\n";
93 foreach my $table (keys %tables)
14a8264b 94 {
18586f54 95 my $numlines = 1;
96 my $lengthsofar = length($str);
97 my $continuator = '';
67d7b5ef 98 my $enc2xs = $self->catfile('bin', 'enc2xs');
99 $str .= "$table.c : $enc2xs Makefile.PL";
18586f54 100 foreach my $file (@{$tables{$table}})
101 {
102 $str .= $continuator.' '.$self->catfile($dir,$file);
103 if ( length($str)-$lengthsofar > 128*$numlines )
104 {
105 $continuator .= " \\\n\t";
106 $numlines++;
107 } else {
108 $continuator = '';
109 }
110 }
46fc212f 111 my $plib = $self->{PERL_CORE} ? '"-I$(PERL_LIB)"' : '';
b88803e8 112 $plib .= " -MCross=$::Cross::platform" if defined $::Cross::platform;
46fc212f 113 my $ucopts = '-"Q" -"O"';
114 $str .=
a999c27c 115 qq{\n\t\$(PERL) $plib $enc2xs $ucopts -o \$\@ -f $table.fnm\n\n};
18586f54 116 open (FILELIST, ">$table.fnm")
117 || die "Could not open $table.fnm: $!";
118 foreach my $file (@{$tables{$table}})
119 {
120 print FILELIST $self->catfile($dir,$file) . "\n";
121 }
122 close(FILELIST);
14a8264b 123 }
18586f54 124 return $str;
2f2b4ff2 125}