Integrate mainline
[p5sagit/p5-mst-13.2.git] / ext / Encode / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 my %tables = (8859 => ['ascii.ucm', 'cp1250.ucm', 'koi8-r.ucm' ],
4               EBCDIC  => ['cp1047.ucm','cp37.ucm','posix-bc.ucm'],
5               Symbols => ['symbol.ucm','dingbats.ucm'],
6              );
7
8 opendir(ENC,'Encode');
9 while (defined(my $file = readdir(ENC)))
10  {
11   if ($file =~ /8859.*\.ucm/)
12    {
13     push(@{$tables{8859}},$file);
14    }
15  }
16 closedir(ENC);
17
18
19 WriteMakefile(
20         NAME            => "Encode",
21         VERSION_FROM    => 'Encode.pm',
22         OBJECT          => '$(O_FILES)',
23         'dist'          => {
24                              COMPRESS   => 'gzip -9f',
25                              SUFFIX     => 'gz',
26                              DIST_DEFAULT => 'all tardist',
27                            },
28         MAN3PODS        => {},
29 );
30
31 package MY;
32
33
34 sub post_initialize
35 {
36  my ($self) = @_;
37  my %o;
38  # Find existing O_FILES
39  foreach my $f (@{$self->{'O_FILES'}})
40   {
41    $o{$f} = 1;
42   }
43  my $x = $self->{'OBJ_EXT'};
44  # Add the table O_FILES
45  foreach my $e (keys %tables)
46   {
47    $o{$e.$x} = 1;
48   }
49  # Trick case-blind filesystems.
50  delete $o{'encode'.$x};
51  $o{'Encode'.$x} = 1;
52  # Reset the variable
53  $self->{'O_FILES'} = [sort keys %o];
54  my @files;
55  foreach my $table (keys %tables)
56   {
57    foreach my $ext (qw($(OBJ_EXT) .c .h .def .fnm))
58     {
59      push (@files,$table.$ext);
60     }
61   }
62  $self->{'clean'}{'FILES'} .= join(' ',@files);
63  return '';
64 }
65
66 sub postamble
67 {
68  my $self = shift;
69  my $dir  = $self->catdir($self->curdir,'Encode');
70  my $str  = "# Encode\$(OBJ_EXT) depends on .h and .def files not .c files - but all written by compile\n";
71  $str  .= 'Encode$(OBJ_EXT) :';
72  foreach my $table (keys %tables)
73   {
74    $str .= " $table.c";
75   }
76  $str .= "\n\n";
77  foreach my $table (keys %tables)
78   {
79    my $numlines = 1;
80    my $lengthsofar = length($str);
81    my $continuator = '';
82    $str .= "$table.c : compile Makefile.PL";
83    foreach my $file (@{$tables{$table}})
84     {
85      $str .= $continuator.' '.$self->catfile($dir,$file);
86      if ( length($str)-$lengthsofar > 128*$numlines )
87       {
88        $continuator .= " \\\n\t";
89        $numlines++;
90       } else {
91        $continuator = '';
92       }
93     }
94    $str .= "\n\t\$(PERL) compile -o \$\@ -f $table.fnm\n\n";
95    open (FILELIST, ">$table.fnm")
96        || die "Could not open $table.fnm: $!";
97    foreach my $file (@{$tables{$table}})
98     {
99      print FILELIST $self->catfile($dir,$file) . "\n";
100     }
101    close(FILELIST);
102   }
103  return $str;
104 }