From: north Date: Wed, 9 Jan 2008 22:07:27 +0000 (+0000) Subject: Document fontconfig vs. DOTFONTPATH. Fix makefiles to use ps2pdf X-Git-Tag: LAST_LIBGRAPH~32^2~4890 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ec6b59b9126b9c5bdd8211ac797981ea04be8b76;p=graphviz Document fontconfig vs. DOTFONTPATH. Fix makefiles to use ps2pdf since epstopdf doesn't handle %%BoundingBox: (atend) --- diff --git a/doc/dotguide/Makefile b/doc/dotguide/Makefile index 3278174c4..a91f39598 100644 --- a/doc/dotguide/Makefile +++ b/doc/dotguide/Makefile @@ -28,8 +28,11 @@ GRAPHFILES = \ tree.pdf \ $(SHAPEFILES) $(ARROWHEADFILES) +# The following used to work, but it broke when graphviz -Tps went to +# BoundingBox: (atend) as the epstopdf script explicitly says it does +# not handle this case! Let's hope that we have native -Tpdf in dot. %.pdf : %.dot - dot -Tps $< | epstopdf --filter --outfile=$@ + dot -Tps2 $< -o $<.ps; ps2pdf $<.ps $@ dotguide.pdf : dotguide.tex dotguide.bbl $(GRAPHFILES) pdflatex dotguide.tex