version 1.10, 2000/12/10 17:27:11
|
version 1.11, 2000/12/11 18:35:14
|
Line 128 elsif ($mode eq "LCMakefile") {
|
Line 128 elsif ($mode eq "LCMakefile") {
|
$a=&make_links_install_segment(\@directories); |
$a=&make_links_install_segment(\@directories); |
print $a; |
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 "status") { |
} |
} |
elsif ($mode eq "update") { |
elsif ($mode eq "update") { |
Line 135 elsif ($mode eq "update") {
|
Line 155 elsif ($mode eq "update") {
|
elsif ($mode eq "freshinstall") { |
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.=<<END; |
|
$rot |
|
END |
|
} |
|
} |
|
} |
|
$description.=<<END; |
|
|
|
END |
|
return $description; |
|
} |
|
|
|
# --------------------------------- Commands to make BinaryRoot directories |
|
sub make_directory_binaryroot_segment { |
|
my ($dirs)=@_; |
|
my $description=<<END; |
|
directories: |
|
END |
|
foreach my $d (@$dirs) { |
|
my $category=$info{'DIRECTORY'}{$distribution}{$d}{'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 $own=$devchown; $own=~s/\:/\,/; |
|
$description.=<<END; |
|
\tinstall -m $devchmod -d \$(TARGET)/$d |
|
END |
|
} |
|
$description.=<<END; |
|
|
|
END |
|
return $description; |
|
} |
|
|
|
# --------------------------------------- Commands to make BinaryRoot files |
|
sub make_files_binaryroot_segment { |
|
my ($dirs)=@_; |
|
my $description=<<END; |
|
files: |
|
END |
|
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) { |
|
$description.=<<END; |
|
\t# $d $dirdescription |
|
END |
|
} |
|
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]; |
|
$rot=~s/[^\/]+$/\./ if $rot=~/\*/; |
|
$description.=<<END if $category ne 'symbolic link'; |
|
\tinstall -m $devchmod \$(SOURCE)/$source \$(TARGET)/$rot |
|
END |
|
} |
|
} |
|
} |
|
$description.=<<END; |
|
|
|
END |
|
return $description; |
|
} |
|
|
|
# ------------------------------ Commands to make BinaryRoot symbolic links |
|
sub make_links_binaryroot_segment { |
|
my ($dirs)=@_; |
|
my $description=<<END; |
|
links: |
|
END |
|
my @allfiles=keys %{$info{'LOCATION'}{$distribution}}; |
|
foreach my $d (@$dirs) { |
|
# 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) { |
|
foreach my $i (0..$#files) { |
|
my $category=$info{'LOCATION'}{$distribution}{$filesfull[$i]}{'CATEGORY'}; |
|
my $linkto=$info{'LOCATION'}{$distribution}{$filesfull[$i]}{'LINKTO'}; |
|
my $chown=$info{'OWNERSHIP'}{$category}{'CHOWN'}; |
|
my $chmod=$info{'OWNERSHIP'}{$category}{'CHMOD'}; |
|
my $devchown=$info{'DEVOWNERSHIP'}{$category}{'CHOWN'}; |
|
my $devchmod=$info{'DEVOWNERSHIP'}{$category}{'CHMOD'}; |
|
$description.=<<END if $category eq 'symbolic link'; |
|
\tln -s /$linkto \$(TARGET)/$filesfull[$i] |
|
END |
|
} |
|
} |
|
} |
|
$description.=<<END; |
|
|
|
END |
|
return $description; |
|
} |
|
|
# --------------------------------- Installation commands to install directories |
# --------------------------------- Installation commands to install directories |
sub make_directory_install_segment { |
sub make_directory_install_segment { |
my ($dirs)=@_; |
my ($dirs)=@_; |