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/gnumeric: ChangeLog gnumeric-1.10.11.ebuild gnumeric-1.8.4-r2.ebuild
Date: Mon, 04 Oct 2010 21:03:17
Message-Id: 20101004210313.62B9920051@flycatcher.gentoo.org
1 eva 10/10/04 21:03:13
2
3 Modified: ChangeLog
4 Added: gnumeric-1.10.11.ebuild
5 Removed: gnumeric-1.8.4-r2.ebuild
6 Log:
7 Version bump. Improved interoperability with OOo. Allow user-defined templates and various other fixes.
8
9 (Portage version: 2.2_rc88/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.210 app-office/gnumeric/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.210&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.210&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.209&r2=1.210
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
21 retrieving revision 1.209
22 retrieving revision 1.210
23 diff -u -r1.209 -r1.210
24 --- ChangeLog 13 Sep 2010 07:14:36 -0000 1.209
25 +++ ChangeLog 4 Oct 2010 21:03:13 -0000 1.210
26 @@ -1,6 +1,13 @@
27 # ChangeLog for app-office/gnumeric
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.209 2010/09/13 07:14:36 josejx Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.210 2010/10/04 21:03:13 eva Exp $
31 +
32 +*gnumeric-1.10.11 (04 Oct 2010)
33 +
34 + 04 Oct 2010; Gilles Dartiguelongue <eva@g.o>
35 + -gnumeric-1.8.4-r2.ebuild, +gnumeric-1.10.11.ebuild:
36 + Version bump. Improved interoperability with OOo. Allow user-defined
37 + templates and various other fixes.
38
39 13 Sep 2010; Joseph Jezak <josejx@g.o> gnumeric-1.10.6.ebuild:
40 Marked ppc stable for bug #326503.
41
42
43
44 1.1 app-office/gnumeric/gnumeric-1.10.11.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/gnumeric-1.10.11.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/gnumeric-1.10.11.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gnumeric-1.10.11.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.10.11.ebuild,v 1.1 2010/10/04 21:03:13 eva Exp $
54
55 EAPI="3"
56 PYTHON_DEPEND="python? 2:2.4"
57
58 inherit gnome2 flag-o-matic python
59
60 DESCRIPTION="Gnumeric, the GNOME Spreadsheet"
61 HOMEPAGE="http://www.gnome.org/projects/gnumeric/"
62 LICENSE="GPL-2"
63
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
66
67 IUSE="gnome perl python"
68 # libgda
69
70 # lots of missing files, wait for next release
71 # also fails tests due to 80-bit long story
72 RESTRICT="test"
73
74 RDEPEND="sys-libs/zlib
75 app-arch/bzip2
76 >=dev-libs/glib-2.12
77 >=gnome-extra/libgsf-1.14.19[gnome?]
78 >=x11-libs/goffice-0.8.10:0.8
79 >=dev-libs/libxml2-2.4.12
80 >=x11-libs/pango-1.12
81
82 >=x11-libs/gtk+-2.18:2
83 x11-libs/cairo[svg]
84 >=gnome-base/libglade-2.3.6
85
86 gnome? (
87 >=gnome-base/gconf-2
88 >=gnome-base/libgnome-2
89 >=gnome-base/libgnomeui-2
90 >=gnome-base/libbonobo-2.2
91 >=gnome-base/libbonoboui-2.2 )
92 perl? ( dev-lang/perl )
93 python? ( >=dev-python/pygtk-2 )
94 "
95 # libgda? (
96 # >=gnome-extra/libgda-4.1.1:4.0
97 # >=gnome-extra/libgnomedb-3.99.6:4.0 )
98 DEPEND="${RDEPEND}
99 >=dev-util/intltool-0.25
100 >=dev-util/pkgconfig-0.18
101 app-text/scrollkeeper"
102
103 DOCS="AUTHORS BEVERAGES BUGS ChangeLog HACKING MAINTAINERS NEWS README"
104
105 pkg_setup() {
106 G2CONF="${G2CONF}
107 --enable-ssindex
108 --disable-static
109 --without-gda
110 --with-zlib
111 $(use_with perl)
112 $(use_with python)
113 $(use_with gnome)"
114 }
115
116 src_install() {
117 gnome2_src_install
118
119 # Remove useless .la files
120 find "${ED}" -name "*.la" -delete || die
121 }
122
123 pkg_postinst() {
124 gnome2_pkg_postinst
125 python_need_rebuild
126 }