1 Use Getopt::Std in place of getopts.pl.
2 https://bugs.gentoo.org/show_bug.cgi?id=420083
4 --- openjade-1.3.2/msggen.pl.orig
5 +++ openjade-1.3.2/msggen.pl
7 # See the file COPYING for copying permission.
12 # Package and version.
13 $package = 'openjade';
26 $field[0] =~ /^[IWQXE][0-9]$/ || &error("invalid first field");;
27 $type[$num] = substr($field[0], 0, 1);
28 - $argc = int(substr($field[0], 1, 1));
29 + $argc = substr($field[0], 1, 1);
32 $field[1] =~ /^[a-zA-Z_][a-zA-Z0-9_]+$/ || &error("invalid tag");