summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-05-14 08:36:39 +0000
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-05-14 08:36:39 +0000
commit53df1c611254749b669d19d2ffa7fefe2f33019b (patch)
tree9f3135f2d4e09be6f29be3663765db573484c49c /scripts
parent739f48b3cee7682efc32acf30b141801a48b016f (diff)
generate package dependancies
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3774 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen_deps.pl34
1 files changed, 34 insertions, 0 deletions
diff --git a/scripts/gen_deps.pl b/scripts/gen_deps.pl
new file mode 100755
index 000000000..d4b6c76d0
--- /dev/null
+++ b/scripts/gen_deps.pl
@@ -0,0 +1,34 @@
+#!/usr/bin/perl
+use strict;
+
+my $name;
+my $src;
+my $makefile;
+my %pkg;
+
+my $line;
+while ($line = <>) {
+ chomp $line;
+ $line =~ /^Source-Makefile: \s*(.+\/([^\/]+)\/Makefile)\s*$/ and do {
+ $makefile = $1;
+ $src = $2;
+ };
+ $line =~ /^Package: \s*(.+)\s*$/ and do {
+ $name = $1;
+ defined $pkg{$name} or $pkg{$name} = {};
+ $pkg{$name}->{src} = $src;
+ };
+ $line =~ /^Depends: \s*(.+)\s*$/ and do {
+ my @dep = split /,\s*/, $1;
+ $pkg{$name}->{depends} = \@dep;
+ };
+}
+
+foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) {
+ print "$name: ";
+ foreach my $dep (@{$pkg{$name}->{depends}}) {
+ print "$dep ";
+ }
+ print "\n\tmake -C ".$pkg{$name}->{src}."\n";
+ print "\n";
+}