Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/e_dbus: e_dbus-1.7.8.ebuild ChangeLog
Date: Wed, 28 Aug 2013 03:03:08
Message-Id: 20130828030303.4BE2720047@flycatcher.gentoo.org
1 vapier 13/08/28 03:03:03
2
3 Modified: ChangeLog
4 Added: e_dbus-1.7.8.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
9
10 Revision Changes Path
11 1.15 dev-libs/e_dbus/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/e_dbus/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/e_dbus/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/e_dbus/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/e_dbus/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 21 Jul 2013 10:42:42 -0000 1.14
24 +++ ChangeLog 28 Aug 2013 03:03:03 -0000 1.15
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/e_dbus
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/e_dbus/ChangeLog,v 1.14 2013/07/21 10:42:42 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/e_dbus/ChangeLog,v 1.15 2013/08/28 03:03:03 vapier Exp $
30 +
31 +*e_dbus-1.7.8 (28 Aug 2013)
32 +
33 + 28 Aug 2013; Mike Frysinger <vapier@g.o> +e_dbus-1.7.8.ebuild:
34 + Version bump.
35
36 21 Jul 2013; Pacho Ramos <pacho@g.o> metadata.xml:
37 connman is a global USE flag now
38
39
40
41 1.1 dev-libs/e_dbus/e_dbus-1.7.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/e_dbus/e_dbus-1.7.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/e_dbus/e_dbus-1.7.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: e_dbus-1.7.8.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/e_dbus/e_dbus-1.7.8.ebuild,v 1.1 2013/08/28 03:03:03 vapier Exp $
51
52 EAPI="4"
53
54 inherit enlightenment
55
56 DESCRIPTION="Enlightenment's (Ecore) integration to DBus"
57 SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2"
58
59 LICENSE="BSD-2"
60 KEYWORDS="~amd64 ~arm ~x86"
61 IUSE="bluetooth +connman +libnotify ofono static-libs test-binaries +udev"
62
63 RDEPEND=">=dev-libs/eina-1.7.8
64 >=dev-libs/ecore-1.7.8
65 sys-apps/dbus
66 connman? ( >=net-misc/connman-0.75 )
67 libnotify? ( >=media-libs/evas-1.7.8 )
68 udev? ( sys-power/upower sys-fs/udisks:0 )
69 "
70 DEPEND="${RDEPEND}"
71
72 src_configure() {
73 E_ECONF+=(
74 $(use_enable bluetooth ebluez)
75 $(use_enable connman econnman0_7x)
76 $(use_enable doc)
77 --disable-ehal
78 $(use_enable libnotify enotify)
79 $(use_enable ofono eofono)
80 $(use_enable test-binaries edbus-test)
81 $(use_enable test-binaries edbus-test-client)
82 $(use_enable udev eukit)
83 )
84 if use test-binaries ; then
85 E_ECONF+=(
86 $(use_enable bluetooth edbus-bluez-test)
87 $(use_enable connman edbus-connman0_7x-test)
88 $(use_enable libnotify edbus-notification-daemon-test)
89 $(use_enable libnotify edbus-notify-test)
90 $(use_enable ofono edbus-ofono-test)
91 $(use_enable udev edbus-ukit-test)
92 )
93 else
94 E_ECONF+=(
95 --disable-edbus-bluez-test
96 --disable-edbus-connman0_7x-test
97 --disable-edbus-notification-daemon-test
98 --disable-edbus-notify-test
99 --disable-edbus-ofono-test
100 --disable-edbus-ukit-test
101 --disable-edbus-async-test
102 --disable-edbus-performance-test
103 )
104 fi
105 enlightenment_src_configure
106 }