* When there is an existing partial, a new partials is only saved
[BackupPC.git] / makeDist
1 #!/bin/perl
2 #
3 # makeDist: Build a BackupPC distribution
4 #
5 # DESCRIPTION
6 #
7 #   This script should be run with no arguments to build a
8 #   distribution.  The $Version and $ReleaseDate should be
9 #   edited below to specify the version name and the release
10 #   date.  The distribution is createede in the sub-directory
11 #   dist.  The dsitribution is in the file name:
12 #
13 #           dist/BackupPC-$Version.tar.gz.
14 #
15 #   Often the language files are not up to date, and makeDist
16 #   exits after complaining about the lang files being inconsistent.
17 #   Use the -l option to turn off that behavior.
18 #
19 # AUTHOR
20 #   Craig Barratt <cbarratt@users.sourceforge.net>
21 #
22 # COPYRIGHT
23 #   Copyright (C) 2001-2007  Craig Barratt
24 #
25 #   This program is free software; you can redistribute it and/or modify
26 #   it under the terms of the GNU General Public License as published by
27 #   the Free Software Foundation; either version 2 of the License, or
28 #   (at your option) any later version.
29 #
30 #   This program is distributed in the hope that it will be useful,
31 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
32 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
33 #   GNU General Public License for more details.
34 #
35 #   You should have received a copy of the GNU General Public License
36 #   along with this program; if not, write to the Free Software
37 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
38 #
39 #========================================================================
40 #
41
42 use strict;
43 use File::Path;
44 use File::Copy;
45 use Getopt::Std;
46 use lib "./lib";
47 use BackupPC::Lib;
48 use BackupPC::Config::Meta qw(:all);
49
50 my $bpc;
51 die("BackupPC::Lib->new failed\n")
52         if ( !($bpc = BackupPC::Lib->new(".", ".", "./conf", 1)) );
53
54 umask(0022);
55
56 my $Version     = "3.1.0beta0";
57 my $ReleaseDate = "3 Sep 2007";
58 my $DistDir     = "dist/BackupPC-$Version";
59
60 my @PerlSrc = qw(
61     bin/BackupPC
62     bin/BackupPC_archive
63     bin/BackupPC_archiveHost
64     bin/BackupPC_archiveStart
65     bin/BackupPC_attribPrint
66     bin/BackupPC_dump
67     bin/BackupPC_fixupBackupSummary
68     bin/BackupPC_link
69     bin/BackupPC_nightly
70     bin/BackupPC_restore
71     bin/BackupPC_sendEmail
72     bin/BackupPC_serverMesg
73     bin/BackupPC_trashClean
74     bin/BackupPC_tarExtract
75     bin/BackupPC_tarCreate
76     bin/BackupPC_tarPCCopy
77     bin/BackupPC_compressPool
78     bin/BackupPC_zipCreate
79     bin/BackupPC_zcat
80     lib/BackupPC/Attrib.pm
81     lib/BackupPC/Config.pm
82     lib/BackupPC/FileZIO.pm
83     lib/BackupPC/Lib.pm
84     lib/BackupPC/PoolWrite.pm
85     lib/BackupPC/Storage.pm
86     lib/BackupPC/View.pm
87     lib/BackupPC/CGI/AdminOptions.pm
88     lib/BackupPC/CGI/Archive.pm
89     lib/BackupPC/CGI/ArchiveInfo.pm
90     lib/BackupPC/CGI/Browse.pm
91     lib/BackupPC/CGI/DirHistory.pm
92     lib/BackupPC/CGI/EditConfig.pm
93     lib/BackupPC/CGI/EmailSummary.pm
94     lib/BackupPC/CGI/GeneralInfo.pm
95     lib/BackupPC/CGI/HostInfo.pm
96     lib/BackupPC/CGI/Lib.pm
97     lib/BackupPC/CGI/LOGlist.pm
98     lib/BackupPC/CGI/Queue.pm
99     lib/BackupPC/CGI/ReloadServer.pm
100     lib/BackupPC/CGI/RestoreFile.pm
101     lib/BackupPC/CGI/RestoreInfo.pm
102     lib/BackupPC/CGI/Restore.pm
103     lib/BackupPC/CGI/RSS.pm
104     lib/BackupPC/CGI/StartServer.pm
105     lib/BackupPC/CGI/StartStopBackup.pm
106     lib/BackupPC/CGI/StopServer.pm
107     lib/BackupPC/CGI/Summary.pm
108     lib/BackupPC/CGI/View.pm
109     lib/BackupPC/Config/Meta.pm
110     lib/BackupPC/Lang/de.pm
111     lib/BackupPC/Lang/en.pm
112     lib/BackupPC/Lang/es.pm
113     lib/BackupPC/Lang/fr.pm
114     lib/BackupPC/Lang/it.pm
115     lib/BackupPC/Lang/nl.pm
116     lib/BackupPC/Lang/pt_br.pm
117     lib/BackupPC/Lang/zh_CN.pm
118     lib/BackupPC/Storage/Text.pm
119     lib/BackupPC/Xfer/Archive.pm
120     lib/BackupPC/Xfer/BackupPCd.pm
121     lib/BackupPC/Xfer/Smb.pm
122     lib/BackupPC/Xfer/Tar.pm
123     lib/BackupPC/Xfer/Rsync.pm
124     lib/BackupPC/Xfer/RsyncDigest.pm
125     lib/BackupPC/Xfer/RsyncFileIO.pm
126     lib/BackupPC/Zip/FileMember.pm
127     cgi-bin/BackupPC_Admin
128 );
129
130 my %opts;
131 if ( !getopts("l", \%opts) || @ARGV != 0 ) {
132     print("usage: $0 [-l]\n");
133     exit(1);
134 }
135
136 #
137 # Check config parameters
138 #
139 my $ConfVars = {};
140 my $errCnt;
141
142 $errCnt += CheckConfigParams("conf/config.pl", $ConfVars, 0);
143
144 $errCnt += CheckConfigParams("doc-src/BackupPC.pod", $ConfVars, 1);
145
146 $errCnt += CheckMetaDataVsConfig($ConfVars, "lib/BackupPC/Config/Meta.pm");
147
148 $errCnt += CheckEditorVsConfig($ConfVars, "lib/BackupPC/CGI/EditConfig.pm");
149
150 #
151 # These config parameters are not used in the code, so ignore them.
152 #
153 $ConfVars->{BackupPCUser} = 2;
154 $ConfVars->{CgiDir}       = 2;
155 $ConfVars->{TopDir}       = 2;
156 $ConfVars->{LogDir}       = 2;
157 $ConfVars->{ConfDir}      = 2;
158 $ConfVars->{InstallDir}   = 2;
159 $ConfVars->{CgiImageDir}  = 2;
160 $ConfVars->{ClientCharsetLegacy}  = 2;      # actually used
161
162 #
163 # These config parameters are used in the code to be backward compatible,
164 # but are not present in the current config file, so ignore them.
165 #
166 $ConfVars->{BlackoutHourBegin} = 2;
167 $ConfVars->{BlackoutHourEnd}   = 2;
168 $ConfVars->{BlackoutWeekDays}  = 2;
169 $ConfVars->{RsyncLogLevel}     = 2;
170
171 foreach my $file ( @PerlSrc ) {
172     $errCnt += CheckConfigParams($file, $ConfVars, 1);
173 }
174 if ( !$opts{l} ) {
175     $errCnt += CheckLangUsage();
176     $errCnt += CheckLangTags();
177 }
178 if ( $errCnt ) {
179     print("Exiting because of errors\n");
180     exit(1)
181 }
182
183 $errCnt = 0;
184 foreach my $var ( sort(keys(%$ConfVars) ) ) {
185     next if ( $ConfVars->{$var} >= 2 || $var =~ /^\$/ );
186     printf("Unused config parameter $var\n");
187     $errCnt++;
188 }
189 if ( $errCnt ) {
190     print("Exiting because of errors\n");
191     exit(1)
192 }
193
194 rmtree($DistDir, 0, 0);
195 mkpath($DistDir, 0, 0777);
196
197 foreach my $dir ( qw(bin doc conf images init.d/src cgi-bin
198                      lib/BackupPC/CGI
199                      lib/BackupPC/Config
200                      lib/BackupPC/Lang
201                      lib/BackupPC/Storage
202                      lib/BackupPC/Xfer
203                      lib/BackupPC/Zip
204                 ) ) {
205     mkpath("$DistDir/$dir", 0, 0777);
206 }
207
208 my %ConfName;
209 my $ConfPod = config2pod();
210 rmtree("doc", 0, 0);
211 mkpath("doc", 0, 0777);
212 InstallFile("doc-src/BackupPC.pod", "doc/BackupPC.pod");
213
214 use Pod::Html;
215 pod2html("doc/BackupPC.pod",
216         "--backlink=Back to Top",
217         "--header",
218         "--title=BackupPC",
219         "--outfile=doc/BackupPC.html");
220
221 foreach my $file ( (@PerlSrc,
222             <images/*.gif>,
223             <images/*.png>,
224             qw(
225                 conf/config.pl
226                 conf/hosts
227                 conf/BackupPC_stnd.css
228                 conf/BackupPC_stnd_orig.css
229                 conf/sorttable.js
230                 init.d/README
231                 init.d/src/debian-backuppc
232                 init.d/src/freebsd-backuppc
233                 init.d/src/gentoo-backuppc
234                 init.d/src/gentoo-backuppc.conf
235                 init.d/src/linux-backuppc
236                 init.d/src/slackware-backuppc
237                 init.d/src/solaris-backuppc
238                 init.d/src/suse-backuppc
239                 doc/BackupPC.pod
240                 doc/BackupPC.html
241                 README
242                 LICENSE
243                 ChangeLog
244                 configure.pl
245         )) ) {
246     InstallFile("$file", "$DistDir/$file");
247 }
248 rmtree("doc", 0, 0);
249 system("cd dist ; tar zcf BackupPC-$Version.tar.gz BackupPC-$Version");
250 print("Distribution written to dist/BackupPC-$Version.tar.gz\n");
251 unlink("pod2htmd.x~~");
252 unlink("pod2htmi.x~~");
253 unlink("pod2htmd.tmp");
254 unlink("pod2htmi.tmp");
255
256 ###########################################################################
257 # Subroutines
258 ###########################################################################
259
260 sub InstallFile
261 {
262     my($file, $dest) = @_;
263
264     unlink($dest) if ( -d $dest );
265     if ( $file =~ /\.gif/ || $file =~ /\.png/ ) {
266         die("can't copy($file, $dest)\n") unless copy($file, $dest);
267     } else {
268         open(FILE, $file)   || die("can't open $file for reading\n");
269         open(OUT, ">$dest") || die("can't open $dest for writing\n");
270         binmode(FILE);
271         binmode(OUT);
272         while ( <FILE> ) {
273             s/^([#*\s]+)Version \d+\.\d+[\.\w]*, released \d+ \w+ \d{4}\.?/$1Version __VERSION__, released __RELEASEDATE__./;
274             s/__VERSION__/$Version/g;
275             s/__RELEASEDATE__/$ReleaseDate/g;
276             if ( $file =~ /BackupPC\.html$/ ) {
277                 #
278                 # fixup for conf links
279                 #
280                 if ( !/A NAME="item_(%|_)conf/i ) {
281                     s/\$Conf{([^}]*)}/
282                         defined($ConfName{$1})
283                             ? "\L<a href=\"#$ConfName{$1}\">\E\$Conf{$1}<\/A>"
284                             : "\$Conf{$1}"/eg;
285                 }
286                 s/^<DD>/<DD><P>/;
287                 s/^<li><\/li>/<li>/;
288             }
289             if ( /__CONFIGPOD__/ ) {
290                 print OUT $ConfPod;
291             } elsif ( /^use lib ".*BackupPC\/lib";/
292                     || /^use lib "\/home\/pcbackup\/install\/lib";/ ) {
293                 print OUT "use lib \"__INSTALLDIR__/lib\";\n";
294             } elsif ( $file =~ /Lib.pm/ && /^(\s*\$topDir\s*=\s*)'.*'(\s*if\s.*)/ ) {
295                 print OUT "$1'__TOPDIR__'$2\n";
296             } elsif ( $file =~ /Lib.pm/ && /^(\s*\$installDir\s*=\s*)'.*'(\s*if\s.*)/ ) {
297                 print OUT "$1'__INSTALLDIR__'$2\n";
298             } elsif ( $file =~ /Lib.pm/ && /^(\s*ConfDir\s*=\>\s*\$confDir eq.*)'.*'(.*)/ ) {
299                 print OUT "$1'__CONFDIR__'$2\n";
300             } elsif ( $file =~ /Lib.pm/ && /^(\s*my \$useFHS\s*=\s*)\d;/ ) {
301                 print OUT "${1}0;\n";
302             } elsif ( $file =~ /Lib.pm/ && /(.*Version *=> .*)'[\w\d\.]+',/ ) {
303                 print OUT "$1'$Version',\n";
304             } elsif ( $file =~ /configure.pl/ && /__CONFIGURE_BIN_LIST__/ ) {
305                 print OUT "        ", join("\n        ", grep(/^bin\//, @PerlSrc)), "\n";
306             } elsif ( $file =~ /configure.pl/ && /__CONFIGURE_LIB_LIST__/ ) {
307                 print OUT "        ", join("\n        ", grep(/^lib\//, @PerlSrc)), "\n";
308             } elsif ( $file =~ /BackupPC_Admin/ && /(my *\$installDir *= *)'.*'/ ) {
309                 print OUT "$1'__INSTALLDIR__/lib';\n";
310             } else {
311                 print OUT;
312             }
313         }
314         close(FILE);
315         close(OUT);
316     }
317     if ( -x $file ) {
318         chmod(0555, $dest);
319     } else {
320         chmod(0444, $dest);
321     }
322 }
323
324 sub config2pod
325 {
326     open(C, "conf/config.pl") || die("can't open conf/config.pl");
327     binmode(C);
328     my($str, $out, $getHdr, @conf);
329     my $first = 1;
330     while ( <C> ) {
331         chomp;
332         s/ +$//;
333         if ( /^#########################/ ) {
334             if ( $getHdr ) {
335                 $str =~ s/\n.*//sg;
336                 $out .= "=back\n\n" if ( !$first );
337                 $out .= "=head2 $str\n\n=over 4\n\n";
338                 $str = "";
339                 $first = 0;
340             }
341             $getHdr = !$getHdr;
342             next;
343         }
344         if ( /^#/ ) {
345             s/# ?//;
346             next if ( $str eq "" && /^$/ );
347             $str .= $_ . "\n";
348             $str .= "\n" if ( $str =~ /examples?:\n$/i );
349         } elsif ( /^\$Conf{([^}]*)/ ) {
350             my $var = $1;
351             s/  +/ /g;
352             s/;\s*#.*/;/;
353             if ( !s/\[$/[ ... ];/ && !s/<<'EOF'/.../ ) {
354                 s/([^;])\s*$/$1 .../;
355             }
356             push(@conf, $_);
357             my $text = "_conf_${var}_";
358             $text =~ s{[\W\s]}{_}g;
359             $ConfName{$var} = "item_$text";
360         } elsif ( /^$/ ) {
361             if ( $str ne "" && @conf ) {
362                 $out .= "=item " . join("\n\n=item ", @conf) . "\n\n";
363                 $out .= $str;
364                 $out .= "\n" if ( $str !~ /\n$/ );
365             }
366             $str = "";
367             @conf = ();
368         }
369     }
370     if ( $str ne "" && @conf ) {
371         $out .= "=item " . join("\n\n=item ", @conf) . "\n\n";
372         $out .= $str;
373         $out .= "\n" if ( $str !~ /\n$/ );
374     }
375     $out .= "=back\n\n" if ( !$first );
376     return $out;
377 }
378
379 sub CheckConfigParams
380 {
381     my($file, $vars, $check) = @_;
382     my $errors;
383
384     open(F, $file) || die("can't open $file\n");
385     binmode(F);
386     if ( $check ) {
387         while ( <F> ) {
388             s/\$(self|bpc)->{Conf}{([^}\$]+)}/if ( !defined($vars->{$2}) ) {
389                     print("Unexpected Conf var $2 in $file\n");
390                     $errors++;
391                 } else {
392                     $vars->{$2}++;
393                 }/eg;
394             s/\$[Cc]onf(?:->)?{([^}\$]+)}/if ( !defined($vars->{$1}) ) {
395                     print("Unexpected Conf var $1 in $file\n");
396                     $errors++;
397                 } else {
398                     $vars->{$1}++;
399                 }/eg;
400             s/UserCommandRun\("([^"]*)"/if ( !defined($vars->{$1}) ) {
401                     print("Unexpected Conf var $1 in $file\n");
402                     $errors++;
403                 } else {
404                     $vars->{$1}++;
405                 }/eg;
406         }
407     } else {
408         while ( <F> ) {
409             s/^[^#]*\$self->{Conf}{([^}]*)/$vars->{$1} = 1;/eg;
410             s/^[^#]*\$Conf{([^}]*)/$vars->{$1} = 1;/eg;
411         }
412     }
413     close(F);
414     return $errors;
415 }
416
417 sub CheckMetaDataVsConfig
418 {
419     my($confVars, $file) = @_;
420     my $done = {};
421     my $errors;
422
423     #
424     # Check that the meta file mentions all the config
425     # parameters
426     #
427     open(F, $file) || die("can't open $file");
428
429     while ( <F> ) {
430         next if ( !/^\s{4}(\w+)\s+=>/ );
431         if ( $confVars->{$1} ) {
432             $done->{$1} = 1;
433             next;
434         }
435         next if ( $1 eq "Hosts" );
436         print("$file has $1 but missing from conf/config.pl\n");
437         $errors++;
438     }
439     close(F);
440     foreach my $v ( keys(%$confVars) ) {
441         next if ( $done->{$v} );
442         print("$file missing $v from conf/config.pl\n");
443         $errors++;
444     }
445
446     #
447     # Do extra checks that the CgiUserConfigEdit hash in the Meta
448     # file matches the config file
449     #
450     foreach my $p ( keys(%{$ConfigMeta{CgiUserConfigEdit}{child}}) ) {
451         if ( !defined($bpc->{Conf}{CgiUserConfigEdit}{$p}) ) {
452             print("lib/BackupPC/Config/Meta.pm has $p in CgiUserConfigEdit,"
453                 . " but conf/config.pl CgiUserConfigEdit does not\n");
454             $errors++;
455         }
456     }
457     foreach my $p ( keys(%{$bpc->{Conf}{CgiUserConfigEdit}}) ) {
458         if ( !defined($ConfigMeta{CgiUserConfigEdit}{child}{$p}) ) {
459             print("conf/config.pl CgiUserConfigEdit has $p, but"
460                 . " lib/BackupPC/Config/Meta.pm does not\n");
461             $errors++;
462         }
463     }
464     return $errors;
465 }
466
467 sub CheckEditorVsConfig
468 {
469     my($confVars, $file) = @_;
470     my $done = {};
471     my $errors;
472
473     #
474     # Check that the config editor file mentions all the config
475     # parameters
476     #
477     open(F, $file) || die("can't open $file");
478
479     while ( <F> ) {
480         next if ( !/name\s*=>\s*"(\w+)"/ );
481         if ( $confVars->{$1} ) {
482             $done->{$1} = 1;
483             next;
484         }
485         next if ( $1 eq "Hosts" );
486         print("$file has $1 but missing from conf/config.pl\n");
487         $errors++;
488     }
489     close(F);
490     foreach my $v ( keys(%$confVars) ) {
491         next if ( $done->{$v} );
492         print("$file missing $v from conf/config.pl\n");
493         $errors++;
494     }
495     return $errors;
496 }
497
498 #
499 # Make sure that every lang variable in cgi-bin/BackupPC_Admin matches
500 # the strings in each lib/BackupPC/Lang/*.pm file.  This makes sure
501 # we didn't miss any translations in any of the languages.
502 #
503 sub CheckLangUsage
504 {
505     my $errors;
506     my $vars = {};
507
508     foreach my $file ( (
509                 qw(cgi-bin/BackupPC_Admin bin/BackupPC_sendEmail),
510                 <lib/BackupPC/CGI/*pm>,
511                 <lib/BackupPC/Lang/en.pm>,
512             ) ) {
513         open(F, $file) || die("can't open $file");
514         binmode(F);
515         while ( <F> ) {
516             next if ( /^\s*#/ );
517             s/\$Lang->{([^}]*)}/$vars->{$1} = 1;/eg;
518             s/(text|comment)\s*=>\s*"(CfgEdit_.*)"/$vars->{$2} = 1;/eg;
519         }
520         close(F);
521     }
522
523     foreach my $f ( <lib/BackupPC/Lang/*.pm> ) {
524         my $done = {};
525         open(F, $f) || die("can't open $f\n");
526         binmode(F);
527         while ( <F> ) {
528             s/#.*//g;
529             s/\$Lang{([^}]*)}/
530                     my $var = $1;
531                     next if ( $var =~ m{^(Reason_|Status_|backupType_|Disabled_)} );
532                     next if ( $var eq "Documentation" );
533                     if ( !defined($vars->{$var}) ) {
534                         print("Unexpected Lang var $var in $f\n");
535                         $errors++;
536                     } else {
537                         $done->{$var} = 1;
538                     }/eg;
539         }
540         close(F);
541         foreach my $v ( keys(%$vars) ) {
542             #
543             # skip "variables" with "$", since they are like expressions
544             #
545             next if ( $v =~ /\$/ );
546             if ( !defined($done->{$v}) ) {
547                 print("Lang var $v missing from $f\n");
548                 $errors++;
549             }
550         }
551     }
552     return $errors;
553 }
554
555 #
556 # Pedantically check that all the html tags in each language file
557 # match.
558 #
559 sub CheckLangTags
560 {
561     my($en, $enVars) = LangParse("lib/BackupPC/Lang/en.pm");
562     my($errors);
563
564     foreach my $lang ( qw(fr.pm de.pm es.pm it.pm nl.pm pt_br.pm zh_CN.pm) ) {
565         my($d, $dVars) = LangParse("lib/BackupPC/Lang/$lang");
566         foreach my $v1 ( @$en ) {
567             my $v2 = shift(@$d);
568             if ( $v1->{var} ne $v2->{var} ) {
569                 print("Botch: got $lang var $v2->{var} vs en.pm $v1->{var}\n");
570                 exit;
571             }
572             my $t1 = LangTextStrip($v1->{val});
573             my $t2 = LangTextStrip($v2->{val});
574             if ( $t1 ne $t2 ) {
575                 my $i;
576                 for ( $i = 0 ; $i < length($t1) ; $i++ ) {
577                     last if ( substr($t1, 0, $i) ne substr($t2, 0, $i) );
578                 }
579                 print("$v1->{var}: ($i) got en.pm $t1\nvs $lang $t2\n\n");
580                 $errors++;
581             }
582         }
583     }
584     return $errors;
585 }
586
587 sub LangTextStrip
588 {
589     my($t) = @_;
590
591     $t = "" if ( $t !~ /<.*>/ );
592     $t =~ s/^[^<]*</</s;
593     $t =~ s/([}>])[^<]*</$1</g;
594     $t =~ s/>[^<]*$/>/;
595     $t =~ s/(value=)"[^"]*"/$1""/sg;
596     $t =~ s/({h[12]\()"[^"]*"/$1""/g;
597     $t =~ s/ENG[\s\n]*//sg;
598     $t =~ s/^(<<EOF;\n)[^<]*/$1/g;
599     return $t;
600 }
601
602 sub LangParse
603 {
604     my($file) = @_;
605     open(C, $file) || die("can't open $file");
606     binmode(C);
607     my($out, @lang, $var);
608     my $comment = 1;
609     my $allVars = {};
610     my $endLine = undef;
611     while ( <C> ) {
612         if ( /^#/ && !defined($endLine) ) {
613             if ( $comment ) {
614                 $out .= $_;
615             } else {
616                 if ( $out ne "" ) {
617                     $allVars->{$var} = @lang if ( defined($var) );
618                     push(@lang, {
619                         text => $out,
620                         var => $var,
621                     });
622                 }
623                 $var = undef;
624                 $comment = 1;
625                 $out = $_;
626             }
627         } elsif ( /^\s*\$Lang\{([^}]*)/ ) {
628             $comment = 0;
629             if ( defined($var) ) {
630                 $allVars->{$var} = @lang if ( defined($var) );
631                 push(@lang, {
632                     text => $out,
633                     var => $var,
634                 });
635                 $out = $_;
636             } else {
637                 $out .= $_;
638             }
639             $var = $1;
640             $endLine = $1 if ( /^\s*\$Lang\{[^}]*} *= *<<(.*);/ );
641             $endLine = $1 if ( /^\s*\$Lang\{[^}]*} *= *<<'(.*)';/ );
642         } else {
643             $endLine = undef if ( defined($endLine) && /^\Q$endLine[\n\r]*$/ );
644             $out .= $_;
645         }
646     }
647     if ( $out ne "" ) {
648         $allVars->{$var} = @lang if ( defined($var) );
649         push(@lang, {
650             text => $out,
651             var  => $var,
652         });
653     }
654     close(C);
655     foreach my $v ( @lang ) {
656         if ( $v->{text} =~ /\$Lang{$v->{var}}\s*=\s*(.*)/s ) {
657             $v->{val} = $1;
658         }
659     }
660     return (\@lang, $allVars);
661 }