summaryrefslogtreecommitdiff
path: root/graphics/jpegoptim
AgeCommit message (Collapse)AuthorFilesLines
2013-04-01Changes 1.3.0:adam2-6/+6
* support for progressive jpegs added (fixes long standing "bug" of progressive jpegs becoming non-progressive during optimization), * new options --all-normal & --all-progressive for converting jpegs to non-progressive & progressive, * new -S / --size option to set target size for output file (enables lossy optimization),
2013-03-15Changes 1.2.5:adam2-7/+7
Safer temp file handling (if mkstemps() is available, and a patch to make "quiet mode" (-q) be quiet.
2012-10-06Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2011-04-11Changes 1.2.4:adam2-11/+6
* 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-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-11-10* Use autoconf, so other compilers, like Clang, are configure correctly.adam1-2/+8
* Added LICENSE.
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz1-1/+2
2009-11-10patch-aa not needed when INSTALL_MAKE_FLAGS are in Makefileadam2-15/+1
2009-11-09Fix destdir installation.joerg1-1/+4
2009-10-11Changes 1.2.3:adam2-10/+10
* Additional support was added for IPTC and ICC markers. * Minor fixes were made.
2009-08-26bump revision because of graphics/jpeg updatesno1-2/+2
2007-02-22Whitespace cleanup, courtesy of pkglint.wiz1-2/+2
Patch provided by Sergey Svishchev in private mail.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digestsagc1-1/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-02-03Initial import of jpegoptim, version 1.2.2 into the NetBSD Packagescube5-0/+39
Collection. Provided by fab (AT) gnux (DOT) info in PR 24268, slightly modified and pkglinted by me. Utility to optimize JPEG files. Provides lossless optimization (based on optimizing the Huffman tables) and "lossy" optimization based on setting maximum quality factor.