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