diff options
author | Jeremy Allison <jra@samba.org> | 1997-09-05 02:28:41 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1997-09-05 02:28:41 +0000 |
commit | d6fc4eb405d83c3a54e47857758886adf417f2f6 (patch) | |
tree | 89494c35544fd363ca79369e69826b232f009425 /packaging/SGI/mkman | |
parent | ab68ac375ee5c175366123617887a725498efddc (diff) | |
download | samba-d6fc4eb405d83c3a54e47857758886adf417f2f6.tar.gz samba-d6fc4eb405d83c3a54e47857758886adf417f2f6.tar.bz2 samba-d6fc4eb405d83c3a54e47857758886adf417f2f6.zip |
This is really Herb adding the SGI packaging files.
(This used to be commit 8fde65239d0a9462fb044670220cd3c63bd887cb)
Diffstat (limited to 'packaging/SGI/mkman')
-rwxr-xr-x | packaging/SGI/mkman | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/packaging/SGI/mkman b/packaging/SGI/mkman new file mode 100755 index 0000000000..fedeb4d719 --- /dev/null +++ b/packaging/SGI/mkman @@ -0,0 +1,22 @@ +#!/bin/sh + +if [ ! -d catman ]; then + mkdir catman +fi + +# if you wish to make html versions of the man pages then uncomment +# the following section and the "rman" command below +# +# if [ ! -d html ]; then +# mkdir html +# fi + +FILES="*.?" + +cd ../../docs +for FILE in $FILES ; do + neqn $FILE | tbl | nroff -man > ../packaging/SGI/catman/`basename $FILE` + compress -f ../packaging/SGI/catman/`basename $FILE` +# rman -f html -r "%s.%s.html" $FILE > ../packaging/SGI/html/$FILE.html +done +cd ../packaging/SGI |