File: Build.PL

package info (click to toggle)
po4a 0.29-1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 3,648 kB
  • ctags: 217
  • sloc: perl: 7,755; sh: 118; makefile: 72; xml: 12
file content (290 lines) | stat: -rw-r--r-- 9,834 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
#!/usr/bin/perl

use Module::Build;
use strict;
use warnings;

my $builder = Module::Build->subclass
(
    class => 'My::Builder',
    code => q{
	sub ACTION_build {
	    my $self = shift;
	    $self->depends_on('code');
	    $self->depends_on('docs');
	    $self->depends_on('distmeta'); # regenerate META.yml
	    $self->depends_on('man');
	    $self->depends_on('postats');
	}
	sub perl_scripts {
	    return ('po4a-gettextize', 'po4a-updatepo', 'po4a-translate',
	            'po4a-normalize', 'po4a', 'scripts/msguntypot');
	}
	sub ACTION_install {
	    my $self = shift;

	    require ExtUtils::Install;
#	    $self->depends_on('build');

	    ExtUtils::Install::install($self->install_map, 1, 0, $self->{args}{uninst}||0); 
	}
	sub ACTION_binpo {
	    my $self = shift;

	    my @files = sort((perl_scripts(), @{$self->rscan_dir('lib',qr{\.pm$})}));

	    unless ($self->up_to_date(\@files, "po/bin/po4a.pot")) {
		print "XX Update po/bin/po4a.pot\n";
		my $podfiles = join ("", map {" ../../".$_ } @files);
		system("cd po/bin; xgettext --from-code=iso-8859-1 -L Perl $podfiles -o po4a.pot.new") && die;
		if ( -e "po/bin/po4a.pot") {
		    $diff = qx(diff -q -I'#:' -I'POT-Creation-Date:' -I'PO-Revision-Date:' po/bin/po4a.pot po/bin/po4a.pot.new);
		    if ( $diff eq "" ) {
			unlink "po/bin/po4a.pot.new" || die;
			# touch it
			my ($atime, $mtime) = (time,time);
			utime $atime, $mtime, "po/bin/po4a.pot";
		    } else {
			rename "po/bin/po4a.pot.new", "po/bin/po4a.pot" || die;
		    }
		} else {
		    rename "po/bin/po4a.pot.new", "po/bin/po4a.pot" || die;
		}
	    } else {
		print "XX po/bin/po4a.pot uptodate.\n";
	    }

	    # update languages
	    @files = @{$self->rscan_dir('po/bin',qr{\.po$})};
	    foreach (@files) {
		next if m|/.#|;
		$_ =~ /.*\/(.*)\.po$/;
		my $lang = $1;

		unless ($self->up_to_date("po/bin/po4a.pot","po/bin/$lang.po")) {
		    print "XX Sync po/bin/$lang.po: ";
		    system("msgmerge po/bin/$lang.po po/bin/po4a.pot -o po/bin/$lang.po.new") && die;
		    # Typically all that changes was a date. I'd
		    # prefer not to cvs commit such changes, so
		    # detect and ignore them.
		    $diff = qx(diff -q -I'#:' -I'POT-Creation-Date:' -I'PO-Revision-Date:' po/bin/$lang.po po/bin/$lang.po.new);
		    if ($diff eq "") {
			unlink "po/bin/$lang.po.new" || die;
			# touch it
			my ($atime, $mtime) = (time,time);
			utime $atime, $mtime, "po/bin/$lang.po";
		    } else {
			rename "po/bin/$lang.po.new", "po/bin/$lang.po" || die;
		    }
		} else {
		    print "XX po/bin/$lang.po uptodate.\n";
		}
		unless ($self->up_to_date("po/bin/$lang.po","blib/po/$lang/LC_MESSAGES/po4a.mo")) {
		    system("mkdir -p blib/po/$lang/LC_MESSAGES") && die;
		    system("msgfmt -o blib/po/$lang/LC_MESSAGES/po4a.mo po/bin/$lang.po") && die;
		} 
	    }

	}
	sub ACTION_manpo {
	    my $self = shift;

	    # update pot
	    my @files = sort((perl_scripts(), @{$self->rscan_dir('lib',qr{\.pm$})}, @{$self->rscan_dir('doc',qr{\.pod$})}));
	    unless ($self->up_to_date(\@files, "po/pod/po4a-pod.pot")) {
		my $podfiles = join ("", map {" -m ../../".$_ } @files);
		print "XX Update documentation pot files: ";
		system("cd po/pod; PERL5LIB=../../lib perl ../../po4a-updatepo -f pod $podfiles -M utf-8 -p po4a-pod.pot") 
		  && die;
		my ($atime, $mtime) = (time,time);
		utime $atime, $mtime, "po/pod/po4a-pod.pot";

	    } else {
		print "XX Documentation pot file uptodate.\n";
	    }

	    # update languages
	    @files = @{$self->rscan_dir('po/pod',qr{\.po$})};
	    foreach (@files) {
		$_ =~ /.*\/(.*)\.po$/;
		my $lang = $1;

		unless ($self->up_to_date("po/pod/po4a-pod.pot","po/pod/$lang.po")) {
		    print "XX Update documentation $lang.po: ";

		    system("msgmerge po/pod/$lang.po po/pod/po4a-pod.pot -o po/pod/$lang.po.new")
		      && die;

		    # Typically all that changes was a date. I'd
		    # prefer not to cvs commit such changes, so
		    # detect and ignore them.
		    $diff = qx(diff -q -I'#:' -I'POT-Creation-Date:' -I'PO-Revision-Date:' po/pod/$lang.po po/pod/$lang.po.new);
		    if ( $diff eq "" ) {
			unlink "po/pod/$lang.po.new" || die;
			my ($atime, $mtime) = (time,time);
			utime $atime, $mtime, "po/pod/$lang.po";
		    } else {
			rename "po/pod/$lang.po.new", "po/pod/$lang.po" || die;
		    }		    
		} else {
		    print "XX Documentation $lang.po uptodate.\n";
		}
	    }
	}
	sub ACTION_man {
	    my $self = shift;

	    $self->depends_on('manpo');
	    use Pod::Man;
	    use File::Basename;

	    my %charsets = ( 'default' => 'iso8859-1',
	                     'pl'      => 'iso8859-2'
			   );

	    my $options = "-v -f pod -M utf-8";

	    #get the languages
	    my @langs = @{$self->rscan_dir('po/pod',qr{\.po$})};
	    my $i=0;
	    while ($i < @langs) {
		$langs[$i] =~ /.*\/(.*)\.po$/;
		$langs[$i] = $1;
		$i++;
	    }

	    system("rm -rf blib/man") && die;
	    system("mkdir -p blib/man") && die;

	    # Translate binaries manpages
	    my $parser = Pod::Man->new (release => "Po4a Tools",
		center => "Po4a Tools", section => "1p");

	    foreach $lang (@langs) {
	        my $charset = defined $charsets{$lang} ? $charsets{$lang} : $charsets{'default'};
		print ("X Translate binary manpages to $lang\n");
		foreach $file (perl_scripts()) {
		    my $man = basename $file;
		    system("PERL5LIB=lib perl po4a-translate $options -L $charset -m $file -p po/pod/$lang.po -l blib/man/$man -a doc/addendum.$lang")
		      && die;
		    if (-e "blib/man/$man") {
			system("mkdir -p blib/man/$lang/man1") && die;
			$parser->parse_from_file ("blib/man/$man", "blib/man/$lang/man1/$man.1p");
			system("gzip -9 blib/man/$lang/man1/$man.1p") && die;
			system("rm -f blib/man/$man")&& die;
		    }
		}
	    }

	    # Translate modules manpages
	    $parser = Pod::Man->new (release => "Po4a Tools",
		center => "Po4a Tools", section => "3pm");

	    foreach $lang (@langs) {
	        my $charset = defined $charsets{$lang} ? $charsets{$lang} : $charsets{'default'};
		print ("X Translate module manpages to $lang\n");
		foreach $file (@{$self->rscan_dir('lib',qr{\.pm$})}) {
		    $file =~ /.*\/(.*)\.pm$/;
		    my $filename = $1;
		    system("PERL5LIB=lib perl po4a-translate $options -L $charset -m $file -p po/pod/$lang.po -l blib/man/$filename -a doc/addendum.$lang")
		      && die;
		    if (-e "blib/man/$filename") {
			system ("mkdir -p blib/man/$lang/man3") && die;
			$parser->parse_from_file ("blib/man/$filename", 
			    "blib/man/$lang/man3/Locale::Po4a::$filename.3pm") || die;
			system ("gzip -9 blib/man/$lang/man3/Locale::Po4a::$filename.3pm") 
			  && die "Cannot gzip blib/man/$lang/man3/Locale::Po4a::$filename.3pm";
			system ("rm -f blib/man/$filename") && die;
		    }
		}
	    }

	    # Translate docs manpages
	    $parser = Pod::Man->new (release => "Po4a Tools",
		center => "Po4a Tools", section => 7);

	    foreach $file (@{$self->rscan_dir('doc',qr{\.pod$})}) {
		$file =~ /.*\/(.*)\.pod$/;
		my $filename = $1;
		print "X Generate the man version of $file\n";
		system("mkdir -p blib/man/man7") && die;
		$parser->parse_from_file ($file, "blib/man/man7/$filename");
		system ("gzip -9 -f blib/man/man7/$filename") && die;
		foreach $lang (@langs) {
	            my $charset = defined $charsets{$lang} ? $charsets{$lang} : $charsets{'default'};
		    print "X Translate $file to $lang\n";
		    system ("PERL5LIB=lib perl po4a-translate $options -L $charset -m $file -p po/pod/$lang.po -l blib/man/$filename -a doc/addendum.$lang")
		      && die;
		    if (-e "blib/man/$filename") {
			`mkdir -p blib/man/$lang/man7`;
			$parser->parse_from_file ("blib/man/$filename", "blib/man/$lang/man7/$filename");
			`gzip -9 blib/man/$lang/man7/$filename`;
			`rm -f blib/man/$filename`;
		    }
		}
	    }

	    # Install the manpages of the Shell scripts
	    system ("mkdir -p blib/man/man1") && die;
	    system ("cp scripts/po4aman-display-po.1 blib/man/man1/") && die;
	    system ("gzip -9 -f blib/man/man1/po4aman-display-po.1") && die;
	}
	sub ACTION_dist {
	    my ($self) = @_;

	    $self->depends_on('test');
	    $self->depends_on('distdir');

	    my $dist_dir = $self->dist_dir;

	    if ( -e "$dist_dir.tar.gz") {
		# Delete the distfile if it already exists
		system ("rm $dist_dir.tar.gz") && die;
	    }

	    $self->make_tarball($dist_dir);
	    $self->delete_filetree($dist_dir);
	} 
	sub ACTION_postats {
	    my $self = shift;
	    $self->depends_on('binpo');
	    $self->depends_on('manpo');
	    $self->postats("po/bin");
	    $self->postats("po/pod");
	}
	sub postats {
	    my ($self,$dir) = (shift,shift);
	    my $potsize = `(cd $dir;ls -sh *.pot) | sed -n -e 's/^ *\\\\([^[:blank:]]*\\\\).*\$/\\\\1/p'`;
	    $potsize =~ /(.*)/;
	    print "$dir (pot: $1)\n";
	    my @files = @{$self->rscan_dir($dir,qr{\.po$})};
	    foreach (@files) {
		$file = $_;
		$file =~ /.*\/(.*)\.po$/;
		my $lang = $1;
		my $stat = `msgfmt -o /dev/null -c -v --statistics $file 2>&1`;
		print "  $lang: $stat";
	    }
	}
    },
);

my $base= $Config::Config{man1dir};
$base =~ s/\/man\/man1//;

my $b = $builder->new
  ( module_name => 'po4a',
      license => 'gpl',
      dist_version_from => 'lib/Locale/Po4a/TransTractor.pm', # finds $VERSION
      requires => {'Locale::gettext' => '1.01', 'Text::WrapI18N' => 0,
	  'SGMLS' => 0, 'Term::ReadKey' => 0},
      script_files => ['po4a-gettextize', 'po4a-updatepo',
	  'po4a-translate', 'po4a-normalize', 'po4a', 'scripts/msguntypot',
	  'scripts/po4aman-display-po'],
      add_to_cleanup => ['t/tmp','messages.mo', 'blib', 'html',
	  'po/pod/po4a-pod.pot~', 'po4a.log'],
      install_path => {po => $base.'/locale', man => $base.'/man'},
      dist_abstract => 'Tools for helping translation of documentation',
      dist_author => ['Martin Quinson (mquinson#debian.org)',
	  'Denis Barbier <barbier@linuxfr.org>']
  )->create_build_script;