SJIS, from Dan Kogai.
[p5sagit/p5-mst-13.2.git] / ext / Encode / JP / Makefile.PL
CommitLineData
d811239c 1use 5.7.2;
2use strict;
3use ExtUtils::MakeMaker;
4
0e567a6c 5my %tables = (EUC_JP => ['euc-jp.enc'],
557e5ea9 6 SHIFTJIS => ['shiftjis.enc'],
0e567a6c 7 MACJAPAN => ['macJapan.enc'],
8 CP932 => ['cp932.enc'],
3de3d21f 9 );
d811239c 10
0e567a6c 11my $name = 'JP';
d811239c 12
13WriteMakefile(
14 INC => "-I..",
6d4ed59b 15 NAME => 'Encode::'.$name,
16 VERSION_FROM => "$name.pm",
d811239c 17 OBJECT => '$(O_FILES)',
18 'dist' => {
19 COMPRESS => 'gzip -9f',
20 SUFFIX => 'gz',
21 DIST_DEFAULT => 'all tardist',
22 },
23 MAN3PODS => {},
1604a540 24 # OS 390 winges about line numbers > 64K ???
25 XSOPT => '-nolinenumbers',
d811239c 26 );
27
28package MY;
29
d811239c 30sub post_initialize
31{
32 my ($self) = @_;
33 my %o;
34 my $x = $self->{'OBJ_EXT'};
35 # Add the table O_FILES
36 foreach my $e (keys %tables)
37 {
38 $o{$e.$x} = 1;
39 }
6d4ed59b 40 $o{"$name$x"} = 1;
d811239c 41 $self->{'O_FILES'} = [sort keys %o];
6d4ed59b 42 my @files = ("$name.xs");
43 $self->{'C'} = ["$name.c"];
44 $self->{'H'} = [$self->catfile($self->updir,'encode.h')];
d811239c 45 my %xs;
46 foreach my $table (keys %tables) {
6d4ed59b 47 push (@{$self->{'C'}},"$table.c");
48 # Do NOT add $table.h etc. to H_FILES unless we own up as to how they
49 # get built.
b90c9a30 50 foreach my $ext (qw($(OBJ_EXT) .c .h _def.h .fnm)) {
d811239c 51 push (@files,$table.$ext);
52 }
53 }
6d4ed59b 54 $self->{'XS'} = { "$name.xs" => "$name.c" };
d811239c 55 $self->{'clean'}{'FILES'} .= join(' ',@files);
6d4ed59b 56 open(XS,">$name.xs") || die "Cannot open $name.xs:$!";
b90c9a30 57 print XS <<'END';
58#include <EXTERN.h>
59#include <perl.h>
60#include <XSUB.h>
61#define U8 U8
62#include "../encode.h"
63END
64 foreach my $table (keys %tables) {
65 print XS qq[#include "${table}.h"\n];
66 }
6d4ed59b 67 print XS <<"END";
b90c9a30 68
69static void
70Encode_XSEncoding(pTHX_ encode_t *enc)
71{
72 dSP;
73 HV *stash = gv_stashpv("Encode::XS", TRUE);
74 SV *sv = sv_bless(newRV_noinc(newSViv(PTR2IV(enc))),stash);
75 int i = 0;
76 PUSHMARK(sp);
77 XPUSHs(sv);
78 while (enc->name[i])
79 {
80 const char *name = enc->name[i++];
81 XPUSHs(sv_2mortal(newSVpvn(name,strlen(name))));
82 }
83 PUTBACK;
84 call_pv("Encode::define_encoding",G_DISCARD);
85 SvREFCNT_dec(sv);
86}
87
6d4ed59b 88MODULE = Encode::$name PACKAGE = Encode::$name
b90c9a30 89BOOT:
90{
91END
92 foreach my $table (keys %tables) {
93 print XS qq[#include "${table}_def.h"\n];
94 }
95 print XS "}\n";
96 close(XS);
6d4ed59b 97 return "# Built $name.xs\n\n";
d811239c 98}
99
100sub postamble
101{
102 my $self = shift;
103 my $dir = $self->catdir($self->updir,'Encode');
6d4ed59b 104 my $str = "# $name\$(OBJ_EXT) depends on .h and _def.h files not .c files - but all written by compile\n";
105 $str .= "$name.c : $name.xs ";
d811239c 106 foreach my $table (keys %tables)
107 {
108 $str .= " $table.c";
109 }
110 $str .= "\n\n";
6d4ed59b 111 $str .= "$name\$(OBJ_EXT) : $name.c\n\n";
112
d811239c 113 my $compile = $self->catfile($self->updir,'compile');
114 foreach my $table (keys %tables)
115 {
116 my $numlines = 1;
117 my $lengthsofar = length($str);
118 my $continuator = '';
b90c9a30 119 $str .= "$table.c : $compile Makefile.PL";
d811239c 120 foreach my $file (@{$tables{$table}})
121 {
122 $str .= $continuator.' '.$self->catfile($dir,$file);
123 if ( length($str)-$lengthsofar > 128*$numlines )
124 {
125 $continuator .= " \\\n\t";
126 $numlines++;
127 } else {
128 $continuator = '';
129 }
130 }
3964a085 131 $str .= $^O eq 'VMS' # In VMS quote to preserve case
132 ? qq{\n\t\$(PERL) $compile -"Q" -o \$\@ -f $table.fnm\n\n}
133 : qq{\n\t\$(PERL) $compile -Q -o \$\@ -f $table.fnm\n\n};
d811239c 134 open (FILELIST, ">$table.fnm")
135 || die "Could not open $table.fnm: $!";
136 foreach my $file (@{$tables{$table}})
137 {
138 print FILELIST $self->catfile($dir,$file) . "\n";
139 }
140 close(FILELIST);
141 }
142 return $str;
143}
144