2002-07-01 10:52:54 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# Helper to create the texinfo versions from gpg.sgml
|
|
|
|
#
|
2004-10-18 09:40:11 +02:00
|
|
|
# Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
2002-07-01 10:52:54 +02:00
|
|
|
#
|
|
|
|
# This file is free software; as a special exception the author gives
|
|
|
|
# unlimited permission to copy and/or distribute it, with or without
|
|
|
|
# modifications, as long as this notice is preserved.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
for file in gpg gpgv; do
|
2004-10-01 12:11:42 +02:00
|
|
|
sgml2xml -x lower ${file}.sgml >${file}.xml
|
|
|
|
# docbook2texi ${file}.xml | sed 's,--,---,' | (
|
2004-10-18 09:40:11 +02:00
|
|
|
docbook2x-texi --to-stdout ${file}.xml | \
|
|
|
|
sed '/^@setfilename/,/^@end direntry/d' | (
|
2004-10-15 11:34:21 +02:00
|
|
|
case "$file" in
|
|
|
|
*gpgv)
|
2004-10-18 09:40:11 +02:00
|
|
|
sed '/\\input texinfo/a \
|
|
|
|
@setfilename gpgv.info\
|
|
|
|
@dircategory GnuPG\
|
|
|
|
@direntry\
|
|
|
|
* gpgv: (gpgv). GnuPG signature verification tool.\
|
|
|
|
@end direntry
|
|
|
|
'
|
2004-10-15 11:34:21 +02:00
|
|
|
;;
|
2004-10-18 09:40:11 +02:00
|
|
|
|
2004-10-15 11:34:21 +02:00
|
|
|
gpg)
|
2004-10-18 09:40:11 +02:00
|
|
|
sed '/\\input texinfo/a \
|
|
|
|
@setfilename gpg.info\
|
|
|
|
@dircategory GnuPG\
|
|
|
|
@direntry\
|
|
|
|
* gpg: (gpg). GnuPG encryption and signing tool.\
|
|
|
|
@end direntry
|
|
|
|
'
|
2004-10-15 11:34:21 +02:00
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
cat
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
) >${file}.texi
|
2002-07-01 10:52:54 +02:00
|
|
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-10-18 09:40:11 +02:00
|
|
|
|