Commit graph

10 commits

Author SHA1 Message Date
dsainty
1f40f3a084 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
2010-12-23 11:44:24 +00:00
wiz
91871f449e Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
wiz
579796a3e5 Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
joerg
b1fad6d503 Add a PRINT_PLIST_AWK fragment matching the PLIST_SUBST and update the
common base value. Reflect that change in the PLIST files.
2010-01-09 15:33:07 +00:00
joerg
a731bf9104 Update evas to the latest E17 snapshot.
Various bugfixes and improvements, no detailed changelog.

Remove 16bit X11 engine.
2009-12-17 00:48:43 +00:00
joerg
a45754f4d8 Update to evas-0.9.9.062 from the 2009/07/29 snapshot. No detailed
changes.
2009-09-11 22:31:00 +00:00
sno
6f7368d4db bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
joerg
3a3c07bc30 Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
joerg
012d71f00f Update evas to the most recent e17 snapshot.
No detailed changes known.
2009-06-07 21:12:11 +00:00
minskim
dec27a302f Import evas-jpeg-0.9.9.050 as graphics/evas-jpeg.
Evas is a clean display canvas API for several target display systems
that can draw anti-aliased text, smooth super and sub-sampled scaled
images, alpha-blend objects, and more.

This is the JPEG image loader of Evas.
2009-02-26 19:06:55 +00:00