Gentoo Archives: gentoo-commits

From: "Romain Perier (mrpouet)" <mrpouet@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/gnotime: ChangeLog gnotime-2.3.0-r2.ebuild
Date: Sun, 27 Dec 2009 15:05:11
Message-Id: E1NOug6-00043h-4a@stork.gentoo.org
1 mrpouet 09/12/27 15:05:06
2
3 Modified: ChangeLog gnotime-2.3.0-r2.ebuild
4 Log:
5 Fix typo in PKG_CHECK_MODULES for libgnomeui, which caused build failure, per bug #298193
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.45 app-office/gnotime/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnotime/ChangeLog?rev=1.45&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnotime/ChangeLog?rev=1.45&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnotime/ChangeLog?r1=1.44&r2=1.45
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-office/gnotime/ChangeLog,v
18 retrieving revision 1.44
19 retrieving revision 1.45
20 diff -u -r1.44 -r1.45
21 --- ChangeLog 9 Jun 2009 18:24:42 -0000 1.44
22 +++ ChangeLog 27 Dec 2009 15:05:05 -0000 1.45
23 @@ -1,6 +1,11 @@
24 # ChangeLog for app-office/gnotime
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnotime/ChangeLog,v 1.44 2009/06/09 18:24:42 fauli Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-office/gnotime/ChangeLog,v 1.45 2009/12/27 15:05:05 mrpouet Exp $
28 +
29 + 27 Dec 2009; Romain Perier <mrpouet@g.o> gnotime-2.3.0-r2.ebuild,
30 + +files/gnotime-2.3.0-libgnomeui-typo.patch:
31 + Fix typo in PKG_CHECK_MODULES for libgnomeui, which caused build failure,
32 + per bug #298193.
33
34 09 Jun 2009; Christian Faulhammer <fauli@g.o> gnotime-2.3.0.ebuild,
35 gnotime-2.3.0-r2.ebuild:
36
37
38
39 1.4 app-office/gnotime/gnotime-2.3.0-r2.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnotime/gnotime-2.3.0-r2.ebuild?rev=1.4&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnotime/gnotime-2.3.0-r2.ebuild?rev=1.4&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnotime/gnotime-2.3.0-r2.ebuild?r1=1.3&r2=1.4
44
45 Index: gnotime-2.3.0-r2.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/app-office/gnotime/gnotime-2.3.0-r2.ebuild,v
48 retrieving revision 1.3
49 retrieving revision 1.4
50 diff -u -r1.3 -r1.4
51 --- gnotime-2.3.0-r2.ebuild 9 Jun 2009 18:24:42 -0000 1.3
52 +++ gnotime-2.3.0-r2.ebuild 27 Dec 2009 15:05:05 -0000 1.4
53 @@ -1,10 +1,10 @@
54 # Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnotime/gnotime-2.3.0-r2.ebuild,v 1.3 2009/06/09 18:24:42 fauli Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/app-office/gnotime/gnotime-2.3.0-r2.ebuild,v 1.4 2009/12/27 15:05:05 mrpouet Exp $
58
59 EAPI="1"
60
61 -inherit eutils gnome2
62 +inherit autotools eutils gnome2
63
64 DESCRIPTION="utility to track time spent on activities"
65 HOMEPAGE="http://gttr.sourceforge.net/"
66 @@ -51,4 +51,9 @@
67
68 # Fix column descriptions, bug #222325
69 epatch "${FILESDIR}/${P}-fix-columns.patch"
70 + # Fix typo in PKG_CHECK_MODULES, bug #298193
71 + epatch "${FILESDIR}/${P}-libgnomeui-typo.patch"
72 +
73 + intltoolize --automake --copy --force || die "intltoolize failed"
74 + eautoreconf
75 }