summaryrefslogtreecommitdiff
path: root/graphics/mng/Makefile
diff options
context:
space:
mode:
authordsainty <dsainty>2010-12-23 11:44:24 +0000
committerdsainty <dsainty>2010-12-23 11:44:24 +0000
commit8c7ca6a8c0860ebd3e39de2d607b75770e220d80 (patch)
tree370b3e11e9340fe354eee027148337aef6427d42 /graphics/mng/Makefile
parent33632049673fa741e8d8f1cdb7f03211ccd47938 (diff)
downloadpkgsrc-8c7ca6a8c0860ebd3e39de2d607b75770e220d80.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/mng/Makefile')
-rw-r--r--graphics/mng/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/mng/Makefile b/graphics/mng/Makefile
index e37dd2b2d32..bab81ac351a 100644
--- a/graphics/mng/Makefile
+++ b/graphics/mng/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.35 2010/01/18 09:59:05 wiz Exp $
+# $NetBSD: Makefile,v 1.36 2010/12/23 11:44:43 dsainty Exp $
DISTNAME= libmng-1.0.10
PKGNAME= mng-1.0.10
@@ -20,7 +20,7 @@ GNU_CONFIGURE= yes
USE_LIBTOOL= yes
USE_TOOLS+= automake
-CONFIGURE_ARGS+= --with-jpeg=${BUILDLINK_PREFIX.jpeg}
+CONFIGURE_ARGS+= --with-jpeg=${JPEGBASE}
CONFIGURE_ARGS+= --with-lcms=${BUILDLINK_PREFIX.lcms}
CPPFLAGS+= ${BUILDLINK_CPPFLAGS.lcms}
@@ -46,7 +46,7 @@ post-install:
${INSTALL_MAN} jng.5 mng.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5
.include "../../devel/zlib/buildlink3.mk"
-.include "../../graphics/jpeg/buildlink3.mk"
+.include "../../mk/jpeg.buildlink3.mk"
.include "../../graphics/lcms/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"