pkgsrc/emulators/wine
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
..
patches redid some patches since they had been off by a few lines 2010-02-20 08:35:58 +00:00
buildlink3.mk Mechanically replace references to graphics/jpeg with the suitable 2010-12-23 11:44:24 +00:00
DESCR
distinfo redid some patches since they had been off by a few lines 2010-02-20 08:35:58 +00:00
Makefile Mechanically replace references to graphics/jpeg with the suitable 2010-12-23 11:44:24 +00:00
options.mk Fix building on Darwin; fix PLIST (added common_end) 2009-04-20 18:55:42 +00:00
PLIST.common Fix building on Darwin; fix PLIST (added common_end) 2009-04-20 18:55:42 +00:00
PLIST.Darwin Fix building on Darwin; fix PLIST (added common_end) 2009-04-20 18:55:42 +00:00
PLIST.FreeBSD Update emulators/wine to 1.0, as requested in PR pkg/38985. 2008-06-22 23:38:18 +00:00
PLIST.Linux Changes 1.0.1: 2008-10-18 11:55:27 +00:00
PLIST.NetBSD Enable kthread loader as the default on NetBSD; this package now works on 2008-06-26 19:46:56 +00:00