blob: 73daa56f4a554dd53bc65d662644a2f16162c100 (
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
44
45
|
# $NetBSD: options.mk,v 1.3 2014/01/26 08:43:29 obache Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.cogl
PKG_SUPPORTED_OPTIONS= introspection x11
PKG_SUGGESTED_OPTIONS= introspection x11
.include "../../mk/bsd.options.mk"
PLIST_VARS+= introspection x11
.if !empty(PKG_OPTIONS:Mintrospection)
PLIST.introspection= yes
BUILDLINK_API_DEPENDS.gobject-introspection+= gobject-introspection>=0.9.5
BUILDLINK_DEPMETHOD.gobject-introspection+= build
.include "../../devel/gobject-introspection/buildlink3.mk"
CONFIGURE_ARGS+= --enable-introspection=yes
.else
CONFIGURE_ARGS+= --enable-introspection=no
.endif
.if !empty(PKG_OPTIONS:Mx11)
PLIST.x11= yes
CONFIGURE_ARGS+= --with-x
CONFIGURE_ARGS+= --enable-gdk-pixbuf
CONFIGURE_ARGS+= --with-gl-libname=libGL
.include "../../graphics/MesaLib/buildlink3.mk"
.include "../../x11/libX11/buildlink3.mk"
.include "../../x11/libXext/buildlink3.mk"
.include "../../x11/libXdamage/buildlink3.mk"
BUILDLINK_API_DEPENDS.libXfixes+= libXfixes>=3
.include "../../x11/libXfixes/buildlink3.mk"
BUILDLINK_API_DEPENDS.libXcomposite+= libXcomposite>=0.4
.include "../../x11/libXcomposite/buildlink3.mk"
BUILDLINK_API_DEPENDS.libXrandr+= libXrandr>=1.2
.include "../../x11/libXrandr/buildlink3.mk"
.include "../../graphics/gdk-pixbuf2/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-x
.include "../../mk/bsd.prefs.mk"
. if ${OPSYS} == Darwin
PLIST.osx= yes
CONFIGURE_ARGS+= --with-quartz-image
. endif
.endif
|