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