blob: e01fb73dccfbbc7ee8f03b6b9a246912977853d4 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8,9,10} )
inherit meson gnome2-utils python-any-r1 xdg-utils
DESCRIPTION="Cinnamon session manager"
HOMEPAGE="https://projects.linuxmint.com/cinnamon/ https://github.com/linuxmint/cinnamon-session"
SRC_URI="https://github.com/linuxmint/cinnamon-session/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+ LGPL-2+"
SLOT="0"
KEYWORDS="amd64 ~arm64 ~riscv x86"
IUSE="doc ipv6 systemd"
DEPEND="
>=dev-libs/glib-2.37.3:2
media-libs/libcanberra[pulseaudio]
virtual/opengl
x11-libs/cairo
x11-libs/gdk-pixbuf:2
>=x11-libs/gtk+-3:3
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXau
x11-libs/libXcomposite
x11-libs/libXext
x11-libs/libXrender
x11-libs/libXtst
x11-libs/pango[X]
>=x11-libs/xapp-2.2.8
systemd? ( >=sys-apps/systemd-183 )
!systemd? ( sys-auth/elogind[policykit] )
"
RDEPEND="
${DEPEND}
>=gnome-extra/cinnamon-desktop-5.2:0=
"
BDEPEND="
${PYTHON_DEPS}
dev-util/gdbus-codegen
virtual/pkgconfig
doc? (
app-text/xmlto
dev-libs/libxslt )
"
src_prepare() {
default
python_fix_shebang data
}
src_configure() {
local emesonargs=(
-Dgconf=false
$(meson_use doc docbook)
$(meson_use ipv6)
)
meson_src_configure
}
src_install() {
# A bit icky. Let the docs be installed in the wrong dir, then
# install them to the correct dir.
local dbus_doc_dir="${ED}/usr/share/doc/cinnamon-session/dbus"
use doc && local HTML_DOCS=( "$dbus_doc_dir" )
meson_src_install
# Clean-up the incorrectly installed docs.
# Fail if unhandled (new) files are encountered.
if use doc; then
rm -r "$dbus_doc_dir" || die
rm -d "${ED}/usr/share/doc/cinnamon-session" || die
fi
}
pkg_postinst() {
xdg_icon_cache_update
gnome2_schemas_update
}
pkg_postrm() {
xdg_icon_cache_update
gnome2_schemas_update
}
|