summaryrefslogtreecommitdiff
path: root/comms
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 /comms
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 'comms')
-rw-r--r--comms/hylafax/Makefile4
-rw-r--r--comms/xtel/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/comms/hylafax/Makefile b/comms/hylafax/Makefile
index bfae15b087f..66fbe21af40 100644
--- a/comms/hylafax/Makefile
+++ b/comms/hylafax/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.61 2010/01/29 16:44:13 joerg Exp $
+# $NetBSD: Makefile,v 1.62 2010/12/23 11:44:25 dsainty Exp $
VERS= 4.2.5
DISTNAME= hylafax-${VERS}
@@ -64,7 +64,7 @@ CONFIGURE_ENV+= MACHDEPLIBS=-lrt
.endif
.include "../../devel/zlib/buildlink3.mk"
-.include "../../graphics/jpeg/buildlink3.mk"
+.include "../../mk/jpeg.buildlink3.mk"
.include "../../graphics/tiff/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/comms/xtel/Makefile b/comms/xtel/Makefile
index 72d3ebcde9c..52e8f96a650 100644
--- a/comms/xtel/Makefile
+++ b/comms/xtel/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.20 2010/01/18 09:58:42 wiz Exp $
+# $NetBSD: Makefile,v 1.21 2010/12/23 11:44:26 dsainty Exp $
#
DISTNAME= xtel-3.3.0
@@ -23,7 +23,7 @@ INSTALL_MAKE_FLAGS= PPPDIR=${PREFIX}/share/examples/xtel
SPECIAL_PERMS+= bin/mdmdetect ${SETUID_ROOT_PERMS}
-.include "../../graphics/jpeg/buildlink3.mk"
+.include "../../mk/jpeg.buildlink3.mk"
.include "../../x11/libXaw/buildlink3.mk"
.include "../../x11/libXpm/buildlink3.mk"
.include "../../x11/libXp/buildlink3.mk"