diff options
author | Thomas Sachau <tommy@gentoo.org> | 2012-02-08 21:17:26 +0000 |
---|---|---|
committer | Thomas Sachau <tommy@gentoo.org> | 2012-02-08 21:17:26 +0000 |
commit | 0e63edfd7695f577c7ae07979e8524887385b0a6 (patch) | |
tree | 382e02381147698b7dac3252803a89fecaa814b1 /dev-libs/e_dbus/e_dbus-1.1.0.ebuild | |
parent | add ~arm, bug #401853 (diff) | |
download | gentoo-2-0e63edfd7695f577c7ae07979e8524887385b0a6.tar.gz gentoo-2-0e63edfd7695f577c7ae07979e8524887385b0a6.tar.bz2 gentoo-2-0e63edfd7695f577c7ae07979e8524887385b0a6.zip |
Version bump, drop old
(Portage version: 2.2.0_alpha85-r1/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/e_dbus/e_dbus-1.1.0.ebuild')
-rw-r--r-- | dev-libs/e_dbus/e_dbus-1.1.0.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/dev-libs/e_dbus/e_dbus-1.1.0.ebuild b/dev-libs/e_dbus/e_dbus-1.1.0.ebuild new file mode 100644 index 000000000000..1c4df39ff508 --- /dev/null +++ b/dev-libs/e_dbus/e_dbus-1.1.0.ebuild @@ -0,0 +1,53 @@ +# 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.1.0.ebuild,v 1.1 2012/02/08 21:17:26 tommy 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 + connman? ( >=net-misc/connman-0.75 ) + libnotify? ( >=media-libs/evas-1.0.0_beta ) + udev? ( sys-power/upower sys-fs/udisks ) +" +DEPEND="${RDEPEND}" + +src_configure() { + MY_ECONF=" + $(use_enable bluetooth ebluez) + $(use_enable connman econnman0_7x) + $(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-connman0_7x-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-connman0_7x-test + --disable-edbus-notification-daemon-test + --disable-edbus-notify-test + --disable-edbus-ofono-test + --disable-edbus-ukit-test" + fi + enlightenment_src_configure +} |