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 13:11:05
Message-Id: 20110705131054.B329C2004B@flycatcher.gentoo.org
1 pacho 11/07/05 13:10:54
2
3 Modified: ChangeLog
4 Added: planner-0.14.5.ebuild
5 Log:
6 Version bump, also disabled libgda support as it needs deprecated and unmaintained gda3.
7
8 (Portage version: 2.1.10.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.60 app-office/planner/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/planner/ChangeLog?rev=1.60&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/planner/ChangeLog?rev=1.60&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/planner/ChangeLog?r1=1.59&r2=1.60
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v
20 retrieving revision 1.59
21 retrieving revision 1.60
22 diff -u -r1.59 -r1.60
23 --- ChangeLog 4 Jun 2011 18:40:12 -0000 1.59
24 +++ ChangeLog 5 Jul 2011 13:10:54 -0000 1.60
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-office/planner
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v 1.59 2011/06/04 18:40:12 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v 1.60 2011/07/05 13:10:54 pacho Exp $
30 +
31 +*planner-0.14.5 (05 Jul 2011)
32 +
33 + 05 Jul 2011; Pacho Ramos <pacho@g.o> +planner-0.14.5.ebuild:
34 + Version bump, also disabled libgda support as it needs deprecated and
35 + unmaintained gda3.
36
37 04 Jun 2011; Pacho Ramos <pacho@g.o> planner-0.14.4.ebuild:
38 Add a note on upstream report for the patch we are applying.
39
40
41
42 1.1 app-office/planner/planner-0.14.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/planner/planner-0.14.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/planner/planner-0.14.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: planner-0.14.5.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-office/planner/planner-0.14.5.ebuild,v 1.1 2011/07/05 13:10:54 pacho Exp $
52
53 EAPI="3"
54 GCONF_DEBUG="no"
55 GNOME2_LA_PUNT="yes"
56 GNOME_TARBALL_SUFFIX="xz"
57 PYTHON_DEPEND="python? 2"
58
59 inherit python gnome2
60
61 DESCRIPTION="Project manager for Gnome"
62 HOMEPAGE="http://live.gnome.org/Planner/"
63
64 SLOT="0"
65 LICENSE="GPL-2"
66 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
67 IUSE="doc eds python examples"
68
69 RDEPEND=">=dev-libs/glib-2.6:2
70 >=x11-libs/gtk+-2.14:2
71 >=gnome-base/libgnomecanvas-2.10
72 >=gnome-base/libgnomeui-2.10
73 >=gnome-base/libglade-2.4:2.0
74 >=gnome-base/gconf-2.6:2
75 >=dev-libs/libxml2-2.6.27:2
76 >=dev-libs/libxslt-1.1.23
77 python? ( >=dev-python/pygtk-2.6:2 )
78 eds? (
79 >=gnome-extra/evolution-data-server-1.1
80 >=mail-client/evolution-2.1.3 )"
81
82 DEPEND="${RDEPEND}
83 >=dev-util/pkgconfig-0.12.0
84 app-text/scrollkeeper
85 >=dev-util/intltool-0.35.5
86 doc? ( >=dev-util/gtk-doc-1.0 )"
87
88 # FIXME: disable eds backend for now, it fails, upstream bug #654005
89 pkg_setup() {
90 DOCS="AUTHORS COPYING ChangeLog NEWS README"
91 G2CONF="${G2CONF}
92 $(use_enable python)
93 $(use_enable python python-plugin)
94 $(use_enable eds)
95 --disable-eds-backend
96 --with-database=no
97 --disable-update-mimedb"
98 #$(use_enable eds eds-backend)
99 use python && python_set_active_version 2
100 }
101
102 src_prepare() {
103 gnome2_src_prepare
104
105 # Fix intltoolize broken file, see upstream #577133
106 sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in || die "sed failed"
107 }
108
109 src_install() {
110 gnome2_src_install \
111 sqldocdir="\$(datadir)/doc/${PF}" \
112 sampledir="\$(datadir)/doc/${PF}/examples"
113
114 if ! use examples; then
115 rm -rf "${D}/usr/share/doc/${PF}/examples"
116 fi
117 }