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