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.12.ebuild
Date: Fri, 25 Feb 2011 22:27:03
Message-Id: 20110225222652.A8F7A20054@flycatcher.gentoo.org
1 eva 11/02/25 22:26:52
2
3 Modified: ChangeLog contacts-0.12.ebuild
4 Log:
5 Fix incomplete rdepends and use switches, bug #356317.
6
7 (Portage version: 2.2.0_alpha24/cvs/Linux x86_64, RepoMan options: --force)
8
9 Revision Changes Path
10 1.12 gnome-extra/contacts/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/contacts/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/contacts/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/contacts/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/contacts/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 24 Jan 2011 13:02:59 -0000 1.11
23 +++ ChangeLog 25 Feb 2011 22:26:52 -0000 1.12
24 @@ -1,6 +1,9 @@
25 # ChangeLog for gnome-extra/contacts
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/contacts/ChangeLog,v 1.11 2011/01/24 13:02:59 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/contacts/ChangeLog,v 1.12 2011/02/25 22:26:52 eva Exp $
29 +
30 + 25 Feb 2011; Gilles Dartiguelongue <eva@g.o> contacts-0.12.ebuild:
31 + Fix incomplete rdepends and use switches, bug #356317.
32
33 24 Jan 2011; Gilles Dartiguelongue <eva@g.o> -contacts-0.11.ebuild,
34 contacts-0.12.ebuild:
35
36
37
38 1.3 gnome-extra/contacts/contacts-0.12.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/contacts/contacts-0.12.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/contacts/contacts-0.12.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/contacts/contacts-0.12.ebuild?r1=1.2&r2=1.3
43
44 Index: contacts-0.12.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/contacts/contacts-0.12.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- contacts-0.12.ebuild 24 Jan 2011 13:02:59 -0000 1.2
51 +++ contacts-0.12.ebuild 25 Feb 2011 22:26:52 -0000 1.3
52 @@ -1,8 +1,8 @@
53 # Copyright 1999-2011 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.12.ebuild,v 1.2 2011/01/24 13:02:59 eva Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/contacts/contacts-0.12.ebuild,v 1.3 2011/02/25 22:26:52 eva Exp $
57
58 -EAPI="2"
59 +EAPI="3"
60 GCONF_DEBUG="no"
61
62 inherit autotools eutils gnome2
63 @@ -13,10 +13,16 @@
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc ~x86"
67 -IUSE="dbus"
68 +IUSE="dbus gnome"
69
70 RDEPEND=">=gnome-extra/evolution-data-server-1.8
71 - >=x11-libs/gtk+-2.6:2"
72 + >=x11-libs/gtk+-2.6:2
73 + dbus? (
74 + dev-libs/dbus-glib
75 + sys-apps/dbus )
76 + gnome? (
77 + >=gnome-base/gconf-2
78 + >=gnome-base/gnome-vfs-2 )"
79 DEPEND="${RDEPEND}
80 sys-devel/gettext
81 >=dev-util/intltool-0.35.0
82 @@ -25,7 +31,10 @@
83 pkg_setup() {
84 # README is empty
85 DOCS="AUTHORS ChangeLog NEWS"
86 - G2CONF="${G2CONF} $(use_enable dbus)"
87 + G2CONF="${G2CONF}
88 + $(use_enable dbus)
89 + $(use_enable gnome gconf)
90 + $(use_enable gnome gnome-vfs)"
91 }
92
93 src_prepare() {