Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/contacts: ChangeLog contacts-0.9.ebuild
Date: Fri, 21 Nov 2008 21:54:37
Message-Id: E1L3dxT-0005C1-3S@stork.gentoo.org
1 eva 08/11/21 21:54:35
2
3 Modified: ChangeLog contacts-0.9.ebuild
4 Log:
5 Fix compilation with USE=-dbus, bug #247519.
6 (Portage version: 2.2_rc14/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
7
8 Revision Changes Path
9 1.6 gnome-extra/contacts/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/contacts/ChangeLog?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/contacts/ChangeLog?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/contacts/ChangeLog?r1=1.5&r2=1.6
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/contacts/ChangeLog,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- ChangeLog 28 Jul 2008 22:57:35 -0000 1.5
22 +++ ChangeLog 21 Nov 2008 21:54:35 -0000 1.6
23 @@ -1,6 +1,10 @@
24 # ChangeLog for gnome-extra/contacts
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/contacts/ChangeLog,v 1.5 2008/07/28 22:57:35 eva Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/contacts/ChangeLog,v 1.6 2008/11/21 21:54:35 eva Exp $
28 +
29 + 21 Nov 2008; Gilles Dartiguelongue <eva@g.o>
30 + +files/contacts-0.9-dbus.patch, contacts-0.9.ebuild:
31 + Fix compilation with USE="-dbus", bug #247519.
32
33 *contacts-0.9 (28 Jul 2008)
34
35
36
37
38 1.2 gnome-extra/contacts/contacts-0.9.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/contacts/contacts-0.9.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/contacts/contacts-0.9.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/contacts/contacts-0.9.ebuild?r1=1.1&r2=1.2
43
44 Index: contacts-0.9.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/contacts/contacts-0.9.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- contacts-0.9.ebuild 28 Jul 2008 22:57:35 -0000 1.1
51 +++ contacts-0.9.ebuild 21 Nov 2008 21:54:35 -0000 1.2
52 @@ -1,8 +1,8 @@
53 # Copyright 1999-2008 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/contacts/contacts-0.9.ebuild,v 1.1 2008/07/28 22:57:35 eva Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/contacts/contacts-0.9.ebuild,v 1.2 2008/11/21 21:54:35 eva Exp $
57
58 -inherit gnome2
59 +inherit eutils gnome2
60
61 DESCRIPTION="A small, lightweight addressbook for GNOME"
62 HOMEPAGE="http://pimlico-project.org/contacts.html"
63 @@ -23,3 +23,10 @@
64 pkg_setup() {
65 G2CONF="$(use_enable dbus)"
66 }
67 +
68 +src_unpack() {
69 + gnome2_src_unpack
70 +
71 + # Fix compilation with USE="-dbus", bug #247519
72 + epatch "${FILESDIR}/${P}-dbus.patch"
73 +}