Gentoo Archives: gentoo-commits

From: "Tiziano Müller" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/dev-zero:master commit in: dev-libs/e_dbus/
Date: Mon, 21 Nov 2011 06:29:35
Message-Id: 4ecaa91c67268b87d12bbf8c01bd7045409ffe67.dev-zero@gentoo
1 commit: 4ecaa91c67268b87d12bbf8c01bd7045409ffe67
2 Author: Tiziano Müller <tm <AT> dev-zero <DOT> ch>
3 AuthorDate: Mon Nov 21 06:29:12 2011 +0000
4 Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 21 06:29:12 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/dev-zero.git;a=commit;h=4ecaa91c
7
8 removed e_dbus since in tree
9
10 ---
11 dev-libs/e_dbus/Manifest | 2 -
12 dev-libs/e_dbus/e_dbus-1.0.0_alpha.ebuild | 67 -----------------------------
13 2 files changed, 0 insertions(+), 69 deletions(-)
14
15 diff --git a/dev-libs/e_dbus/Manifest b/dev-libs/e_dbus/Manifest
16 deleted file mode 100644
17 index 027db1b..0000000
18 --- a/dev-libs/e_dbus/Manifest
19 +++ /dev/null
20 @@ -1,2 +0,0 @@
21 -EBUILD e_dbus-1.0.0_alpha.ebuild 1483 RMD160 a7a3e277b1878ee36778131f35f6ede841a88b6e SHA1 7da8d3f2f20fd383e9e888c16829fbd4a53f59b2 SHA256 c8fa8b0e2609fd2cb6f0db10ded51b565b9afb3ab1253fdf752a8755a902634a
22 -DIST e_dbus-1.0.0-alpha.tar.bz2 344015 RMD160 354c29c97bb75acf7f3bf373f6eb4b86889d3b03 SHA1 edfbb43e2d5c8fdef4fdc1e818a1a21ffc2bdf8b SHA256 dd851121905dfea5ed448e55ab7054bb8f42ef0182e04d97b1023906167a0b9c
23
24 diff --git a/dev-libs/e_dbus/e_dbus-1.0.0_alpha.ebuild b/dev-libs/e_dbus/e_dbus-1.0.0_alpha.ebuild
25 deleted file mode 100644
26 index d49a746..0000000
27 --- a/dev-libs/e_dbus/e_dbus-1.0.0_alpha.ebuild
28 +++ /dev/null
29 @@ -1,67 +0,0 @@
30 -# Copyright 1999-2010 Tiziano Müller
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Header: $
33 -
34 -EAPI="2"
35 -
36 -MY_P="${PN}-${PV/_/-}"
37 -
38 -DESCRIPTION="Enlightenment dbus, hal and notification convenience library."
39 -HOMEPAGE="http://www.enlightenment.org/"
40 -SRC_URI="http://download.enlightenment.org/releases/${MY_P}.tar.bz2"
41 -
42 -LICENSE="ECORE"
43 -SLOT="0"
44 -KEYWORDS="~amd64"
45 -IUSE="doc bluetooth connman notify hal static-libs ukit"
46 -
47 -CDEPEND="dev-libs/eina:0
48 - >=x11-libs/ecore-${PV}
49 - sys-apps/dbus
50 - enotify? ( >=x11-libs/evas-${PV} )"
51 -RDEPEND="${CDEPEND}
52 - bluez? ( net-wireless/bluez )
53 - connman? ( net-misc/connman )
54 - notify? ( || ( x11-misc/notification-daemon
55 - xfce-extra/xfce4-notifyd ) )
56 - ofono? ( net-misc/ofono )
57 - ukit? ( sys-fs/udisks sys-power/upower )"
58 -DEPEND="${CDEPEND}
59 - sys-devel/libtool
60 - dev-util/pkgconfig
61 - doc? ( app-doc/doxygen )"
62 -
63 -S="${WORKDIR}/${MY_P}"
64 -
65 -src_configure() {
66 - econf \
67 - $(use_enable static-libs static) \
68 - $(use_enable bluetooth ebluez) \
69 - $(use_enable connman econnman) \
70 - $(use_enable hal ehal) \
71 - $(use_enable notifiy enotify) \
72 - $(use_enable ofono eofono) \
73 - $(use_enable ukit eukit) \
74 - $(use_enable doc)
75 -}
76 -
77 -src_compile() {
78 - default
79 -
80 - if use doc ; then
81 - emake doc || die "building docs failed"
82 - fi
83 -}
84 -
85 -src_install() {
86 - emake DESTDIR="${D}" install || die "emake install failed"
87 -
88 - use static-libs || rm "${D}"/usr/lib*/*.la
89 -
90 - dodoc AUTHORS ChangeLog NEWS README
91 -
92 - if use doc ; then
93 - dohtml -r doc/html/*
94 - doman doc/man/man*/*
95 - fi
96 -}