summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile.test8
-rw-r--r--Rules.make7
-rwxr-xr-xscripts/makecfg.pl98
3 files changed, 111 insertions, 2 deletions
diff --git a/Makefile.test b/Makefile.test
index dc0eec7..64f2f41 100644
--- a/Makefile.test
+++ b/Makefile.test
@@ -1,9 +1,14 @@
1#!/usr/bin/make -f 1#!/usr/bin/make -f
2 2
3# The following are config.in's which are generated, to avoid numerous manual edits when
4# adding packages to the build.
5
6configs += config.in core/applets/config.in core/applets/restartapplet2/config.in core/apps/config.in core/config.in core/multimedia/config.in core/pim/config.in core/pim/today/plugins/config.in core/settings/config.in development/config.in inputmethods/config.in libopie/ofileselector/config.in libopie/pim/config.in libsql/config.in noncore/applets/config.in noncore/apps/config.in noncore/apps/opie-console/test/config.in noncore/comm/config.in noncore/config.in noncore/decorations/config.in noncore/games/config.in noncore/graphics/config.in noncore/multimedia/config.in noncore/net/config.in noncore/net/opietooth/config.in noncore/settings/config.in noncore/styles/config.in noncore/todayplugins/config.in noncore/tools/calc2/config.in noncore/tools/config.in noncore/unsupported/config.in noncore/unsupported/opiemail/ifaces/config.in x11/config.in x11/ipc/config.in x11/ipc/server/config.in
7
3OPIEDIR:=$(shell pwd) 8OPIEDIR:=$(shell pwd)
4TOPDIR:=$(OPIEDIR) 9TOPDIR:=$(OPIEDIR)
5 10
6all : 11all : $(configs)
7 12
8-include $(TOPDIR)/.config 13-include $(TOPDIR)/.config
9-include $(TOPDIR)/.depends 14-include $(TOPDIR)/.depends
@@ -11,3 +16,4 @@ all :
11all : $(TOPDIR)/.depends $(subdir-y) 16all : $(TOPDIR)/.depends $(subdir-y)
12 17
13include $(TOPDIR)/Rules.make 18include $(TOPDIR)/Rules.make
19
diff --git a/Rules.make b/Rules.make
index 2fa5e7f..96e528b 100644
--- a/Rules.make
+++ b/Rules.make
@@ -1,6 +1,7 @@
1## targets ## 1## targets ##
2 2
3$(TOPDIR)/config.in : 3$(configs) :
4 $(call makecfg,$@)
4 5
5$(TOPDIR)/.depends : $(TOPDIR)/config.in 6$(TOPDIR)/.depends : $(TOPDIR)/config.in
6 @cat $(TOPDIR)/packages | \ 7 @cat $(TOPDIR)/packages | \
@@ -38,3 +39,7 @@ endef
38define makefilegen 39define makefilegen
39 cd $(shell dirname $(1)); $(TOPDIR)/qmake/qmake $(3) -o $(shell basename $(1)) `echo $(1)|sed -e 's,/Makefile$$,,g' -e 's,.*/,,g'`.pro 40 cd $(shell dirname $(1)); $(TOPDIR)/qmake/qmake $(3) -o $(shell basename $(1)) `echo $(1)|sed -e 's,/Makefile$$,,g' -e 's,.*/,,g'`.pro
40endef 41endef
42
43define makecfg
44 $(TOPDIR)/scripts/makecfg.pl $1
45endef
diff --git a/scripts/makecfg.pl b/scripts/makecfg.pl
new file mode 100755
index 0000000..20c23f5
--- a/dev/null
+++ b/scripts/makecfg.pl
@@ -0,0 +1,98 @@
1#!/usr/bin/perl -w
2eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
3if 0; #$running_under_some_shell
4
5use strict;
6use File::Find;
7
8my $packages="";
9open(FILE, "<./packages");
10while(<FILE>){$packages.=$_;}
11close(FILE);
12
13my ($dirname,$dir,$cfg,$filename,$tagname,$name,$caps,$pre,$post,$sources,@dupecheck);
14$cfg = shift || die;
15($dirname=$cfg)=~s,(.*)/(.*),$1,;
16($filename=$cfg)=~s,(.*/)(.*),$2,;
17($tagname=$dirname)=~s,.*/,,;
18($caps=$tagname)=~tr/[a-z]/[A-Z]/;
19#print "cfg is $cfg\n";
20#print "dir is $dirname\n";
21#print "filename is $filename\n";
22sub wanted;
23
24if(-e "$dirname/config.in.in"){
25 my $contents;
26 open(FILE, "<$dirname/config.in.in");
27 while(<FILE>){ $contents.=$_; }
28 close(FILE);
29 if($contents=~/\@sources\@/){
30 ($post = $contents) =~ s/^.*\@sources\@//s;
31 ($pre = $contents) =~ s/\@sources\@.*$//s;
32 } else {
33 $pre = $contents;
34 }
35} else {
36 $pre = "menu \"$tagname\"\n";
37 $post = "endmenu\n";
38}
39
40open(CFG, ">$cfg") || die "Unable to open $cfg for writing\n";
41select(CFG);
42print $pre;
43@dupecheck=();
44File::Find::find({wanted => \&wanted}, $dirname);
45print $post;
46select(STDOUT);
47close(CFG);
48
49exit;
50
51open(FILE,">$dir/config.in");
52select(FILE);
53print "menu \"$name\"\n";
54print "\n";
55my @subdirs=();
56my @dirs;
57foreach(grep(/^$dir/, @dirs)){
58 chomp;
59 /^$dir\/$name.pro$/ && next;
60 my $localdir=$_;
61 if($dir=~m,^$localdir$,){
62 next;
63 }
64#($locadir=$_)~s,/[^/]+$,,g;
65 if($localdir=~/^\.$/){next;}
66 if(grep(/^$localdir$/, @subdirs)){next;}
67 my $nslashes = $localdir =~ tr!/!!;
68 my $dirnslashes = $dir =~ tr!/!!;
69 $dirnslashes++;
70 if($dirnslashes != $nslashes ){next;}
71 print STDERR "$localdir/config.in\n";
72 print " source $localdir/config.in\n";
73 push(@subdirs, $localdir);
74 print "endmenu\n";
75 select(STDOUT);
76 close(FILE);
77}
78
79use vars qw/*name *dir *prune/;
80*name = *File::Find::name;
81*dir = *File::Find::dir;
82*prune = *File::Find::prune;
83
84sub wanted {
85 if( /config.in/s ) {
86 if(grep(/^$File::Find::dir\/config.in$/, @dupecheck)){
87 return;
88 }
89 my $nslashes = $File::Find::dir =~ tr!/!!;
90 my $dirnslashes = $dirname =~ tr!/!!;
91 $dirnslashes++;
92 # print STDERR "dirnslashes is $dirnslashes\n";
93 # print STDERR "nslashes is $nslashes\n";
94 if($dirnslashes != $nslashes){return;}
95 print " source " . $File::Find::dir . "/config.in\n";
96 push(@dupecheck, $File::Find::dir . "/config.in");
97 }
98}