summaryrefslogtreecommitdiff
path: root/graphics/tiff/Makefile
diff options
context:
space:
mode:
authordsainty <dsainty>2010-12-23 11:44:24 +0000
committerdsainty <dsainty>2010-12-23 11:44:24 +0000
commit12cb97aee5a221de0ef52d6d283b031e561dbc13 (patch)
tree370b3e11e9340fe354eee027148337aef6427d42 /graphics/tiff/Makefile
parent2f054f5fab748fc7eb8b701eca53487d6102715d (diff)
downloadpkgsrc-12cb97aee5a221de0ef52d6d283b031e561dbc13.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 'graphics/tiff/Makefile')
-rw-r--r--graphics/tiff/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/tiff/Makefile b/graphics/tiff/Makefile
index f92fc4c9ab1..b62f032d218 100644
--- a/graphics/tiff/Makefile
+++ b/graphics/tiff/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.97 2010/08/04 17:48:22 tron Exp $
+# $NetBSD: Makefile,v 1.98 2010/12/23 11:44:46 dsainty Exp $
DISTNAME= tiff-3.9.4
PKGREVISION= 1
@@ -35,5 +35,5 @@ post-install:
.include "options.mk"
.include "../../devel/zlib/buildlink3.mk"
-.include "../../graphics/jpeg/buildlink3.mk"
+.include "../../mk/jpeg.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"