xref: /openbsd/gnu/usr.bin/perl/cpan/Encode/TW/Makefile.PL (revision 898184e3)
1use 5.7.2;
2use strict;
3use ExtUtils::MakeMaker;
4use strict;
5
6my %tables = (big5_t	=> ['big5-eten.ucm',
7                'big5-hkscs.ucm',
8                'macChintrad.ucm',
9                'cp950.ucm'],
10             );
11
12unless ($ENV{AGGREGATE_TABLES}){
13    my @ucm;
14    for my $k (keys %tables){
15    push @ucm, @{$tables{$k}};
16    }
17    %tables = ();
18    my $seq = 0;
19    for my $ucm (sort @ucm){
20    # 8.3 compliance !
21    my $t = sprintf ("%s_%02d_t", substr($ucm, 0, 2), $seq++);
22    $tables{$t} = [ $ucm ];
23    }
24}
25
26my $name = 'TW';
27
28WriteMakefile(
29              INC		=> "-I../Encode",
30          NAME		=> 'Encode::'.$name,
31          VERSION_FROM	=> "$name.pm",
32          OBJECT		=> '$(O_FILES)',
33          'dist'		=> {
34          COMPRESS	=> 'gzip -9f',
35          SUFFIX	=> 'gz',
36          DIST_DEFAULT => 'all tardist',
37          },
38          MAN3PODS	=> {},
39          # OS 390 winges about line numbers > 64K ???
40          XSOPT => '-nolinenumbers',
41          );
42
43package MY;
44
45sub post_initialize
46{
47    my ($self) = @_;
48    my %o;
49    my $x = $self->{'OBJ_EXT'};
50    # Add the table O_FILES
51    foreach my $e (keys %tables)
52    {
53    $o{$e.$x} = 1;
54    }
55    $o{"$name$x"} = 1;
56    $self->{'O_FILES'} = [sort keys %o];
57    my @files = ("$name.xs");
58    $self->{'C'} = ["$name.c"];
59    $self->{SOURCE} .= " $name.c"
60        if $^O eq 'MacOS' && $self->{SOURCE} !~ /\b$name\.c\b/;
61    $self->{'H'} = [$self->catfile($self->updir,'Encode', 'encode.h')];
62    my %xs;
63    foreach my $table (keys %tables) {
64    push (@{$self->{'C'}},"$table.c");
65    # Do NOT add $table.h etc. to H_FILES unless we own up as to how they
66    # get built.
67    foreach my $ext (qw($(OBJ_EXT) .c .h .exh .fnm)) {
68        push (@files,$table.$ext);
69    }
70    $self->{SOURCE} .= " $table.c"
71        if $^O eq 'MacOS' && $self->{SOURCE} !~ /\b$table\.c\b/;
72    }
73    $self->{'XS'} = { "$name.xs" => "$name.c" };
74    $self->{'clean'}{'FILES'} .= join(' ',@files);
75    open(XS,">$name.xs") || die "Cannot open $name.xs:$!";
76    print XS <<'END';
77#include <EXTERN.h>
78#include <perl.h>
79#include <XSUB.h>
80#define U8 U8
81#include "encode.h"
82END
83    foreach my $table (keys %tables) {
84    print XS qq[#include "${table}.h"\n];
85    }
86    print XS <<"END";
87
88static void
89Encode_XSEncoding(pTHX_ encode_t *enc)
90{
91 dSP;
92 HV *stash = gv_stashpv("Encode::XS", TRUE);
93 SV *sv    = sv_bless(newRV_noinc(newSViv(PTR2IV(enc))),stash);
94 int i = 0;
95 PUSHMARK(sp);
96 XPUSHs(sv);
97 while (enc->name[i])
98  {
99   const char *name = enc->name[i++];
100   XPUSHs(sv_2mortal(newSVpvn(name,strlen(name))));
101  }
102 PUTBACK;
103 call_pv("Encode::define_encoding",G_DISCARD);
104 SvREFCNT_dec(sv);
105}
106
107MODULE = Encode::$name	PACKAGE = Encode::$name
108PROTOTYPES: DISABLE
109BOOT:
110{
111END
112    foreach my $table (keys %tables) {
113    print XS qq[#include "${table}.exh"\n];
114    }
115    print XS "}\n";
116    close(XS);
117    return "# Built $name.xs\n\n";
118}
119
120sub postamble
121{
122    my $self = shift;
123    my $dir  = $self->catdir($self->updir,'ucm');
124    my $str  = "# $name\$(OBJ_EXT) depends on .h and .exh files not .c files - but all written by enc2xs\n";
125    $str    .= "$name.c : $name.xs ";
126    foreach my $table (keys %tables)
127    {
128    $str .= " $table.c";
129    }
130    $str .= "\n\n";
131    $str .= "$name\$(OBJ_EXT) : $name.c\n\n";
132
133    my $enc2xs = $self->catfile($self->updir,'bin', 'enc2xs');
134    foreach my $table (keys %tables)
135    {
136    my $numlines = 1;
137    my $lengthsofar = length($str);
138    my $continuator = '';
139    $str .= "$table.c : $enc2xs Makefile.PL";
140    foreach my $file (@{$tables{$table}})
141    {
142        $str .= $continuator.' '.$self->catfile($dir,$file);
143        if ( length($str)-$lengthsofar > 128*$numlines )
144        {
145        $continuator .= " \\\n\t";
146        $numlines++;
147        } else {
148        $continuator = '';
149        }
150    }
151    my $plib   = $self->{PERL_CORE} ? '"-I$(PERL_LIB)"' : '';
152    $plib .= " -MCross=$::Cross::platform" if defined $::Cross::platform;
153    my $ucopts = '-"Q"';
154    $str .=
155        qq{\n\t\$(PERL) $plib $enc2xs $ucopts -o \$\@ -f $table.fnm\n\n};
156    open (FILELIST, ">$table.fnm")
157        || die "Could not open $table.fnm: $!";
158    foreach my $file (@{$tables{$table}})
159    {
160        print FILELIST $self->catfile($dir,$file) . "\n";
161    }
162    close(FILELIST);
163    }
164    return $str;
165}
166
167