2011-04-11 09:02:20 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
Changes 1.2.4:
* The -T/--threshold option was added to set the minimum optimization gain
needed before a file is optimized. The default is to optimize if gain is
even just one byte.
* Some minor fixes were also done.
|
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
|
2010-11-10 20:56:39 by Adam Ciarcinski | Files touched by this commit (1) |
Log message:
* Use autoconf, so other compilers, like Clang, are configure correctly.
* Added LICENSE.
|
2010-01-18 10:59:46 by Thomas Klausner | Files touched by this commit (938) |
Log message:
Second try at jpeg-8 recursive PKGREVISION bump.
|
2009-11-10 08:30:20 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
patch-aa not needed when INSTALL_MAKE_FLAGS are in Makefile
|
2009-11-09 15:36:15 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
Fix destdir installation.
|
2009-10-11 10:04:54 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
Changes 1.2.3:
* Additional support was added for IPTC and ICC markers.
* Minor fixes were made.
|
2009-08-26 21:58:47 by Jens Rehsack | Files touched by this commit (1461) | |
Log message:
bump revision because of graphics/jpeg update
|
2007-02-22 20:27:30 by Thomas Klausner | Files touched by this commit (721) |
Log message:
Whitespace cleanup, courtesy of pkglint.
Patch provided by Sergey Svishchev in private mail.
|
2005-04-11 23:48:17 by Todd Vierling | Files touched by this commit (3539) |
Log message:
Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.
|