blob: 114b23b3f36bc19708be9e7893b8b3de8ce004cb (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/e_dbus/e_dbus-1.0.1.ebuild,v 1.2 2012/03/27 18:31:16 ssuominen Exp $
EAPI="2"
inherit enlightenment
DESCRIPTION="Enlightenment's (Ecore) integration to DBus"
SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
IUSE="bluetooth +connman +libnotify ofono static-libs test-binaries +udev"
RDEPEND=">=dev-libs/eina-1.0.0_beta
>=dev-libs/ecore-1.0.0_beta
sys-apps/dbus
libnotify? ( >=media-libs/evas-1.0.0_beta )
udev? ( sys-power/upower sys-fs/udisks:0 )
"
DEPEND="${RDEPEND}"
src_configure() {
MY_ECONF="
$(use_enable bluetooth ebluez)
$(use_enable connman econnman)
$(use_enable doc)
--disable-ehal
$(use_enable libnotify enotify)
$(use_enable ofono eofono)
$(use_enable test-binaries edbus-test)
$(use_enable test-binaries edbus-test-client)
$(use_enable udev eukit)"
if use test-binaries ; then
MY_ECONF+="
$(use_enable bluetooth edbus-bluez-test)
$(use_enable connman edbus-connman-test)
$(use_enable libnotify edbus-notification-daemon-test)
$(use_enable libnotify edbus-notify-test)
$(use_enable ofono edbus-ofono-test)
$(use_enable udev edbus-ukit-test)"
else
MY_ECONF+="
--disable-edbus-bluez-test
--disable-edbus-connman-test
--disable-edbus-notification-daemon-test
--disable-edbus-notify-test
--disable-edbus-ofono-test
--disable-edbus-ukit-test"
fi
enlightenment_src_configure
}
|