2011-04-01 17:06:38 by Matthias Drochner | Files touched by this commit (2) |
Log message: fix build after libungif->giflib transition, problem noticed by joerg |
2011-03-09 17:40:45 by Matthias Drochner | Files touched by this commit (1) |
Log message: libungif/buildlink3.mk -> mk/giflib.buildlink3.mk (uses giflib now per default) bump PKGREV |
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-02-11 21:47:11 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message: DESTDIR support |
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-08-26 21:58:47 by Jens Rehsack | Files touched by this commit (1461) | |
Log message: bump revision because of graphics/jpeg update |
2009-06-30 02:07:26 by Joerg Sonnenberger | Files touched by this commit (159) |
Log message: Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with MAKE_JOBS=2 and worked without. |
2007-01-07 10:14:16 by Roland Illig | Files touched by this commit (412) |
Log message: Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with ${PREFIX}/${PKGMANDIR}. Fixes PR 35265, although I did not use the patch provided therein. |
2006-06-09 08:33:27 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message: Needs makedepend. |
2006-03-22 16:17:01 by Joerg Sonnenberger | Files touched by this commit (3) |
Log message: Fix pthread usage. |