1f40f3a084
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
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.35 2010/12/23 11:44:34 dsainty Exp $
|
|
#
|
|
|
|
DISTNAME= cqcam-0.91
|
|
PKGREVISION= 3
|
|
CATEGORIES= graphics x11
|
|
MASTER_SITES= http://piki.org/patrick/cqcam/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://piki.org/patrick/cqcam/
|
|
COMMENT= Free Color QuickCam control program
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
#NOT_FOR_UNPRIVILEGED= yes # seems to need setuid for everything
|
|
.if ${OPSYS} == "SunOS"
|
|
# Tries to install a device driver with unrestricted access to all
|
|
# hardware ports, which is also specific to i86pc platforms.
|
|
NOT_FOR_UNPRIVILEGED= yes
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} != "i386"
|
|
CONFIGURE_ARGS+= --disable-asm
|
|
.endif
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --without-xview
|
|
USE_LANGUAGES= c c++
|
|
|
|
CONFIGURE_ENV+= TCLCONFIG_SH=${TCLCONFIG_SH:Q}
|
|
CONFIGURE_ARGS+= --x-includes=${X11BASE:Q}/include
|
|
CONFIGURE_ARGS+= --x-libraries=${X11BASE:Q}/lib
|
|
|
|
BUILDLINK_DEPMETHOD.libXt?= build
|
|
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
|
.include "../../lang/tcl/buildlink3.mk"
|
|
.include "../../x11/tk/buildlink3.mk"
|
|
.include "../../x11/libXt/buildlink3.mk"
|
|
.include "../../x11/libXext/buildlink3.mk"
|
|
.include "../../x11/xextproto/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|