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.8.3.ebuild ChangeLog gnumeric-1.8.2.ebuild
Date: Sun, 03 Aug 2008 20:01:41
Message-Id: E1KPjlp-0005NM-Mo@stork.gentoo.org
1 eva 08/08/03 20:01:37
2
3 Modified: gnumeric-1.8.3.ebuild ChangeLog
4 Removed: gnumeric-1.8.2.ebuild
5 Log:
6 add check for svg support in cairo, bug #232765.
7 (Portage version: 2.2_rc3/cvs/Linux 2.6.26-gentoo-mactel x86_64)
8
9 Revision Changes Path
10 1.8 app-office/gnumeric/gnumeric-1.8.3.ebuild
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.3.ebuild?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.3.ebuild?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/gnumeric-1.8.3.ebuild?r1=1.7&r2=1.8
15
16 Index: gnumeric-1.8.3.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.3.ebuild,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- gnumeric-1.8.3.ebuild 15 Jul 2008 18:42:52 -0000 1.7
23 +++ gnumeric-1.8.3.ebuild 3 Aug 2008 20:01:37 -0000 1.8
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.3.ebuild,v 1.7 2008/07/15 18:42:52 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/gnumeric-1.8.3.ebuild,v 1.8 2008/08/03 20:01:37 eva Exp $
29
30 inherit gnome2 flag-o-matic
31
32 @@ -51,6 +51,8 @@
33 DOCS="AUTHORS BEVERAGES BUGS ChangeLog HACKING MAINTAINERS NEWS README TODO"
34
35 pkg_setup() {
36 + local will_die=false
37 +
38 G2CONF="${G2CONF}
39 --enable-ssindex
40 --enable-static
41 @@ -61,12 +63,22 @@
42 $(use_with python)
43 $(use_with gnome)"
44
45 + if ! built_with_use x11-libs/cairo svg; then
46 + eerror "x11-libs/cairo needs to be built with svg support"
47 + eerror "please rebuild x11-libs/cairo with svg support"
48 + will_die=true
49 + fi
50 +
51 if use gnome && ! built_with_use gnome-extra/libgsf gnome; then
52 - eerror "libgsf needs to be compiled with gnome in USE"
53 + eerror "gnome-extra/libgsf needs to be compiled with gnome support"
54 eerror "for this version of gnumeric to work. Rebuild"
55 - eerror "libgsf first like this :"
56 + eerror "gnome-extra/libgsf first like this :"
57 eerror "USE=gnome emerge libgsf -vp"
58 - die "libgsf was built without gnome support..."
59 + will_die=true
60 + fi
61 +
62 + if ${will_die} ; then
63 + die "Please rebuild the packages with the use flags above."
64 fi
65
66 # gcc bug (http://bugs.gnome.org/show_bug.cgi?id=128834)
67
68
69
70 1.174 app-office/gnumeric/ChangeLog
71
72 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.174&view=markup
73 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.174&content-type=text/plain
74 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.173&r2=1.174
75
76 Index: ChangeLog
77 ===================================================================
78 RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
79 retrieving revision 1.173
80 retrieving revision 1.174
81 diff -u -r1.173 -r1.174
82 --- ChangeLog 15 Jul 2008 18:42:52 -0000 1.173
83 +++ ChangeLog 3 Aug 2008 20:01:37 -0000 1.174
84 @@ -1,6 +1,10 @@
85 # ChangeLog for app-office/gnumeric
86 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
87 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.173 2008/07/15 18:42:52 jer Exp $
88 +# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.174 2008/08/03 20:01:37 eva Exp $
89 +
90 + 03 Aug 2008; Gilles Dartiguelongue <eva@g.o>
91 + -gnumeric-1.8.2.ebuild, gnumeric-1.8.3.ebuild:
92 + add check for svg support in cairo, bug #232765.
93
94 15 Jul 2008; Jeroen Roovers <jer@g.o> gnumeric-1.8.3.ebuild:
95 Stable for HPPA (bug #230031).