Commit graph

13 commits

Author SHA1 Message Date
David Sainty
e2d791ed0f 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-26 05:01:21 +00:00
Thomas Klausner
41f92d5420 Bump PKGREVISION for libpng shlib name change.
Also add some patches to remove use of deprecated symbols and fix other
problems when looking for or compiling against libpng-1.4.x.
2010-06-13 22:46:54 +00:00
Thomas Klausner
8800f9c18c Second try at recursive PKGREVISION bump for jpeg shlib major bump (jpeg-8). 2010-01-18 09:38:16 +00:00
Thomas Klausner
303fd48adc Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:03:22 +00:00
Thomas Klausner
4c850f93bc Remove obsolete @dirrm lines. 2009-10-11 10:44:24 +00:00
Sergey Svishchev
a9bac2f7fa Delint. 2008-02-10 11:04:31 +00:00
Tobias Nygren
d2ab3469b0 Per the process outlined in revbump(1), perform a recursive revbump
on packages that are affected by the switch from the openssl 0.9.7
branch to the 0.9.8 branch. ok jlam@
2008-01-18 04:30:10 +00:00
Mark A. Wicks
03a8857d9d Updating distinfo to reflect revised checksum for most recent patch change. 2007-08-01 17:27:42 +00:00
Mark A. Wicks
9b04a0e1c7 Added missing PKG_GROUPS setting to Makefile and
regenerated a patch that fails with gpatch.
2007-08-01 17:21:51 +00:00
Sergey Svishchev
418edcaeb7 Delint. 2007-03-01 19:12:14 +00:00
Mark A. Wicks
365d8da6c2 Changed MAINTAINER so trouble reports get to the right person. 2007-01-30 14:04:58 +00:00
Mark A. Wicks
c470d4212d Fixed an absolute path in configure 2006-12-11 02:57:26 +00:00
Mark A. Wicks
efe0d23a45 Initial commit of hplip package. 2006-12-01 04:25:52 +00:00