Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/dbus-glib: ChangeLog dbus-glib-0.80.ebuild dbus-glib-0.73.ebuild
Date: Sun, 08 Mar 2009 19:32:09
Message-Id: E1LgOjH-00036H-Dg@stork.gentoo.org
1 eva 09/03/08 19:32:07
2
3 Modified: ChangeLog
4 Added: dbus-glib-0.80.ebuild
5 Removed: dbus-glib-0.73.ebuild
6 Log:
7 Bump to 0.80. Various fixes and notably testsuite.
8 (Portage version: 2.2_rc23/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.49 dev-libs/dbus-glib/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/dbus-glib/ChangeLog?rev=1.49&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/dbus-glib/ChangeLog?rev=1.49&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/dbus-glib/ChangeLog?r1=1.48&r2=1.49
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/ChangeLog,v
20 retrieving revision 1.48
21 retrieving revision 1.49
22 diff -u -r1.48 -r1.49
23 --- ChangeLog 6 Feb 2009 03:02:40 -0000 1.48
24 +++ ChangeLog 8 Mar 2009 19:32:07 -0000 1.49
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/dbus-glib
27 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/ChangeLog,v 1.48 2009/02/06 03:02:40 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/ChangeLog,v 1.49 2009/03/08 19:32:07 eva Exp $
30 +
31 +*dbus-glib-0.80 (08 Mar 2009)
32 +
33 + 08 Mar 2009; Gilles Dartiguelongue <eva@g.o>
34 + -dbus-glib-0.73.ebuild, +dbus-glib-0.80.ebuild:
35 + Bump to 0.80. Various fixes and notably testsuite.
36
37 06 Feb 2009; Jeroen Roovers <jer@g.o> dbus-glib-0.76.ebuild:
38 Stable for HPPA (bug #250289).
39
40
41
42 1.1 dev-libs/dbus-glib/dbus-glib-0.80.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.80.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.80.ebuild?rev=1.1&content-type=text/plain
46
47 Index: dbus-glib-0.80.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.80.ebuild,v 1.1 2009/03/08 19:32:07 eva Exp $
52
53 EAPI="2"
54
55 inherit eutils bash-completion
56
57 DESCRIPTION="D-Bus bindings for glib"
58 HOMEPAGE="http://dbus.freedesktop.org/"
59 SRC_URI="http://dbus.freedesktop.org/releases/${PN}/${P}.tar.gz"
60
61 LICENSE="|| ( GPL-2 AFL-2.1 )"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
64 IUSE="bash-completion debug doc test"
65
66 RDEPEND=">=sys-apps/dbus-1.1.0
67 >=dev-libs/glib-2.10
68 >=dev-libs/expat-1.95.8"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig
71 sys-devel/gettext
72 doc? (
73 app-doc/doxygen
74 app-text/xmlto
75 >=dev-util/gtk-doc-1.4 )"
76
77 BASH_COMPLETION_NAME="dbus"
78
79 src_prepare() {
80 # description ?
81 epatch "${FILESDIR}"/${PN}-introspection.patch
82 }
83
84 src_configure() {
85 econf \
86 $(use_enable bash-completion) \
87 $(use_enable debug verbose-mode) \
88 $(use_enable debug checks) \
89 $(use_enable debug asserts) \
90 $(use_enable test tests) \
91 $(use_with test test-socket-dir "${T}"/dbus-test-socket) \
92 --localstatedir=/var \
93 $(use_enable doc doxygen-docs) \
94 $(use_enable doc gtk-doc)
95 }
96
97 src_install() {
98 emake DESTDIR="${D}" install || die "make install failed"
99
100 dodoc AUTHORS ChangeLog HACKING NEWS README || die "dodoc failed."
101
102 #FIXME: We need --with-bash-completion-dir
103 if use bash-completion ; then
104 dobashcompletion "${D}"/etc/bash_completion.d/dbus-bash-completion.sh
105 rm -rf "${D}"/etc/bash_completion.d
106 fi
107 }