blob: a55c1d99320bb41c9a111c9940c3ef5f675aac77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# $NetBSD: Makefile,v 1.32 2009/08/26 19:57:37 sno Exp $
#
DISTNAME= cqcam-0.91
PKGREVISION= 2
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
BUILDLINK_DEPMETHOD.libXt?= build
.include "../../graphics/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"
|