41 lines
1.4 KiB
Bash
41 lines
1.4 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
|
|
# Copyright (C) 2001, 2002 Internet Software Consortium.
|
|
#
|
|
# Permission to use, copy, modify, and distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
|
|
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
# AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
# PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
# Id: docbook2man-wrapper.sh.in,v 1.2.2.3.8.1 2004/03/06 13:16:20 marka Exp
|
|
|
|
case $# in
|
|
3) ;;
|
|
*) echo "$0: wrong number of arguments" >&2; exit 1 ;;
|
|
esac
|
|
|
|
top_srcdir=$1
|
|
source=$2
|
|
target=$3
|
|
|
|
ONSGMLS=onsgmls
|
|
SGMLSPL=sgmlspl
|
|
SGMLCATALOG=@SGMLCATALOG@
|
|
DOCBOOK2MANSPEC=@DOCBOOK2MANSPEC@
|
|
|
|
${ONSGMLS} -c ${SGMLCATALOG} $source | ${SGMLSPL} ${DOCBOOK2MANSPEC}
|
|
rm -f $target.tmp
|
|
grep -v 'auto-generated by docbook2man' $target > $target.tmp
|
|
rm -f $target
|
|
cat ${top_srcdir}/docutil/MAN_COPYRIGHT > $target
|
|
cat $target.tmp >> $target
|
|
rm -f manpage.* $target.tmp
|