summaryrefslogtreecommitdiff
path: root/x11/wdm
diff options
context:
space:
mode:
authordsainty <dsainty@pkgsrc.org>2010-12-23 11:44:24 +0000
committerdsainty <dsainty@pkgsrc.org>2010-12-23 11:44:24 +0000
commitc83f002c609b793986a4857b9309624cf43a08e3 (patch)
tree370b3e11e9340fe354eee027148337aef6427d42 /x11/wdm
parent280a8fa47fb1804b209be568c1d069d7f5563875 (diff)
downloadpkgsrc-c83f002c609b793986a4857b9309624cf43a08e3.tar.gz
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
Diffstat (limited to 'x11/wdm')
-rw-r--r--x11/wdm/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/wdm/Makefile b/x11/wdm/Makefile
index 31e497079fe..559a55a12f6 100644
--- a/x11/wdm/Makefile
+++ b/x11/wdm/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.40 2010/06/13 22:45:53 wiz Exp $
+# $NetBSD: Makefile,v 1.41 2010/12/23 11:45:02 dsainty Exp $
DISTNAME= wdm-1.28
PKGREVISION= 4
@@ -54,7 +54,7 @@ CONFIGURE_ARGS+= --with-winmgr=${wmanager:Q}
INSTALLATION_DIRS += share/pixmaps/wdm share/examples/wdm
-.include "../../graphics/jpeg/buildlink3.mk"
+.include "../../mk/jpeg.buildlink3.mk"
.include "../../graphics/libungif/buildlink3.mk"
.include "../../graphics/png/buildlink3.mk"
.include "../../graphics/tiff/buildlink3.mk"