Upgrade to Encode 0.99, from Dan Kogai.
[p5sagit/p5-mst-13.2.git] / ext / Encode / KR / Makefile.PL
CommitLineData
d811239c 1use 5.7.2;
2use strict;
3use ExtUtils::MakeMaker;
4
64ffdd5e 5my %tables = (euc_kr_t => ['euc-kr.ucm',
6 'cp949.ucm',
7 ],
8 '5601_t' => ['ksc5601.ucm'],
3de3d21f 9 );
d811239c 10
0e567a6c 11my $name = 'KR';
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
1aebe30a 89PROTOTYPES: DISABLE
b90c9a30 90BOOT:
91{
92END
93 foreach my $table (keys %tables) {
94 print XS qq[#include "${table}_def.h"\n];
95 }
96 print XS "}\n";
97 close(XS);
6d4ed59b 98 return "# Built $name.xs\n\n";
d811239c 99}
100
101sub postamble
102{
103 my $self = shift;
104 my $dir = $self->catdir($self->updir,'Encode');
6d4ed59b 105 my $str = "# $name\$(OBJ_EXT) depends on .h and _def.h files not .c files - but all written by compile\n";
106 $str .= "$name.c : $name.xs ";
d811239c 107 foreach my $table (keys %tables)
108 {
109 $str .= " $table.c";
110 }
111 $str .= "\n\n";
6d4ed59b 112 $str .= "$name\$(OBJ_EXT) : $name.c\n\n";
113
d811239c 114 my $compile = $self->catfile($self->updir,'compile');
115 foreach my $table (keys %tables)
116 {
117 my $numlines = 1;
118 my $lengthsofar = length($str);
119 my $continuator = '';
b90c9a30 120 $str .= "$table.c : $compile Makefile.PL";
d811239c 121 foreach my $file (@{$tables{$table}})
122 {
123 $str .= $continuator.' '.$self->catfile($dir,$file);
124 if ( length($str)-$lengthsofar > 128*$numlines )
125 {
126 $continuator .= " \\\n\t";
127 $numlines++;
128 } else {
129 $continuator = '';
130 }
131 }
3964a085 132 $str .= $^O eq 'VMS' # In VMS quote to preserve case
133 ? qq{\n\t\$(PERL) $compile -"Q" -o \$\@ -f $table.fnm\n\n}
134 : qq{\n\t\$(PERL) $compile -Q -o \$\@ -f $table.fnm\n\n};
d811239c 135 open (FILELIST, ">$table.fnm")
136 || die "Could not open $table.fnm: $!";
137 foreach my $file (@{$tables{$table}})
138 {
139 print FILELIST $self->catfile($dir,$file) . "\n";
140 }
141 close(FILELIST);
142 }
143 return $str;
144}
145