diff options
author | Werner Koch <[email protected]> | 2000-03-13 18:19:12 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2000-03-13 18:19:12 +0000 |
commit | 14a2e006bcd829671191c127d7ad3288995db8f9 (patch) | |
tree | ca819fd1b70778754f9ef438a62269e28896a7e6 /doc | |
parent | See ChangeLog: Mon Feb 21 22:43:01 CET 2000 Werner Koch (diff) | |
download | gnupg-14a2e006bcd829671191c127d7ad3288995db8f9.tar.gz gnupg-14a2e006bcd829671191c127d7ad3288995db8f9.zip |
See ChangeLog: Mon Mar 13 19:22:46 CET 2000 Werner Koch
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 33 | ||||
-rw-r--r-- | doc/gcryptref.sgml | 33 | ||||
-rw-r--r-- | doc/version.sgml.in | 1 |
3 files changed, 52 insertions, 15 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 04ad0a4c7..995b0b3db 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,33 +1,40 @@ ## Process this file with automake to create Makefile.in -EXTRA_DIST = DETAILS gpg.sgml gpg.1 FAQ HACKING OpenPGP +EXTRA_DIST = DETAILS gpg.sgml gpg.1 FAQ HACKING OpenPGP \ + version.sgml.in man_MANS = gpg.1 +pkgdata_DATA = gcryptref.html gcryptref.ps -gcryptref.dvi : gcryptref.sgml +BUILT_SOURCES = version.sgml gcryptref.html gcryptref.ps -gcryptref.texi : gcryptref.sgml -gcryptref.xml : gcryptref.sgml +CLEANFILES = gcryptref.aux gcryptref.log gcryptref.tex gcryptref.dvi -%.ps: %.dvi - dvips -o $@ $< - +gcryptref.sgml : version.sgml -if MAINTAINER_MODE +if HAVE_DB2MAN %.1 : %.sgml - docbook-to-man $< >$@ + $(DB2MAN) $< >$@ +endif -%.texi : %.xml - docbook2texi $< >$@ +if HAVE_DB2TEX +%.ps : %.dvi + dvips -o $@ $< -%.xml : %.sgml - sgml2xml -x lower $< >$@ +%.tex : %.sgml + $(DB2TEX) -V generate-book-toc $< > $@ +%.dvi : %.tex + $(JADETEX) $< endif +if HAVE_DB2HTML +%.html : %.sgml + $(DB2HTML) --nosplit $< +endif diff --git a/doc/gcryptref.sgml b/doc/gcryptref.sgml index abc3efb20..bf9d5092d 100644 --- a/doc/gcryptref.sgml +++ b/doc/gcryptref.sgml @@ -18,7 +18,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA --> -<!DOCTYPE reference PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [ +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [ +<!--entity genindex system "gcryptref.toc-idx"--> +<!entity packageversion system "version.sgml"> <!entity libgcrypt "Libgcrypt"> <!entity sexp "S-Exp"> <!entity cipherref system "gcryptref-cipher.sgml"> @@ -27,6 +29,33 @@ <!entity miscref system "gcryptref-misc.sgml"> ]> +<book> +<bookinfo> +<title>The &libgcrypt; Reference Manual</title> +<subtitle>Version &packageversion;</subtitle> +<date> +2000-03-13 +</date> +<copyright> +<year>2000</year> +<holder>Free Software Foundation, Inc.</holder> +</copyright> +<abstract> +<para> +Please direct questions, bug reports, or suggestions concerning +this manual to the mailing list <email>[email protected]</email>. +</para> + +<para> +This manual may be redistributed under the terms of the +<ulink url="http://www.gnu.org/copyleft/gpl.html"><phrase>GNU +General Public License</phrase></ulink>. +</para> +</abstract> +</bookinfo> + + + <reference> <title>&libgcrypt; Reference Pages</title> @@ -37,7 +66,7 @@ <!-- Hash Functions --> &digestref; -<!-- ublic Key Functions --> +<!-- Public Key Functions --> &pubkeyref; <!-- Miscellaneous Functions --> diff --git a/doc/version.sgml.in b/doc/version.sgml.in new file mode 100644 index 000000000..d78bda934 --- /dev/null +++ b/doc/version.sgml.in @@ -0,0 +1 @@ +@VERSION@ |