summaryrefslogtreecommitdiff
path: root/print/evince/options.mk
blob: d616c5d389ade6dd38305bf0d2710e48281ffdad (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# $NetBSD: options.mk,v 1.8 2022/10/25 08:38:09 prlw1 Exp $

PKG_OPTIONS_VAR=	PKG_OPTIONS.evince
PKG_SUPPORTED_OPTIONS=	dbus djvu dvi gstreamer ps tiff xps
PKG_SUGGESTED_OPTIONS=	dbus

.include "../../mk/bsd.options.mk"

PLIST_VARS+=		${PKG_SUPPORTED_OPTIONS}

.if !empty(PKG_OPTIONS:Mdbus)
PLIST.dbus=	yes
USE_TOOLS+=	gdbus-codegen
.include "../../sysutils/dbus/buildlink3.mk"
BUILDLINK_API_DEPENDS.dbus-glib+=	dbus-glib>=0.71
.include "../../sysutils/dbus-glib/buildlink3.mk"
.else
MESON_ARGS+=	-Ddbus=false
.endif

.if !empty(PKG_OPTIONS:Mdjvu)
PLIST.djvu=	yes
BUILDLINK_API_DEPENDS.djvulibre-lib+=	djvulibre-lib>=3.5.22
.include "../../graphics/djvulibre-lib/buildlink3.mk"
.else
MESON_ARGS+=	-Ddjvu=disabled
.endif

.if !empty(PKG_OPTIONS:Mdvi)
PLIST.dvi=	yes
.include "../../print/kpathsea/buildlink3.mk"
.else
MESON_ARGS+=	-Ddvi=disabled
.endif

.if !empty(PKG_OPTIONS:Mgstreamer)
PLIST.gstreamer=	yes
.include "../../multimedia/gst-plugins1-base/buildlink3.mk"
.include "../../multimedia/gstreamer1/buildlink3.mk"
.else
MESON_ARGS+=	-Dmultimedia=disabled
.endif

.if !empty(PKG_OPTIONS:Mps)
PLIST.ps=	yes
.include "../../print/libspectre/buildlink3.mk"
MESON_ARGS+=	-Dps=enabled
.else
MESON_ARGS+=	-Dps=disabled
.endif

.if !empty(PKG_OPTIONS:Mtiff)
PLIST.tiff=		yes
.include "../../graphics/tiff/buildlink3.mk"
.else
MESON_ARGS+=	-Dtiff=disabled
.endif

.if !empty(PKG_OPTIONS:Mxps)
PLIST.xps=		yes
.include "../../print/libgxps/buildlink3.mk"
.else
MESON_ARGS+=	-Dxps=disabled
.endif