r16239 - gnucash-docs/trunk/guide/C - Add really crappy PDF generation support.

Josh Sled jsled at cvs.gnucash.org
Sat Jun 30 12:08:54 EDT 2007


Author: jsled
Date: 2007-06-30 12:08:53 -0400 (Sat, 30 Jun 2007)
New Revision: 16239
Trac: http://svn.gnucash.org/trac/changeset/16239

Modified:
   gnucash-docs/trunk/guide/C/Makefile.am
Log:
Add really crappy PDF generation support.


Modified: gnucash-docs/trunk/guide/C/Makefile.am
===================================================================
--- gnucash-docs/trunk/guide/C/Makefile.am	2007-06-30 15:27:49 UTC (rev 16238)
+++ gnucash-docs/trunk/guide/C/Makefile.am	2007-06-30 16:08:53 UTC (rev 16239)
@@ -27,3 +27,18 @@
 include $(top_srcdir)/xmldocs.make
 dist-hook: app-dist-hook
 DISTCLEANFILES =  gnucash-guide-C.omf.out
+
+# 2007-06-30, jsled: PDF creation "support".  This sucks.
+#
+# http://www.linuxfocus.org/English/May2000/article152.shtml
+# http://www.ecos.sourceware.org/ml/docbook-apps/2001-q4/msg00168.html
+#
+# "|| true" because both commands "fail" for me. :p
+#
+# Note the stderr and stdout redirections. :/
+#
+# It seems it might be wiser to use XSL-FO instead, c.f.
+# <http://sagehill.net/docbookxsl/PrintOutput.html>
+pdf:
+	docbook2tex -d /usr/share/sgml/docbook/dsssl-stylesheets-1.79/print/docbook.dsl gnucash-guide.xml 2> /dev/null || true 
+	pdfjadetex gnucash-guide.tex > /dev/null || true



More information about the gnucash-changes mailing list