examples/autofs/mount.smb
authorHerb Lewis <herb@samba.org>
Tue, 25 May 1999 00:15:23 +0000 (00:15 +0000)
committerHerb Lewis <herb@samba.org>
Tue, 25 May 1999 00:15:23 +0000 (00:15 +0000)
examples/printer-accounting/hp5-redir
examples/printer-accounting/lp-acct  get rid of $Id $Source and $Log

packaging/SGI/idb.pl  remove files from include/.cvsignore and add files
from the SCRIPTS target that were missed.
packaging/SGI/mkman don't make man pages for smbmount, smbumount, smbrun

examples/autofs/mount.smb
examples/printer-accounting/hp5-redir
examples/printer-accounting/lp-acct
packaging/SGI/idb.pl
packaging/SGI/mkman

index 76f1a596e350d42ed5b63e9491b704ba53d26683..ca7e32038c5bc45568956bfd99ee206fcb5cd92b 100644 (file)
@@ -3,7 +3,6 @@
 
 # name:                        mount.smb  --  interface between mount and smbmount
 # author:              Ch. L. Spiel (cspiel@physik.tu-muenchen.de)
-# $Id: mount.smb,v 1.1 1998/04/13 12:31:10 jht Exp $
 
 # bash version:                1.14.7(1)
 # mount version:       2.7i
index 98c2b72edd2249be2c1a7b03d1b4840354f520b4..ea1299068a3347da9977dce1a558af62d84a9e0f 100644 (file)
@@ -1,8 +1,5 @@
 #!/usr/bin/perl
 #
-# $Source: /data/src/mirror/cvs/samba/examples/printer-accounting/hp5-redir,v $
-# $Id: hp5-redir,v 1.1 1996/07/23 03:30:56 samba-bugs Exp $
-#
 # 0 == stdin  == docuement
 # 1 == stdout == printer
 # 2 == stderr == logging
index 3fe45f877fd7e096b011ab61c286914ac93b2d57..91a3def08f8fdb7d5dd0da073c77b30654af266a 100644 (file)
@@ -1,8 +1,5 @@
 #!/usr/bin/perl
 #
-# $Source: /data/src/mirror/cvs/samba/examples/printer-accounting/lp-acct,v $
-# $Id: lp-acct,v 1.1 1996/07/23 03:30:56 samba-bugs Exp $
-#
 # 0 == stdin  == docuement
 # 1 == stdout == printer
 # 2 == stderr == logging
index 240553896bcbc8f0313b4a0136e493403f9072d6..c69688b7411261ed7a4baa926015545983bb9f90 100755 (executable)
@@ -14,6 +14,14 @@ while (<IGNORES>) {
 }
 close IGNORES;
 
+# We don't want the files listed in .cvsignore in the source/include tree
+open(IGNORES,"../src/source/include/.cvsignore") || die "Unable to open include/.cvsignore file\n";
+while (<IGNORES>) {
+  chop;
+  $ignores{$_}++;
+}
+close IGNORES;
+
 # get the names of all the binary files to be installed
 open(MAKEFILE,"../../source/Makefile") || die "Unable to open Makefile\n";
 @makefile = <MAKEFILE>;
@@ -32,6 +40,7 @@ if (@sprogs) {
 }
 if (@progs) {
   @progs[0] =~ s/^.*\=//;
+  @progs[0] =~ s/\$\(\S+\)\s//g;
   @progs = split(' ',@progs[0]);
 }
 if (@mprogs) {
@@ -48,6 +57,7 @@ if (@progs2) {
 }
 if (@scripts) {
   @scripts[0] =~ s/^.*\=//;
+  @scripts[0] =~ s/\$\(srcdir\)\///g;
   @scripts = split(' ',@scripts[0]);
 }
 if (@codepage) {
index dfb6fb9fda7b2b670b0f5d1cbfb51181e09b8a90..a39ed9fdd0c52a14f76192312dfec6b023c71ee2 100755 (executable)
@@ -9,6 +9,9 @@ FILES="*.?"
 
 cd ../../docs/manpages
 for FILE in  $FILES ; do
+   if [ "$FILE" = "smbmnt.8" ]; then continue; fi;
+   if [ "$FILE" = "smbmount.8" -o "$FILE" = "smbumount.8" ]; then continue; fi;
+   if [ "$FILE" = "smbrun.1" ]; then continue; fi;
    neqn $FILE | tbl | nroff -man > ../../packaging/SGI/catman/`basename $FILE`
    pack -f ../../packaging/SGI/catman/`basename $FILE`
 done