latex-mk-1.8 and latex-mk-1.9.1 both have a problem in xfig.mk and
xfig.gmk which produces .eps files from .fig files even when running
in PDF mode.  The result should be .pdf files instead, and it's a
simple typo at the end of the xfig.mk.in.in file.  Attached is a patch
(to be put into ports/print/latex-mk/patches) that takes care of it.

-- 
Taylor Venable
http://metasyntax.net/
--- xfig.mk.in.in.orig  Tue Sep  8 21:48:44 2009
+++ xfig.mk.in.in       Tue Sep  8 21:49:01 2009
@@ -192,6 +192,6 @@
 GMK:   $(FIG2DEV) $(FIG2DEV_FLAGS) $(FIG2DEV_EPS_FLAGS) $*.fig $*.eps
 
 .fig.pdf : 
-BMK:   $(FIG2DEV:Q) $(FIG2DEV_FLAGS) $(FIG2DEV_PDF_FLAGS) $*.fig $*.eps
-GMK:   $(FIG2DEV) $(FIG2DEV_FLAGS) $(FIG2DEV_PDF_FLAGS) $*.fig $*.eps
+BMK:   $(FIG2DEV:Q) $(FIG2DEV_FLAGS) $(FIG2DEV_PDF_FLAGS) $*.fig $*.pdf
+GMK:   $(FIG2DEV) $(FIG2DEV_FLAGS) $(FIG2DEV_PDF_FLAGS) $*.fig $*.pdf
 

Reply via email to