Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/planner: ChangeLog planner-0.14.5.ebuild
Date: Tue, 05 Jul 2011 19:37:12
Message-Id: 20110705193702.2A35B20051@flycatcher.gentoo.org
1 pacho 11/07/05 19:37:02
2
3 Modified: ChangeLog planner-0.14.5.ebuild
4 Log:
5 Find python in a faster way, bug #344231, upstream bug #654044. Thanks a lot to Arfrever Frehtes Taifersar Arahesis and Ed Catmur for their help.
6
7 (Portage version: 2.1.10.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.61 app-office/planner/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/planner/ChangeLog?rev=1.61&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/planner/ChangeLog?rev=1.61&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/planner/ChangeLog?r1=1.60&r2=1.61
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v
19 retrieving revision 1.60
20 retrieving revision 1.61
21 diff -u -r1.60 -r1.61
22 --- ChangeLog 5 Jul 2011 13:10:54 -0000 1.60
23 +++ ChangeLog 5 Jul 2011 19:37:01 -0000 1.61
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-office/planner
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v 1.60 2011/07/05 13:10:54 pacho Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v 1.61 2011/07/05 19:37:01 pacho Exp $
29 +
30 + 05 Jul 2011; Pacho Ramos <pacho@g.o> planner-0.14.5.ebuild,
31 + +files/planner-0.14.5-find-python.patch:
32 + Find python in a faster way, bug #344231, upstream bug #654044. Thanks a lot
33 + to Arfrever Frehtes Taifersar Arahesis and Ed Catmur for their help.
34
35 *planner-0.14.5 (05 Jul 2011)
36
37
38
39
40 1.2 app-office/planner/planner-0.14.5.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/planner/planner-0.14.5.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/planner/planner-0.14.5.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/planner/planner-0.14.5.ebuild?r1=1.1&r2=1.2
45
46 Index: planner-0.14.5.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/app-office/planner/planner-0.14.5.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- planner-0.14.5.ebuild 5 Jul 2011 13:10:54 -0000 1.1
53 +++ planner-0.14.5.ebuild 5 Jul 2011 19:37:01 -0000 1.2
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/app-office/planner/planner-0.14.5.ebuild,v 1.1 2011/07/05 13:10:54 pacho Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/app-office/planner/planner-0.14.5.ebuild,v 1.2 2011/07/05 19:37:01 pacho Exp $
59
60 EAPI="3"
61 GCONF_DEBUG="no"
62 @@ -8,14 +8,14 @@
63 GNOME_TARBALL_SUFFIX="xz"
64 PYTHON_DEPEND="python? 2"
65
66 -inherit python gnome2
67 +inherit python gnome2 eutils autotools
68
69 DESCRIPTION="Project manager for Gnome"
70 HOMEPAGE="http://live.gnome.org/Planner/"
71
72 SLOT="0"
73 LICENSE="GPL-2"
74 -KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
75 +KEYWORDS="alpha amd64 ppc sparc x86"
76 IUSE="doc eds python examples"
77
78 RDEPEND=">=dev-libs/glib-2.6:2
79 @@ -35,7 +35,9 @@
80 >=dev-util/pkgconfig-0.12.0
81 app-text/scrollkeeper
82 >=dev-util/intltool-0.35.5
83 - doc? ( >=dev-util/gtk-doc-1.0 )"
84 + doc? ( >=dev-util/gtk-doc-1.0 )
85 + dev-util/gtk-doc-am
86 + gnome-base/gnome-common"
87
88 # FIXME: disable eds backend for now, it fails, upstream bug #654005
89 pkg_setup() {
90 @@ -56,6 +58,12 @@
91
92 # Fix intltoolize broken file, see upstream #577133
93 sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in || die "sed failed"
94 +
95 + # Find python in a faster way, bug #344231, upstream bug #654044
96 + epatch "${FILESDIR}/${PN}-0.14.5-find-python.patch"
97 +
98 + intltoolize --force --copy --automake || die "intltoolize failed"
99 + eautoreconf
100 }
101
102 src_install() {