Update of /cvsroot/refdb/refdb/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13009/doc
Modified Files:
Tag: Release_0_9_5_stable
Makefile.am
Log Message:
restored batik-rasterizer vs. convert hack; use unicode callouts in pdf output
Index: Makefile.am
===================================================================
RCS file: /cvsroot/refdb/refdb/doc/Attic/Makefile.am,v
retrieving revision 1.1.2.11
retrieving revision 1.1.2.12
diff -u -U2 -r1.1.2.11 -r1.1.2.12
--- Makefile.am 8 Jan 2006 23:23:54 -0000 1.1.2.11
+++ Makefile.am 9 Jan 2006 21:24:43 -0000 1.1.2.12
@@ -45,5 +45,6 @@
manual_sources = refdb-manual.xml chapter-backend-api.xml chapter-bibliographies.xml chapter-cs-protocol.xml chapter-data-input.xml chapter-inout-formats.xml chapter-installation.xml chapter-introduction.xml chapter-limitations.xml chapter-managing-notes.xml chapter-managing-references.xml chapter-overview-clients.xml chapter-perl-client-module.xml chapter-refdb-database-design.xml chapter-refdba.xml chapter-refdbc.xml chapter-refdbd-administration.xml chapter-refdbd.xml chapter-refdbib.xml chapter-reference-database-design.xml chapter-ris-risx-format.xml chapter-system-requirements.xml
-manpage_sources = refdb.xml refdbd.xml refdbctl.xml
+manpage_sources = RefDB.7.xml bib2ris.1.xml db2ris.1.xml eenc.1.xml en2ris.1.xml marc2ris.1.xml med2ris.1.xml refdb-backup.1.xml refdb-dos2unix.1.xml refdb-ms.1.xml refdb-restore.1.xml refdb.8.xml refdba.1.xml refdbc.1.xml refdbctl.1.xml refdbd.1.xml refdbib.1.xml refdbjade.1.xml refdbnd.1.xml refdbxml.1.xml refdbxp.1.xml runbib.1.xml
+
svg_images = refdbmanualfig1.svg refdbmanualfig2.svg refdbmanualfig3.svg refdbmanualfig4.svg
@@ -57,5 +58,5 @@
dtdparsefiles = citestylex.xml citestylex/elements.html risx.xml risx/elements.html citationlistx.xml citationlistx/elements.html xnote.xml xnote/elements.html
-EXTRA_DIST = $(doc_DATA) $(manual_sources) $(html_extra_files) $(svg_images) $(citestylex_DATA) $(citestylexdtdelem_DATA) $(citestylexeledesc_DATA) $(citestylexelements_DATA) $(risx_DATA) $(risxdtdelem_DATA) $(risxeledesc_DATA) $(risxelements_DATA) $(citationlistx_DATA) $(citationlistxdtdelem_DATA) $(citationlistxeledesc_DATA) $(citationlistxelements_DATA) $(xnote_DATA) $(xnotedtdelem_DATA) $(xnoteeledesc_DATA) $(xnoteelements_DATA) $(index_DATA) $(dtdparsefiles)
+EXTRA_DIST = $(doc_DATA) $(manual_sources) $(manpage_sources) $(html_extra_files) $(svg_images) $(citestylex_DATA) $(citestylexdtdelem_DATA) $(citestylexeledesc_DATA) $(citestylexelements_DATA) $(risx_DATA) $(risxdtdelem_DATA) $(risxeledesc_DATA) $(risxelements_DATA) $(citationlistx_DATA) $(citationlistxdtdelem_DATA) $(citationlistxeledesc_DATA) $(citationlistxelements_DATA) $(xnote_DATA) $(xnotedtdelem_DATA) $(xnoteeledesc_DATA) $(xnoteelements_DATA) $(index_DATA) $(dtdparsefiles)
all: refdb-manual.pdf refdb-manual/* citestylex/elements.html risx/elements.html citationlistx/elements.html xnote/elements.html
@@ -67,13 +68,18 @@
$(top_srcdir)/scripts/statgen.pl docbook > refdb-manual-statustable.xml
+if HAVEBATIK
$(png_images): %.png: %.svg
batik-rasterizer -m image/png $<
+else
+$(png_images): %.png: %.svg
+ convert $< $@
+endif
-refdb-manual.pdf: $(manual_sources) $(svg_images) refdb-manual-statustable.xml
+refdb-manual.pdf: $(manual_sources) $(manpage_sources) $(svg_images) refdb-manual-statustable.xml
@echo "Creating PDF manual...";
- xsltproc -o refdb-manual.fo --nonet --xinclude --param section.autolabel 1 --param section.label.includes.component.label 1 --param fop.extensions 1 --stringparam graphic.default.extension "svg" $(docbk_xsl)/fo/docbook.xsl refdb-manual.xml
+ xsltproc -o refdb-manual.fo --nonet --xinclude --param section.autolabel 1 --param section.label.includes.component.label 1 --param fop.extensions 1 --param callout.unicode 1 --param callout.graphics 0 --stringparam graphic.default.extension "svg" $(docbk_xsl)/fo/docbook.xsl refdb-manual.xml
JAVA_OPTS=-Xmx256M fop -fo refdb-manual.fo -pdf refdb-manual.pdf
-refdb-manual/*: $(manual_sources) $(png_images) refdb-manual-statustable.xml include/doc-html.dsl
+refdb-manual/*: $(manual_sources) $(manpage_sources) $(png_images) refdb-manual-statustable.xml include/doc-html.dsl
@echo "Creating HTML manual...";
rm -rf refdb-manual/*
|