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