Imported Upstream version 1.22.4
[platform/upstream/groff.git] / build-aux / prefix-gnulib-mk
1 eval '(exit $?0)' && eval 'exec perl -wS "$0" "$@"'
2   & eval 'exec perl -wS "$0" $argv:q'
3     if 0;
4
5 use strict;
6 use IO::File;
7 use Getopt::Long;
8 use File::Basename; # for dirname
9
10 my $VERSION = '2012-01-21 17:13'; # UTC
11 (my $ME = $0) =~ s|.*/||;
12
13 my $prefix;
14 my $lib_name;
15
16 sub usage ($)
17 {
18   my ($exit_code) = @_;
19   my $STREAM = ($exit_code == 0 ? *STDOUT : *STDERR);
20   if ($exit_code != 0)
21     {
22       print $STREAM "Try '$ME --help' for more information.\n";
23     }
24   else
25     {
26       print $STREAM <<EOF;
27 Usage: $ME --lib-name=NAME FILE
28    or: $ME [--help|--version]
29 Rewrite a gnulib-tool-generated FILE like lib/gnulib.mk to work with
30 automake's subdir-objects.
31
32 OPTIONS:
33
34 This option must be specified:
35
36    --lib-name=NAME    library name, often "lib\$project"
37
38 The following are optional:
39
40    --help             display this help and exit
41    --version          output version information and exit
42
43 EOF
44     }
45   exit $exit_code;
46 }
47
48 # contents ($FILE_NAME)
49 # ---------------------
50 sub contents ($)
51 {
52   my ($file) = @_;
53   local $/;                     # Turn on slurp-mode.
54   my $f = new IO::File "< $file" or die "$file";
55   my $contents = $f->getline or die "$file";
56   $f->close;
57   return $contents;
58 }
59
60 # prefix_word ($WORD)
61 # -------------------
62 # Do not prefix special words such as variable dereferences.  Also,
63 # "Makefile" is really "Makefile", since precisely there is no
64 # lib/Makefile.
65 sub prefix_word ($)
66 {
67   local ($_) = @_;
68   $_ = $prefix . $_
69     unless (/^-/ || m{^\$\(\w+\)} || $_ eq "Makefile" || $_ eq '\\'
70             || $_ eq '@ALLOCA@');
71   return $_;
72 }
73
74
75 # prefix_words ($TEXT)
76 # --------------------
77 sub prefix_words ($)
78 {
79   local ($_) = @_;
80   s{(\S+)}{prefix_word($1)}gem;
81   return $_;
82 }
83
84
85 # prefix_assignment ($LHS-AND-ASSIGN-OP, $RHS)
86 # --------------------------------------------
87 sub prefix_assignment ($$)
88 {
89   my ($lhs_and_assign_op, $rhs) = @_;
90   my $res;
91
92   # Some variables are initialized by gnulib.mk, and we don't want
93   # that.  Change '=' to '+='.
94   if ($lhs_and_assign_op =~ /^(GPERF|V_GPERF.*) =$/)
95     {
96       # Do not change the RHS, which specifies the GPERF program.
97     }
98   elsif ($lhs_and_assign_op =~
99       /^(SUBDIRS|EXTRA_DIST|BUILT_SOURCES|SUFFIXES|MOSTLYCLEANFILES
100          |CLEANFILES|DISTCLEANFILES|MAINTAINERCLEANFILES|AM_CFLAGS
101          |AM_CPPFLAGS|AM_GNU_GETTEXT)\ =/x)
102     {
103       $lhs_and_assign_op =~ s/=/+=/;
104     }
105   # We don't want to inherit gnulib's AUTOMAKE_OPTIONS, comment them.
106   elsif ($lhs_and_assign_op =~ /^AUTOMAKE_OPTIONS =/)
107     {
108       $lhs_and_assign_op =~ s/^/# /;
109     }
110   elsif ($lhs_and_assign_op =~ /^SUFFIXES /)
111     {
112       # Elide any SUFFIXES assignment or concatenation.
113       $lhs_and_assign_op =~ s/^/# /;
114     }
115   # The words are (probably) paths to files in lib/: prefix them.
116   else
117     {
118       $rhs = prefix_words($rhs)
119     }
120
121   # Variables which name depend on the location: libbison_a_SOURCES =>
122   # lib_libbison_a_SOURCES.
123   $lhs_and_assign_op =~ s/($lib_name)/lib_$1/g;
124
125   return $lhs_and_assign_op . $rhs;
126 }
127
128 # prefix $CONTENTS
129 # ----------------
130 # $CONTENTS is a Makefile content.  Post-process it so that each file-name
131 # is prefixed with $prefix (e.g., "lib/").
132 #
133 # Relies heavily on the regularity of the file generated by gnulib-tool.
134 sub prefix ($)
135 {
136   # Work on $_.
137   local ($_) = @_;
138
139   # Prefix all the occurrence of files in rules.  If there is nothing
140   # after in the :, it's probably a phony target, or a suffix rule.
141   # Don't touch it.
142   s{^([-\w+/]+\.[-\w.]+ *: *\S.*)$}
143    {prefix_words($1)}gem;
144
145   # Prefix files in variables.
146   s{^([\w.]+\s*\+?=)(.*)$}
147    {prefix_assignment($1, $2)}gem;
148
149   # $(srcdir)/ is actually $(top_srcdir)/$prefix/.
150   # The trailing slash is required to avoid matching this rule:
151   #   test '$(srcdir)' = . || rm -f $(top_builddir)/GNUmakefile
152   s{\$\(srcdir\)/}{\$(top_srcdir)/$prefix}g;
153
154   # Sometimes, t-$@ is used instead of $@-t, which, of course, does
155   # not work when we have a $@ with a directory in it.
156   s{t-\$\@}{\$\@-t}g;
157
158   # Some AC_SUBST patterns remain and would better be Make macros.
159   s{\@(MKDIR_P)\@}{\$($1)}g;
160
161   # Adjust paths in mkdir.
162   s{(\$\(MKDIR_P\))\s*(\w+)}{$1 $prefix$2}g;
163
164   return $_;
165 }
166
167 # process ($IN)
168 # -------------
169 sub process ($)
170 {
171   my ($file) = @_;
172   my ($bak) = "$file.bak";
173   rename ($file, $bak) or die "$ME: rename $file $bak failed: $!\n";
174   my $contents = contents ($bak);
175   $contents = prefix ($contents);
176   my $out = new IO::File(">$file")
177     or die "$ME: $file: failed to open for writing: $!\n";
178   print $out $contents;
179 }
180
181 {
182   GetOptions
183     (
184      'lib-name=s' => \$lib_name,
185      help => sub { usage 0 },
186      version => sub { print "$ME version $VERSION\n"; exit },
187     ) or usage 1;
188
189   my $fail = 0;
190   defined $lib_name
191     or (warn "$ME: no library name; use --lib-name=NAME\n"), $fail = 1;
192
193   # There must be exactly one argument.
194   @ARGV == 0
195     and (warn "$ME: missing FILE argument\n"), $fail = 1;
196   1 < @ARGV
197     and (warn "$ME: too many arguments:\n", join ("\n", @ARGV), "\n"),
198       $fail = 1;
199   $fail
200     and usage 1;
201
202   my $file = $ARGV[0];
203   $prefix = (dirname $file) . '/';
204   warn "prefix=$prefix\n";
205
206   process $file;
207 }
208
209 ### Setup "GNU" style for perl-mode and cperl-mode.
210 ## Local Variables:
211 ## perl-indent-level: 2
212 ## perl-continued-statement-offset: 2
213 ## perl-continued-brace-offset: 0
214 ## perl-brace-offset: 0
215 ## perl-brace-imaginary-offset: 0
216 ## perl-label-offset: -2
217 ## cperl-indent-level: 2
218 ## cperl-brace-offset: 0
219 ## cperl-continued-brace-offset: 0
220 ## cperl-label-offset: -2
221 ## cperl-extra-newline-before-brace: t
222 ## cperl-merge-trailing-else: nil
223 ## cperl-continued-statement-offset: 2
224 ## eval: (add-hook 'before-save-hook 'time-stamp)
225 ## time-stamp-start: "my $VERSION = '"
226 ## time-stamp-format: "%:y-%02m-%02d %02H:%02M"
227 ## time-stamp-time-zone: "UTC0"
228 ## time-stamp-end: "'; # UTC"
229 ## End: