diff options
author | dsainty <dsainty@pkgsrc.org> | 2010-12-23 11:44:24 +0000 |
---|---|---|
committer | dsainty <dsainty@pkgsrc.org> | 2010-12-23 11:44:24 +0000 |
commit | ada744dc0ade9830fd0c65e80d3c3acc4c19910b (patch) | |
tree | 370b3e11e9340fe354eee027148337aef6427d42 /print/cups | |
parent | 8a8c10ccb4ed597d03b89dfad6e2923068e73c23 (diff) | |
download | pkgsrc-ada744dc0ade9830fd0c65e80d3c3acc4c19910b.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 'print/cups')
-rw-r--r-- | print/cups/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/cups/Makefile b/print/cups/Makefile index 2d24a10a183..ac638ee3a75 100644 --- a/print/cups/Makefile +++ b/print/cups/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.171 2010/11/12 08:54:58 sbd Exp $ +# $NetBSD: Makefile,v 1.172 2010/12/23 11:44:54 dsainty Exp $ # # The CUPS author is very good about taking back changes into the main # CUPS distribution. The correct place to send patches or bug-fixes is: @@ -116,7 +116,7 @@ OWN_DIRS_PERMS+= ${CUPS_CACHE} ${REAL_ROOT_USER} ${CUPS_GROUP} 0775 OWN_DIRS_PERMS+= ${CUPS_CACHE}/rss ${REAL_ROOT_USER} ${CUPS_GROUP} 0775 .include "../../devel/zlib/buildlink3.mk" -.include "../../graphics/jpeg/buildlink3.mk" +.include "../../mk/jpeg.buildlink3.mk" .include "../../graphics/png/buildlink3.mk" .include "../../graphics/tiff/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" |