Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/goffice: ChangeLog goffice-0.6.5.ebuild goffice-0.6.3.ebuild goffice-0.6.2.ebuild
Date: Wed, 03 Sep 2008 21:56:18
Message-Id: E1Kb0Kj-0006fc-2H@stork.gentoo.org
1 eva 08/09/03 21:56:13
2
3 Modified: ChangeLog
4 Added: goffice-0.6.5.ebuild
5 Removed: goffice-0.6.3.ebuild goffice-0.6.2.ebuild
6 Log:
7 bump to 0.6.5.
8 (Portage version: 2.2_rc8/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
9
10 Revision Changes Path
11 1.52 x11-libs/goffice/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.52&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?rev=1.52&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/ChangeLog?r1=1.51&r2=1.52
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v
20 retrieving revision 1.51
21 retrieving revision 1.52
22 diff -u -r1.51 -r1.52
23 --- ChangeLog 15 Jul 2008 18:42:12 -0000 1.51
24 +++ ChangeLog 3 Sep 2008 21:56:12 -0000 1.52
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/goffice
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.51 2008/07/15 18:42:12 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/ChangeLog,v 1.52 2008/09/03 21:56:12 eva Exp $
30 +
31 +*goffice-0.6.5 (03 Sep 2008)
32 +
33 + 03 Sep 2008; Gilles Dartiguelongue <eva@g.o> -goffice-0.6.2.ebuild,
34 + -goffice-0.6.3.ebuild, +goffice-0.6.5.ebuild:
35 + bump to 0.6.5.
36
37 15 Jul 2008; Jeroen Roovers <jer@g.o> goffice-0.6.4.ebuild:
38 Stable for HPPA (bug #230071).
39
40
41
42 1.1 x11-libs/goffice/goffice-0.6.5.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/goffice/goffice-0.6.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: goffice-0.6.5.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/goffice/goffice-0.6.5.ebuild,v 1.1 2008/09/03 21:56:12 eva Exp $
52
53 inherit eutils gnome2 flag-o-matic
54
55 DESCRIPTION="A library of document-centric objects and utilities"
56 HOMEPAGE="http://freshmeat.net/projects/goffice/"
57
58 LICENSE="GPL-2"
59 SLOT="0.6"
60 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
61 IUSE="doc gnome"
62
63 # Raising glib dep to 2.14 to drop pcre dependency
64 # cairo support broken and -gtk broken
65
66 RDEPEND=">=dev-libs/glib-2.14
67 >=gnome-extra/libgsf-1.13.3
68 >=dev-libs/libxml2-2.4.12
69 >=x11-libs/pango-1.8.1
70 >=x11-libs/gtk+-2.6
71 >=gnome-base/libglade-2.3.6
72 >=media-libs/libart_lgpl-2.3.11
73 >=x11-libs/cairo-1.2
74 gnome? (
75 >=gnome-base/gconf-2
76 >=gnome-base/libgnomeui-2 )"
77
78 DEPEND="${RDEPEND}
79 >=dev-util/pkgconfig-0.18
80 >=dev-util/intltool-0.35
81 doc? ( >=dev-util/gtk-doc-1.4 )"
82
83 DOCS="AUTHORS BUGS ChangeLog MAINTAINERS NEWS README"
84
85 pkg_setup() {
86 G2CONF="${G2CONF} $(use_with gnome)"
87
88 local diemessage=""
89
90 if use gnome && ! built_with_use gnome-extra/libgsf gnome; then
91 eerror "Please rebuild gnome-extra/libgsf with gnome support enabled"
92 eerror "echo \"gnome-extra/libgsf gnome\" >> /etc/portage/package.use"
93 eerror "or add \"gnome\" to your USE string in /etc/make.conf"
94 diemessage="No Gnome support found in libgsf."
95 fi
96
97 if ! built_with_use x11-libs/cairo svg ; then
98 eerror "Please rebuild x11-libs/cairo with svg support enabled"
99 eerror "echo \"x11-libs/cairo svg\" >> /etc/portage/package.use"
100 eerror "emerge -1 x11-libs/cairo"
101 diemessage="${diemessage} No SVG support found in cairo."
102 fi
103
104 [ -n "${diemessage}" ] && die ${diemessage}
105 }
106
107 src_compile() {
108 filter-flags -ffast-math
109 gnome2_src_compile
110 }