blob: 161a8a37ebf6b10cd090bbfc2658b76877204656 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
ESVN_URI_APPEND="e"
inherit enlightenment
DESCRIPTION="Enlightenment DR17 window manager"
SLOT="0.17"
# The @ is just an anchor to expand from
__EVRY_MODS="+@apps +@calc +@files +@settings +@windows"
__CONF_MODS="
+@applications +@borders +@clientlist +@colors +@desk +@desklock +@desks
+@dialogs +@display +@dpms +@edgebindings +@engine +@fonts +@icon-theme
+@imc +@interaction +@intl +@keybindings +@menus +@mime +@mouse
+@mousebindings +@mouse-cursor +@paths +@performance +@profiles +@scale
+@screensaver +@shelves +@startup +@theme +@transitions +@wallpaper
+@wallpaper2 +@window-display +@window-focus +@window-manipulation
+@window-remembers +@winlist"
__NORM_MODS="
+@battery +@clock +@comp +@connman +@cpufreq +@dropshadow +@fileman
+@fileman_opinfo +@gadman +@ibar +@ibox @illume +@illume2 +@mixer
+@msgbus @ofono +@pager +@start +@syscon +@systray +@temperature
+@winlist +@wizard"
IUSE_E_MODULES="+e_modules_everything ${__EVRY_MODS//@/e_modules_everything-}
${__CONF_MODS//@/e_modules_conf-}
${__NORM_MODS//@/e_modules_}"
IUSE="acpi bluetooth exchange hal pam spell static-libs +udev ${IUSE_E_MODULES}"
# XXX: missing USE=hal depend ?
RDEPEND="exchange? ( >=app-misc/exchange-9999 )
pam? ( sys-libs/pam )
>=dev-libs/efreet-9999
>=dev-libs/eina-9999
>=x11-libs/ecore-9999[X,evas,inotify]
>=media-libs/edje-9999
>=x11-libs/e_dbus-9999[hal,libnotify]
e_modules_connman? ( >=x11-libs/e_dbus-9999[connman] )
e_modules_ofono? ( >=x11-libs/e_dbus-9999[ofono] )
>=x11-libs/evas-9999[eet,X,jpeg,png]
bluetooth? ( net-wireless/bluez )
udev? ( dev-libs/eeze )
spell? ( app-text/aspell )
e_modules_everything-calc? ( sys-devel/bc )"
DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}"/quickstart.diff
enlightenment_src_prepare
}
src_configure() {
export MY_ECONF="
--disable-install-sysactions
$(use_enable acpi conf-acpibindings)
$(use_enable bluetooth bluez)
$(use_enable doc)
$(use_enable exchange)
$(use_enable hal device-hal)
$(use_enable nls)
$(use_enable pam)
$(use_enable spell everything-aspell)
$(use_enable udev device-udev)
"
local u c
for u in ${IUSE_E_MODULES} ; do
u=${u#+}
c=${u#e_modules_}
MY_ECONF+=" $(use_enable ${u} ${c})"
done
if use e_modules_illume2 && use e_modules_illume ; then
ewarn "You enabled both illume2 and illume modules,"
ewarn "but only one of them can be active."
ewarn "illume will be disabled"
fi
use e_modules_illume2 && MY_ECONF+=" --disable-illume"
enlightenment_src_configure
}
src_install() {
enlightenment_src_install
insinto /etc/enlightenment
newins "${FILESDIR}"/gentoo-sysactions.conf sysactions.conf || die
}
|