>Description:
Now that peps-1.0 has been committed in the ports, we can use it instead
of eps2png. That will produce anti-aliased images that look much better
than what we have now.
P.S. It will be a good idea to redo all png images created from eps
files before (perhaps by touching all .eps files so they have a new
date and are forced to be reconverted).
>How-To-Repeat:
>Fix:
--- doc.images.mk.OLD Mon Jul 9 23:19:56 2001
+++ doc.images.mk Mon Jul 9 23:22:29 2001
@@ -80,7 +80,7 @@
.for _curimage in ${IMAGES_GEN_PNG}
${_curimage}: ${_curimage:S/.png$/.eps/}
- eps2png -res ${EPS2PNG_RES} -output ${.TARGET} ${.ALLSRC}
+ peps -r ${EPS2PNG_RES} -o ${.TARGET} ${.ALLSRC}
.endfor
.for _curimage in ${IMAGES_GEN_EPS}
>Release-Note:
>Audit-Trail:
>Unformatted:
To Unsubscribe: send mail to majo...@FreeBSD.org
with "unsubscribe freebsd-doc" in the body of the message
Oops, that last line should have been
+ peps -r ${EPS2PNG_RES} -p -o ${.TARGET} ${.ALLSRC}
Note the "-p" please.
Adam
--
Suppose you were an idiot.
Suppose you were a member of Congress.
But I'm repeating myself...
-- Mark Twain
Works for me. No one else has commented, so I'll commit this in 12-24
hours, along with the changes to textproc/docproj to adjust the
dependencies.
N
--
FreeBSD: The Power to Serve http://www.freebsd.org/
FreeBSD Documentation Project http://www.freebsd.org/docproj/
--- 15B8 3FFC DDB4 34B0 AA5F 94B7 93A8 0764 2C37 E375 ---
Done. ports/textproc/docproj now depends on the ports/graphics/peps
port, instead of ports/graphics/eps2png. I have adjusted doc.images.mk
to suit, and made the necessary changes to the Handbook.
Thanks,