fix problem with output file not being properly sorted
[gd/samba-autobuild/.git] / packaging / SGI / idb.pl
1 #!/usr/bin/perl
2 require "pwd.pl" || die "Required pwd.pl not found";
3
4 # This perl script automatically generates the samba.idb file
5
6 &initpwd;
7 $curdir = $ENV{"PWD"};
8
9 # We don't want the files listed in .cvsignore in the source tree
10 open(IGNORES,"../../source/.cvsignore") || die "Unable to open .cvsignore file\n";
11 while (<IGNORES>) {
12   chop;
13   $ignores{$_}++;
14 }
15 close IGNORES;
16
17 # get the names of all the binary files to be installed
18 open(MAKEFILE,"Makefile") || die "Unable to open Makefile\n";
19 @makefile = <MAKEFILE>;
20 @sprogs = grep(/^SPROGS /,@makefile);
21 @progs1 = grep(/^PROGS1 /,@makefile);
22 @progs = grep(/^PROGS /,@makefile);
23 @scripts = grep(/^SCRIPTS /,@makefile);
24 @codepage = grep(/^CODEPAGELIST/,@makefile);
25 close MAKEFILE;
26
27 if (@sprogs) {
28   @sprogs[0] =~ s/^.*\=//;
29   @sprogs = split(' ',@sprogs[0]);
30 }
31 if (@progs) {
32   @progs[0] =~ s/^.*\=//;
33   @progs = split(' ',@progs[0]);
34 }
35 if (@progs1) {
36   @progs1[0] =~ s/^.*\=//;
37   @progs1 = split(' ',@progs1[0]);
38 }
39 if (@scripts) {
40   @scripts[0] =~ s/^.*\=//;
41   @scripts = split(' ',@scripts[0]);
42 }
43 if (@codepage) {
44   @codepage[0] =~ s/^.*\=//;
45   chdir '../../source';
46   # if we have codepages we need to create them for the package
47   system("./installcp.sh . ../packaging/SGI/codepages . @codepage[0]");
48   chdir $curdir;
49   @codepage = sort split(' ',@codepage[0]);
50 }
51 # install the swat files
52 chdir '../../source';
53 system("./installswat.sh  ../packaging/SGI/swat ./");
54 chdir $curdir;
55
56 # add my local files to the list of binaries to install
57 @bins = sort (@sprogs,@progs,@progs1,@scripts,("findsmb","sambalp","smbprint"));
58
59 # get a complete list of all files in the tree
60 chdir '../../';
61 &dodir('.');
62 chdir $curdir;
63
64 # the files installed in docs include all the original files in docs plus all
65 # the "*.doc" files from the source tree
66 @docs = sort byfilename grep (!/^docs\/$/ & (/^source\/.*\.doc$/ | /^docs\//),@allfiles);
67
68 @swatfiles = sort grep(/^packaging\/SGI\/swat/, @allfiles);
69 @catman = sort grep(/^packaging\/SGI\/catman/ & !/\/$/, @allfiles);
70 @catman = sort bydirnum @catman;
71
72 # strip out all the generated directories and the "*.o" files from the source
73 # release
74 @allfiles = grep(!/^.*\.o$/ & !/^packaging\/SGI\/bins/ & !/^packaging\/SGI\/catman/ & !/^packaging\/SGI\/html/ & !/^packaging\/SGI\/codepages/ & !/^packaging\/SGI\/swat/, @allfiles);
75
76 open(IDB,">samba.idb") || die "Unable to open samba.idb for output\n";
77
78 print IDB "f 0644 root sys etc/config/samba packaging/SGI/samba.config samba.sw.base config(update)\n";
79 print IDB "f 0755 root sys etc/init.d/samba packaging/SGI/samba.rc samba.sw.base\n";
80 print IDB "l 0000 root sys etc/rc0.d/K39samba packaging/SGI samba.sw.base symval(../init.d/samba)\n";
81 print IDB "l 0000 root sys etc/rc2.d/S81samba packaging/SGI samba.sw.base symval(../init.d/samba)\n";
82
83 @copyfile = grep (/^COPY/,@allfiles);
84 print IDB "d 0755 root sys usr/relnotes/samba packaging/SGI samba.man.relnotes\n";
85 print IDB "f 0644 root sys usr/relnotes/samba/@copyfile[0] @copyfile[0] samba.man.relnotes\n";
86 print IDB "f 0644 root sys usr/relnotes/samba/legal_notice.html packaging/SGI/legal_notice.html samba.man.relnotes\n";
87 print IDB "f 0644 root sys usr/relnotes/samba/samba-relnotes.html packaging/SGI/relnotes.html samba.man.relnotes\n";
88
89 print IDB "d 0755 root sys usr/samba packaging/SGI samba.sw.base\n";
90 print IDB "f 0444 root sys usr/samba/README packaging/SGI/README samba.sw.base\n";
91
92 print IDB "d 0755 root sys usr/samba/bin packaging/SGI samba.sw.base\n";
93 while(@bins) {
94   $nextfile = shift @bins;
95
96   if (index($nextfile,'$')) {
97     if ($nextfile eq "smbpasswd") {
98       print IDB "f 0755 root sys usr/samba/bin/$nextfile source/$nextfile samba.sw.base\n";
99     }
100     elsif ($nextfile eq "findsmb") {
101       print IDB "f 0755 root sys usr/samba/bin/$nextfile packaging/SGI/$nextfile samba.sw.base\n";
102     }
103     elsif ($nextfile eq "swat") {
104       print IDB "f 4755 root sys usr/samba/bin/$nextfile source/$nextfile samba.sw.base\n";
105     }
106     elsif ($nextfile eq "sambalp") {
107       print IDB "f 0755 root sys usr/samba/bin/$nextfile packaging/SGI/$nextfile samba.sw.base\n";
108     }
109     elsif ($nextfile eq "smbprint") {
110       print IDB "f 0755 root sys usr/samba/bin/$nextfile packaging/SGI/$nextfile samba.sw.base\n";
111     }
112     else {
113       print IDB "f 0755 root sys usr/samba/bin/$nextfile source/$nextfile samba.sw.base\n";
114     }
115   }
116 }
117
118 print IDB "d 0755 root sys usr/samba/docs docs samba.man.doc\n";
119 while (@docs) {
120   $nextfile = shift @docs;
121   next if ($nextfile eq "CVS");
122   ($junk,$file) = split(/\//,$nextfile,2);
123   if (grep(/\/$/,$nextfile)) {
124     print IDB "d 0755 root sys usr/samba/docs/$file $nextfile samba.man.doc\n";
125   }
126   else {
127     print IDB "f 0644 root sys usr/samba/docs/$file $nextfile samba.man.doc\n";
128   }
129 }
130
131 print IDB "f 0755 root sys usr/samba/inetd.sh packaging/SGI/inetd.sh samba.sw.base\n";
132 print IDB "d 0755 root sys usr/samba/lib packaging/SGI samba.sw.base\n";
133 if (@codepage) {
134   print IDB "d 0755 root sys usr/samba/lib/codepages packaging/SGI samba.sw.base\n";
135   while (@codepage) {
136     $nextpage = shift @codepage;
137     print IDB "f 0644 root sys usr/samba/lib/codepages/codepage.$nextpage packaging/SGI/codepages/codepage.$nextpage samba.sw.base\n";
138   }
139 }
140 print IDB "f 0644 root sys usr/samba/lib/smb.conf packaging/SGI/smb.conf samba.sw.base config(update)\n";
141 print IDB "f 0755 root sys usr/samba/mkprintcap.sh packaging/SGI/mkprintcap.sh samba.sw.base\n";
142
143 print IDB "d 0755 root sys usr/samba/src packaging/SGI samba.src.samba\n";
144 @sorted = sort(@allfiles);
145 while (@sorted) {
146   $nextfile = shift @sorted;
147   ($file = $nextfile) =~ s/^.*\///;
148   next if grep(/packaging\/SGI/& (/Makefile/ | /samba\.spec/ | /samba\.idb/),$nextfile);
149   next if grep(/source/,$nextfile) && ($ignores{$file});
150   next if ($nextfile eq "CVS");
151   if (grep(/\/$/,$nextfile)) {
152     print IDB "d 0755 root sys usr/samba/src/$nextfile $nextfile samba.src.samba\n";
153   }
154   else {
155     if (grep((/\.sh$/ | /\.pl$/ | /mkman$/),$nextfile)) {
156         print IDB "f 0755 root sys usr/samba/src/$nextfile $nextfile samba.src.samba\n";
157     }
158     else {
159         print IDB "f 0644 root sys usr/samba/src/$nextfile $nextfile samba.src.samba\n";
160     }
161   }
162 }
163
164 print IDB "d 0755 root sys usr/samba/swat packaging/SGI/swat samba.sw.base\n";
165 while (@swatfiles) {
166   $nextfile = shift @swatfiles;
167   ($file = $nextfile) =~ s/^packaging\/SGI\/swat\///;
168   next if !$file;
169   if (grep(/\/$/,$file)) {
170     print IDB "d 0755 root sys usr/samba/swat/$file packaging/SGI/swat/$file samba.sw.base\n";
171   }
172   else {
173     print IDB "f 0444 root sys usr/samba/swat/$file packaging/SGI/swat/$file samba.sw.base\n";
174   }
175 }
176
177 print IDB "d 0755 root sys usr/samba/var packaging/SGI samba.sw.base\n";
178 print IDB "d 0755 root sys usr/samba/var/locks packaging/SGI samba.sw.base\n";
179
180 print IDB "d 0755 root sys usr/share/catman/u_man packaging/SGI samba.man.manpages\n";
181 $olddirnum = "0";
182 while (@catman) {
183   $nextfile = shift @catman;
184   ($file = $nextfile) =~ s/^packaging\/SGI\/catman\///;
185   ($dirnum = $file) =~ s/^[\D]*//;
186   $dirnum =~ s/\.Z//;
187   if ($dirnum ne $olddirnum) {
188     print IDB "d 0755 root sys usr/share/catman/u_man/cat$dirnum packaging/SGI samba.man.manpages\n";
189     $olddirnum = $dirnum;
190   }
191   print IDB "f 0664 root sys usr/share/catman/u_man/cat$dirnum/$file $nextfile samba.man.manpages\n";
192 }
193
194 close IDB;
195 print "\n\nsamba.idb file has been created\n";
196
197 sub dodir {
198     local($dir, $nlink) = @_;
199     local($dev,$ino,$mode,$subcount);
200
201     ($dev,$ino,$mode,$nlink) = stat('.') unless $nlink;
202
203     opendir(DIR,'.') || die "Can't open $dir";
204     local(@filenames) = sort readdir(DIR);
205     closedir(DIR);
206
207     if ($nlink ==2) {           # This dir has no subdirectories.
208         for (@filenames) {
209             next if $_ eq '.';
210             next if $_ eq '..';
211             $this =  substr($dir,2)."/$_";
212             push(@allfiles,$this);
213         }
214     }
215     else {
216         $subcount = $nlink -2;
217         for (@filenames) {
218             next if $_ eq '.';
219             next if $_ eq '..';
220             next if $_ eq 'CVS';
221             ($dev,$ino,$mode,$nlink) = lstat($_);
222             $name = "$dir/$_";
223             $this = substr($name,2);
224             $this .= '/' if -d;
225             push(@allfiles,$this);
226             next if $subcount == 0;             # seen all the subdirs?
227
228             next unless -d _;
229
230             chdir $_ || die "Can't cd to $name";
231             &dodir($name,$nlink);
232             chdir '..';
233             --$subcount;
234         }
235     }
236 }
237
238 sub byfilename {
239   ($f0,$f1) = split(/\//,$a,2);
240   ($f0,$f2) = split(/\//,$b,2);
241   $f1 cmp $f2;
242 }
243
244 sub bydirnum {
245   ($f1 = $a) =~ s/^.*\///;
246   ($f2 = $b) =~ s/^.*\///;
247   ($dir1 = $a) =~ s/^[\D]*//;
248   ($dir2 = $b) =~ s/^[\D]*//;
249   if (!($dir1 <=> $dir2)) {
250     $f1 cmp $f2;
251   }
252   else {
253     $dir1 <=> $dir2;
254   }
255 }