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/gnumeric: ChangeLog gnumeric-1.10.13.ebuild gnumeric-1.10.11.ebuild
Date: Sat, 05 Feb 2011 15:32:23
Message-Id: 20110205153147.C6DCB20054@flycatcher.gentoo.org
1 pacho 11/02/05 15:31:47
2
3 Modified: ChangeLog
4 Added: gnumeric-1.10.13.ebuild
5 Removed: gnumeric-1.10.11.ebuild
6 Log:
7 Version bump with some bugfixes.
8
9 (Portage version: 2.1.9.35/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.213 app-office/gnumeric/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.213&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.213&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.212&r2=1.213
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
21 retrieving revision 1.212
22 retrieving revision 1.213
23 diff -u -r1.212 -r1.213
24 --- ChangeLog 4 Dec 2010 10:13:27 -0000 1.212
25 +++ ChangeLog 5 Feb 2011 15:31:47 -0000 1.213
26 @@ -1,6 +1,12 @@
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.212 2010/12/04 10:13:27 pacho Exp $
30 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.213 2011/02/05 15:31:47 pacho Exp $
32 +
33 +*gnumeric-1.10.13 (05 Feb 2011)
34 +
35 + 05 Feb 2011; Pacho Ramos <pacho@g.o> -gnumeric-1.10.11.ebuild,
36 + +gnumeric-1.10.13.ebuild:
37 + Version bump with some bugfixes. Remove old.
38
39 *gnumeric-1.10.12 (04 Dec 2010)
40
41
42
43
44 1.1 app-office/gnumeric/gnumeric-1.10.13.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/gnumeric-1.10.13.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/gnumeric-1.10.13.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gnumeric-1.10.13.ebuild
50 ===================================================================
51 # Copyright 1999-2011 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.13.ebuild,v 1.1 2011/02/05 15:31:47 pacho Exp $
54
55 EAPI="3"
56 GCONF_DEBUG="no"
57 PYTHON_DEPEND="python? 2:2.4"
58
59 inherit gnome2 flag-o-matic python
60
61 DESCRIPTION="Gnumeric, the GNOME Spreadsheet"
62 HOMEPAGE="http://projects.gnome.org/gnumeric/"
63 LICENSE="GPL-2"
64
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
67
68 IUSE="gnome perl python"
69 # Missing gnome-extra/libgnomedb required version in tree
70
71 # lots of missing files, wait for next release
72 # also fails tests due to 80-bit long story
73 RESTRICT="test"
74
75 RDEPEND="sys-libs/zlib
76 app-arch/bzip2
77 >=dev-libs/glib-2.12
78 >=gnome-extra/libgsf-1.14.19[gnome?]
79 >=x11-libs/goffice-0.8.10:0.8
80 >=dev-libs/libxml2-2.4.12
81 >=x11-libs/pango-1.12
82
83 >=x11-libs/gtk+-2.18:2
84 x11-libs/cairo[svg]
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 pkg_setup() {
104 G2CONF="${G2CONF}
105 --enable-ssindex
106 --disable-static
107 --without-gda
108 --with-zlib
109 $(use_with perl)
110 $(use_with python)
111 $(use_with gnome)"
112 DOCS="AUTHORS BEVERAGES BUGS ChangeLog HACKING MAINTAINERS NEWS README"
113 use python && python_set_active_version 2
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 }