Gentoo Archives: gentoo-commits

From: "Saleem Abdulrasool (compnerd)" <compnerd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/dbus-glib: ChangeLog dbus-glib-0.74-r1.ebuild
Date: Tue, 22 Apr 2008 02:54:58
Message-Id: E1Jo8el-0002Dn-BA@stork.gentoo.org
1 compnerd 08/04/22 02:54:55
2
3 Modified: ChangeLog
4 Added: dbus-glib-0.74-r1.ebuild
5 Log:
6 add namespace support
7 (Portage version: 2.1.5_rc2)
8
9 Revision Changes Path
10 1.36 dev-libs/dbus-glib/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/dbus-glib/ChangeLog?rev=1.36&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/dbus-glib/ChangeLog?rev=1.36&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/dbus-glib/ChangeLog?r1=1.35&r2=1.36
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/ChangeLog,v
19 retrieving revision 1.35
20 retrieving revision 1.36
21 diff -u -r1.35 -r1.36
22 --- ChangeLog 29 Feb 2008 05:38:12 -0000 1.35
23 +++ ChangeLog 22 Apr 2008 02:54:54 -0000 1.36
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-libs/dbus-glib
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/ChangeLog,v 1.35 2008/02/29 05:38:12 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/ChangeLog,v 1.36 2008/04/22 02:54:54 compnerd Exp $
29 +
30 +*dbus-glib-0.74-r1 (22 Apr 2008)
31 +
32 + 22 Apr 2008; Saleem Abdulrasool <compnerd@g.o>
33 + +files/dbus-glib-0.73-namespaces.patch, +dbus-glib-0.74-r1.ebuild:
34 + Add patch for namespace support in dbus-binding-tool
35
36 29 Feb 2008; Jeroen Roovers <jer@g.o> dbus-glib-0.74.ebuild:
37 Stable for HPPA (bug #208917).
38
39
40
41 1.1 dev-libs/dbus-glib/dbus-glib-0.74-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.74-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.74-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dbus-glib-0.74-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.74-r1.ebuild,v 1.1 2008/04/22 02:54:54 compnerd Exp $
51
52 inherit eutils multilib autotools
53
54 DESCRIPTION="D-Bus bindings for glib"
55 HOMEPAGE="http://dbus.freedesktop.org/"
56 SRC_URI="http://dbus.freedesktop.org/releases/${PN}/${P}.tar.gz"
57
58 LICENSE="|| ( GPL-2 AFL-2.1 )"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
61 IUSE="doc selinux debug"
62
63 RDEPEND=">=sys-apps/dbus-0.94
64 >=dev-libs/glib-2.6
65 selinux? ( sys-libs/libselinux )
66 >=dev-libs/libxml2-2.6.21"
67 # expat code now sucks.. libxml2 is the default
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig
70 doc? ( app-doc/doxygen app-text/xmlto )"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 epatch "${FILESDIR}"/${PN}-introspection.patch
76 epatch "${FILESDIR}/${PN}-0.73-namespaces.patch"
77 }
78
79 src_compile() {
80 local myconf=""
81
82 econf \
83 $(use_enable selinux) \
84 $(use_enable debug verbose-mode) \
85 $(use_enable debug checks) \
86 $(use_enable debug asserts) \
87 --with-xml=libxml \
88 --with-system-pid-file=/var/run/dbus.pid \
89 --with-system-socket=/var/run/dbus/system_bus_socket \
90 --with-session-socket-dir=/tmp \
91 --with-dbus-user=messagebus \
92 --localstatedir=/var \
93 $(use_enable doc doxygen-docs) \
94 --disable-xml-docs \
95 ${myconf} \
96 || die "econf failed"
97
98 # after the compile, it uses a selinuxfs interface to
99 # check if the SELinux policy has the right support
100 use selinux && addwrite /selinux/access
101
102 emake || die "make failed"
103 }
104
105 src_install() {
106 emake DESTDIR="${D}" install || die "make install failed"
107
108 dodoc AUTHORS ChangeLog HACKING NEWS README
109 }
110
111
112
113 --
114 gentoo-commits@l.g.o mailing list