blob: 99d2165d2e07e552ff87bcd77a2a112cb5472ea4 (
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
93
94
95
96
97
98
99
100
101
102
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit meson xdg-utils
DESCRIPTION="Enlightenment window manager"
HOMEPAGE="https://www.enlightenment.org"
SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz"
LICENSE="BSD-2"
SLOT="0.17/${PV%%_*}"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
IUSE="acpi bluetooth connman doc geolocation nls packagekit pam systemd udisks wayland wifi xwayland"
REQUIRED_USE="xwayland? ( wayland )"
RDEPEND="
>=dev-libs/efl-1.20.5[eet,X]
virtual/udev
x11-libs/libXext
x11-libs/libxcb
x11-libs/xcb-util-keysyms
x11-misc/xkeyboard-config
acpi? ( sys-power/acpid )
bluetooth? ( net-wireless/bluez )
connman? ( dev-libs/efl[connman] )
geolocation? ( app-misc/geoclue:2.0 )
packagekit? ( app-admin/packagekit-base )
pam? ( sys-libs/pam )
systemd? ( sys-apps/systemd )
udisks? ( sys-fs/udisks:2 )
wayland? (
>=dev-libs/efl-1.22.0[drm,wayland]
dev-libs/wayland
x11-libs/libxkbcommon
x11-libs/pixman
)
xwayland? (
dev-libs/efl[X,wayland]
x11-base/xorg-server[wayland]
)
"
BDEPEND="
virtual/pkgconfig
nls? ( sys-devel/gettext )
"
DEPEND="${RDEPEND}"
PATCHES=( "${FILESDIR}/${P}-efl-1.22-wayland.patch" )
src_configure() {
local emesonargs=(
-D device-udev=true
-D install-sysactions=false
$(meson_use udisks mount-udisks)
$(meson_use bluetooth bluez4)
$(meson_use connman)
$(meson_use geolocation)
$(meson_use nls)
$(meson_use packagekit)
$(meson_use pam)
$(meson_use systemd)
$(meson_use wayland)
$(meson_use wifi wireless)
$(meson_use xwayland)
)
if ! use wayland; then
emesonargs+=(
-D wl-buffer=false
-D wl-desktop-shell=false
-D wl-drm=false
-D wl-text-input=false
-D wl-weekeyboard=false
-D wl-wl=false
-D wl-x11=false
)
fi
meson_src_configure
}
src_install() {
insinto /etc/enlightenment
newins "${FILESDIR}"/gentoo-sysactions.conf sysactions.conf
use doc && local HTML_DOCS=( doc/. )
meson_src_install
}
pkg_postinst() {
xdg_desktop_database_update
xdg_mimeinfo_database_update
}
pkg_postrm() {
xdg_desktop_database_update
xdg_mimeinfo_database_update
}
|