summaryrefslogtreecommitdiff
path: root/scripts/makecfg.pl
authorkergoth <kergoth>2002-11-05 16:33:50 (UTC)
committer kergoth <kergoth>2002-11-05 16:33:50 (UTC)
commitd590a056fde3eb4ad37ecd202ea024a9ad110106 (patch) (side-by-side diff)
tree4ab78078234f70d786e172a9408b208582e175a5 /scripts/makecfg.pl
parent6561744765fdc099767c285e95ab9eb09d6087cb (diff)
downloadopie-d590a056fde3eb4ad37ecd202ea024a9ad110106.zip
opie-d590a056fde3eb4ad37ecd202ea024a9ad110106.tar.gz
opie-d590a056fde3eb4ad37ecd202ea024a9ad110106.tar.bz2
tweaks
Diffstat (limited to 'scripts/makecfg.pl') (more/less context) (ignore whitespace changes)
-rwxr-xr-xscripts/makecfg.pl12
1 files changed, 8 insertions, 4 deletions
diff --git a/scripts/makecfg.pl b/scripts/makecfg.pl
index 20c23f5..5dd66a4 100755
--- a/scripts/makecfg.pl
+++ b/scripts/makecfg.pl
@@ -1,26 +1,30 @@
#!/usr/bin/perl -w
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
if 0; #$running_under_some_shell
use strict;
use File::Find;
my $packages="";
open(FILE, "<./packages");
while(<FILE>){$packages.=$_;}
close(FILE);
-my ($dirname,$dir,$cfg,$filename,$tagname,$name,$caps,$pre,$post,$sources,@dupecheck);
-$cfg = shift || die;
+my ($dirname,$dir,$file,@files,$filename,$tagname,$name,$caps,$pre,$post,$sources,@dupecheck);
+$file = shift || die;
+push(@files, $file);
+
+foreach(@files){
+my $cfg=$_;
($dirname=$cfg)=~s,(.*)/(.*),$1,;
($filename=$cfg)=~s,(.*/)(.*),$2,;
($tagname=$dirname)=~s,.*/,,;
($caps=$tagname)=~tr/[a-z]/[A-Z]/;
#print "cfg is $cfg\n";
#print "dir is $dirname\n";
#print "filename is $filename\n";
sub wanted;
if(-e "$dirname/config.in.in"){
my $contents;
open(FILE, "<$dirname/config.in.in");
@@ -36,25 +40,25 @@ if(-e "$dirname/config.in.in"){
$pre = "menu \"$tagname\"\n";
$post = "endmenu\n";
}
open(CFG, ">$cfg") || die "Unable to open $cfg for writing\n";
select(CFG);
print $pre;
@dupecheck=();
File::Find::find({wanted => \&wanted}, $dirname);
print $post;
select(STDOUT);
close(CFG);
-
+}
exit;
open(FILE,">$dir/config.in");
select(FILE);
print "menu \"$name\"\n";
print "\n";
my @subdirs=();
my @dirs;
foreach(grep(/^$dir/, @dirs)){
chomp;
/^$dir\/$name.pro$/ && next;
my $localdir=$_;
@@ -73,25 +77,25 @@ foreach(grep(/^$dir/, @dirs)){
push(@subdirs, $localdir);
print "endmenu\n";
select(STDOUT);
close(FILE);
}
use vars qw/*name *dir *prune/;
*name = *File::Find::name;
*dir = *File::Find::dir;
*prune = *File::Find::prune;
sub wanted {
- if( /config.in/s ) {
+ if( /config.in$/s ) {
if(grep(/^$File::Find::dir\/config.in$/, @dupecheck)){
return;
}
my $nslashes = $File::Find::dir =~ tr!/!!;
my $dirnslashes = $dirname =~ tr!/!!;
$dirnslashes++;
# print STDERR "dirnslashes is $dirnslashes\n";
# print STDERR "nslashes is $nslashes\n";
if($dirnslashes != $nslashes){return;}
print " source " . $File::Find::dir . "/config.in\n";
push(@dupecheck, $File::Find::dir . "/config.in");
}