summaryrefslogtreecommitdiff
path: root/print/mupdf
AgeCommit message (Collapse)AuthorFilesLines
2011-05-01Update HOMEPAGE.wiz1-2/+2
2011-03-08update to 0.8drochner6-57/+71
no changelog available, at least some security fixes were done: -fix possible memory corruption due to malformed JPEG images (was patched in pkgsrc) -fix (at least) 2 cases of integer overflow in array allocation (SA42320)
2011-01-31add patch from upstream to fix possible memory corruption due todrochner3-2/+29
malformed JPEG images (SA43020)
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty1-2/+2
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-09-28Add workaround to make this compile with native X, from joerg.wiz1-1/+3
Shouldn't break modular X, says joerg.
2010-09-15Update to mupdf-0.7. No changelog, but this moves to externaljoerg7-65/+266
dependencies on the pkgsrc side.
2010-03-15Update to r940, minor changes.wiz2-6/+6
2010-02-26Depend on X11 [hi wiz!]joerg1-1/+3
2010-02-18Initial import of mupdf-0.0.937 (svn version 937).wiz7-0/+132
MuPDF is a lightweight PDF viewer and toolkit written in portable C. The renderer in MuPDF is tailored for high quality anti-aliased graphics. MuPDF renders text with metrics and spacing accurate to within fractions of a pixel for the highest fidelity in reproducing the look of a printed page on screen. MuPDF has a small footprint. A binary that includes the standard Roman fonts is only one megabyte. A build with full CJK support (including an Asian font) is approximately five megabytes. MuPDF has support for all non-interactive PDF 1.7 features, and the toolkit provides a simple API for accessing the internal structures of the PDF document. Example code for navigating interactive links and bookmarks, encrypting PDF files, extracting fonts, images, and searchable text, and rendering pages to image files is provided.