--- loncom/build/Attic/parse.pl 2000/12/10 17:27:11 1.10 +++ loncom/build/Attic/parse.pl 2000/12/11 18:35:14 1.11 @@ -128,6 +128,26 @@ elsif ($mode eq "LCMakefile") { $a=&make_links_install_segment(\@directories); print $a; } +elsif ($mode eq "BinaryRoot") { + mkdir "BinaryRoot",0755; + open OUT,">Makefile.BinaryRoot"; + @directories=&determine_directory_structure; + $a=&make_directory_binaryroot_segment(\@directories); + print OUT $a; + $a=&make_files_binaryroot_segment(\@directories); + print OUT $a; + $a=&make_links_binaryroot_segment(\@directories); + print OUT $a; + close OUT; + print `make -f Makefile.BinaryRoot TARGET='BinaryRoot' SOURCE='../..' directories`; + print `make -f Makefile.BinaryRoot TARGET='BinaryRoot' SOURCE='../..' files`; + print `make -f Makefile.BinaryRoot TARGET='BinaryRoot' SOURCE='../..' links`; + open OUT,">base_file_list.txt"; + $a=&make_file_list(\@directories); + print OUT $a; + close OUT; + +} elsif ($mode eq "status") { } elsif ($mode eq "update") { @@ -135,6 +155,170 @@ elsif ($mode eq "update") { elsif ($mode eq "freshinstall") { } +# ------------------------------------------------------ a list of file targets +sub make_file_list { + my ($dirs)=@_; + my $description; + my @allfiles=keys %{$info{'LOCATION'}{$distribution}}; + foreach my $d (@$dirs) { + # set other values + my $dirdescription=$info{'DIRECTORY'}{$distribution}{$d}{'DESCRIPTION'}; + $dirdescription="(" . $dirdescription . ")" if $dirdescription; + # find files that are contained in this directory + my @files; + my @filesfull; + foreach my $f (@allfiles) { + if ($f=~/^$d\/([^\/]+)$/) { + push @files,$1; + push @filesfull,$f; + } + } + # render starting HTML formatting elements + if (@files) { + } + if (@files) { + foreach my $i (0..$#files) { + my $category=$info{'LOCATION'}{$distribution}{$filesfull[$i]}{'CATEGORY'}; + my $chown=$info{'OWNERSHIP'}{$category}{'CHOWN'}; + my $chmod=$info{'OWNERSHIP'}{$category}{'CHMOD'}; + my $devchown=$info{'DEVOWNERSHIP'}{$category}{'CHOWN'}; + my $devchmod=$info{'DEVOWNERSHIP'}{$category}{'CHMOD'}; + my $source=$info{'LOCATION'}{$distribution}{$filesfull[$i]}{'SOURCE'}; + my $rot="/".$filesfull[$i]; + if ($rot=~/\*/) { + $rot=~s/[^\/]+$// if $rot=~/\*/; + my $listing=$info{'LOCATION'}{$distribution}{$filesfull[$i]}{'FILES'}; + chop $listing; + my @list=split(/\s+/,$listing); + my $rot2; + foreach my $l (@list) { + $l=~s/^\s*//; $l=~s/\s*$//; + $rot2.="$rot$l\n" if length($l); + } + chop $rot2; + $rot=$rot2; + } + $description.=<