2011-02-10 18:06:27 by Thomas Klausner | Files touched by this commit (2) |
Log message: Add upstream bug report URL. |
2011-02-10 17:41:56 by Thomas Klausner | Files touched by this commit (3) |
Log message: Really fix png support. From John Bowler. Bump PKGREVISION. |
2011-02-07 11:20:36 by Thomas Klausner | Files touched by this commit (1) |
Log message: Bump PKGREVISION for interlaced png fix. |
2011-02-07 11:20:10 by Thomas Klausner | Files touched by this commit (2) |
Log message: Fix interlaced png handling (lots of (unnecessary) warnings when running, but works). |
2011-02-06 16:37:22 by Thomas Klausner | Files touched by this commit (2) |
Log message: Small improvement to png patch. Non-interlaced pngs now work as inputs. Interlaced not yet. |
2011-01-29 21:31:19 by Mark Davies | Files touched by this commit (3) |
Log message: Fix build with gcc4.5 add PLIST.Linux for additional (v4l) files installed on linux. |
2011-01-24 11:04:22 by Thomas Klausner | Files touched by this commit (2) |
Log message: Fix build with png-1.5. |
2011-01-24 10:54:35 by Thomas Klausner | Files touched by this commit (1) |
Log message: Set LICENSE. |
2011-01-13 14:40:12 by Thomas Klausner | Files touched by this commit (1644) |
Log message: png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. |
2010-12-23 12:45:04 by David Sainty | Files touched by this commit (254) |
Log message: Mechanically replace references to graphics/jpeg with the suitable 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 |