Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/planner: ChangeLog planner-0.14.4.ebuild
Date: Sun, 19 Apr 2009 21:45:39
Message-Id: E1LvepV-0002xM-1p@stork.gentoo.org
1 eva 09/04/19 21:45:37
2
3 Modified: ChangeLog
4 Added: planner-0.14.4.ebuild
5 Log:
6 Bump to 0.14.4. Use GtkPrint, drop old libgda support and more.
7 (Portage version: 2.2_rc30/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.50 app-office/planner/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/planner/ChangeLog?rev=1.50&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/planner/ChangeLog?rev=1.50&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/planner/ChangeLog?r1=1.49&r2=1.50
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v
19 retrieving revision 1.49
20 retrieving revision 1.50
21 diff -u -r1.49 -r1.50
22 --- ChangeLog 21 Jan 2009 22:54:46 -0000 1.49
23 +++ ChangeLog 19 Apr 2009 21:45:36 -0000 1.50
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-office/planner
26 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v 1.49 2009/01/21 22:54:46 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v 1.50 2009/04/19 21:45:36 eva Exp $
29 +
30 +*planner-0.14.4 (19 Apr 2009)
31 +
32 + 19 Apr 2009; Gilles Dartiguelongue <eva@g.o>
33 + +planner-0.14.4.ebuild:
34 + Bump to 0.14.4. Use GtkPrint, drop old libgda support and more.
35
36 21 Jan 2009; Gilles Dartiguelongue <eva@g.o>
37 -planner-0.14.2.ebuild, -planner-0.14.3.ebuild:
38
39
40
41 1.1 app-office/planner/planner-0.14.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/planner/planner-0.14.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/planner/planner-0.14.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: planner-0.14.4.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-office/planner/planner-0.14.4.ebuild,v 1.1 2009/04/19 21:45:36 eva Exp $
51
52 EAPI="1"
53
54 inherit eutils gnome2
55
56 DESCRIPTION="Project manager for Gnome2"
57 HOMEPAGE="http://live.gnome.org/Planner/"
58
59 SLOT="0"
60 LICENSE="GPL-2"
61 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
62 IUSE="doc eds libgda python examples"
63
64 RDEPEND=">=dev-libs/glib-2.6
65 >=x11-libs/gtk+-2.6
66 >=gnome-base/libgnomecanvas-2.10
67 >=gnome-base/libgnomeui-2.10
68 >=gnome-base/libglade-2.4
69 >=gnome-base/gnome-vfs-2.10
70 >=gnome-base/gconf-2.6
71 >=dev-libs/libxml2-2.6.27
72 >=dev-libs/libxslt-1.1.23
73 libgda? ( gnome-extra/libgda:3 )
74 python? ( >=dev-python/pygtk-2.6 )
75 eds? (
76 >=gnome-extra/evolution-data-server-1.1
77 >=mail-client/evolution-2.1.3 )"
78
79 # FIXME: disable eds backend for now, its experimental
80
81 DEPEND="${RDEPEND}
82 >=dev-util/pkgconfig-0.12.0
83 app-text/scrollkeeper
84 >=dev-util/intltool-0.35.5
85 doc? ( >=dev-util/gtk-doc-1.0 )"
86
87 DOCS="AUTHORS COPYING ChangeLog NEWS README"
88
89 pkg_setup() {
90 G2CONF="${G2CONF}
91 $(use_with libgda database gda3)
92 $(use_enable python)
93 $(use_enable python python-plugin)
94 $(use_enable eds)
95 --disable-update-mimedb"
96 # $(use_enable eds eds-backend)
97 }
98
99 src_unpack() {
100 gnome2_src_unpack
101
102 # Fix compile failure with eds-plugin
103 epatch "${FILESDIR}/${PN}-0.14.3-eds-plugin.patch"
104 }
105
106 src_install() {
107 gnome2_src_install \
108 sqldocdir="\$(datadir)/doc/${PF}" \
109 sampledir="\$(datadir)/doc/${PF}/examples"
110
111 if ! use examples; then
112 rm -rf "${D}/usr/share/doc/${PF}/examples"
113 fi
114 }