blob: 0233ec0e65d11583a985020a88692ac82a9bc4b1 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit gnome.org gnome2-utils meson python-any-r1 vala xdg
DESCRIPTION="A remote desktop client for the GNOME desktop environment"
HOMEPAGE="https://gitlab.gnome.org/GNOME/connections"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="
dev-libs/gobject-introspection
>=dev-libs/glib-2.50:2
>=x11-libs/gtk+-3.22:3[introspection]
>=net-libs/gtk-vnc-0.4.4[pulseaudio,vala]
>=gui-libs/libhandy-1.6.0:1[vala]
>=dev-libs/libxml2-2.7.8
app-crypt/libsecret[vala]
>=net-misc/freerdp-2.0.0:0=
"
RDEPEND="${DEPEND}"
BDEPEND="
${PYTHON_DEPS}
$(vala_depend)
dev-libs/glib
dev-util/glib-utils
dev-util/itstool
sys-devel/gettext
virtual/pkgconfig
test? (
dev-libs/appstream-glib
dev-util/desktop-file-utils
)
"
src_prepare() {
default
vala_setup
}
src_configure() {
local emesonargs=(
-Dprofile=default
)
meson_src_configure
}
pkg_postinst() {
xdg_pkg_postinst
gnome2_schemas_update
}
pkg_postrm() {
xdg_pkg_postrm
gnome2_schemas_update
}
|