blob: 98e756112dc6321e42f06bdce23ddd3d71d03011 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome.org meson vala xdg
DESCRIPTION="GNOME framework for accessing online accounts"
HOMEPAGE="https://wiki.gnome.org/Projects/GnomeOnlineAccounts"
LICENSE="LGPL-2+"
SLOT="0/1"
KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~riscv ~sparc x86"
IUSE="debug gnome gtk-doc +introspection kerberos man +vala"
REQUIRED_USE="vala? ( introspection )"
# libsoup used in goaoauthprovider
# goa kerberos provider is incompatible with app-crypt/heimdal, see
# https://bugzilla.gnome.org/show_bug.cgi?id=692250
# json-glib-0.16 needed for bug #485092
RDEPEND="
>=dev-libs/glib-2.67.4:2
sys-apps/dbus
introspection? ( >=dev-libs/gobject-introspection-0.6.2:= )
>=x11-libs/gtk+-3.19.12:3
>=net-libs/webkit-gtk-2.33.1:4.1
>=dev-libs/json-glib-0.16
>=app-crypt/libsecret-0.5
>=net-libs/libsoup-3.0:3.0
dev-libs/libxml2:2
>=net-libs/rest-0.9.0:1.0
kerberos? (
app-crypt/gcr:0=[gtk]
app-crypt/mit-krb5
)
"
# goa-daemon can launch gnome-control-center
PDEPEND="gnome? ( >=gnome-base/gnome-control-center-3.2[gnome-online-accounts(+)] )"
DEPEND="${RDEPEND}
vala? ( $(vala_depend) )
dev-libs/libxslt
>=dev-util/gdbus-codegen-2.30.0
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
dev-libs/gobject-introspection-common
gnome-base/gnome-common
"
BDEPEND="gtk-doc? ( dev-util/gtk-doc )"
src_prepare() {
default
use vala && vala_setup
}
src_configure() {
# TODO: Give users a way to set the G/FB/Windows Live secrets
local emesonargs=(
-Dgoabackend=true
-Dinspector=false
-Dexchange=true
-Dfedora=false
-Dgoogle=true
-Dimap_smtp=true
$(meson_use kerberos)
-Dlastfm=true
-Dmedia_server=true
-Downcloud=true
-Dwindows_live=true
$(meson_use gtk-doc gtk_doc)
$(meson_use introspection)
-Dman=true
$(meson_use vala vapi)
)
meson_src_configure
}
|