Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/contacts: ChangeLog contacts-0.11.ebuild contacts-0.10.ebuild
Date: Thu, 02 Sep 2010 13:13:49
Message-Id: 20100902131347.0295020054@flycatcher.gentoo.org
1 pacho 10/09/02 13:13:46
2
3 Modified: ChangeLog contacts-0.11.ebuild
4 Removed: contacts-0.10.ebuild
5 Log:
6 Make this gmake-3.82 compliant, bug #333647 (reported by Diego E. 'Flameeyes' Pettenò and patch made by Jory A. Pratt). Use eapi2 and remove old.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.9 gnome-extra/contacts/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/contacts/ChangeLog?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/contacts/ChangeLog?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/contacts/ChangeLog?r1=1.8&r2=1.9
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/contacts/ChangeLog,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- ChangeLog 12 Nov 2009 22:34:25 -0000 1.8
23 +++ ChangeLog 2 Sep 2010 13:13:46 -0000 1.9
24 @@ -1,6 +1,12 @@
25 # ChangeLog for gnome-extra/contacts
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/contacts/ChangeLog,v 1.8 2009/11/12 22:34:25 eva Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/contacts/ChangeLog,v 1.9 2010/09/02 13:13:46 pacho Exp $
30 +
31 + 02 Sep 2010; Pacho Ramos <pacho@g.o> -contacts-0.10.ebuild,
32 + contacts-0.11.ebuild, +files/contacts-0.11-fix-make-3.82.patch:
33 + Make this gmake-3.82 compliant, bug #333647 (reported by Diego E.
34 + 'Flameeyes' Pettenò and patch made by Jory A. Pratt). Use eapi2 and
35 + remove old.
36
37 *contacts-0.11 (12 Nov 2009)
38
39
40
41
42 1.2 gnome-extra/contacts/contacts-0.11.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/contacts/contacts-0.11.ebuild?rev=1.2&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/contacts/contacts-0.11.ebuild?rev=1.2&content-type=text/plain
46 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/contacts/contacts-0.11.ebuild?r1=1.1&r2=1.2
47
48 Index: contacts-0.11.ebuild
49 ===================================================================
50 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/contacts/contacts-0.11.ebuild,v
51 retrieving revision 1.1
52 retrieving revision 1.2
53 diff -u -r1.1 -r1.2
54 --- contacts-0.11.ebuild 12 Nov 2009 22:34:25 -0000 1.1
55 +++ contacts-0.11.ebuild 2 Sep 2010 13:13:46 -0000 1.2
56 @@ -1,10 +1,11 @@
57 -# Copyright 1999-2009 Gentoo Foundation
58 +# Copyright 1999-2010 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/contacts/contacts-0.11.ebuild,v 1.1 2009/11/12 22:34:25 eva Exp $
61 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/contacts/contacts-0.11.ebuild,v 1.2 2010/09/02 13:13:46 pacho Exp $
62
63 +EAPI="2"
64 GCONF_DEBUG="no"
65
66 -inherit eutils gnome2
67 +inherit autotools eutils gnome2
68
69 DESCRIPTION="A small, lightweight addressbook for GNOME"
70 HOMEPAGE="http://pimlico-project.org/contacts.html"
71 @@ -28,9 +29,15 @@
72 G2CONF="${G2CONF} $(use_enable dbus)"
73 }
74
75 -src_unpack() {
76 - gnome2_src_unpack
77 +src_prepare() {
78 + gnome2_src_prepare
79
80 - # Fix compilation with USE="-dbus", bug #247519
81 + # Fix compilation with USE="-dbus", bug #247519, upstream bug #628614
82 epatch "${FILESDIR}/${PN}-0.9-dbus.patch"
83 +
84 + # Fix compilation with gmake-3.82, bug #333647, upstream bug #628615
85 + epatch "${FILESDIR}/${PN}-0.11-fix-make-3.82.patch"
86 +
87 + intltoolize --force --copy --automake || die "intltoolize failed"
88 + eautoreconf
89 }