Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/gnumeric: ChangeLog gnumeric-1.12.0-r1.ebuild
Date: Sat, 29 Dec 2012 09:38:05
Message-Id: 20121229093746.A10A42171D@flycatcher.gentoo.org
1 tetromino 12/12/29 09:37:46
2
3 Modified: ChangeLog
4 Added: gnumeric-1.12.0-r1.ebuild
5 Log:
6 Fix build failure with gobject-introspection-1.34 (bug #448992).
7
8 (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61)
9
10 Revision Changes Path
11 1.238 app-office/gnumeric/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.238&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/ChangeLog?rev=1.238&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/ChangeLog?r1=1.237&r2=1.238
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v
20 retrieving revision 1.237
21 retrieving revision 1.238
22 diff -u -r1.237 -r1.238
23 --- ChangeLog 27 Dec 2012 23:35:24 -0000 1.237
24 +++ ChangeLog 29 Dec 2012 09:37:46 -0000 1.238
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-office/gnumeric
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.237 2012/12/27 23:35:24 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-office/gnumeric/ChangeLog,v 1.238 2012/12/29 09:37:46 tetromino Exp $
30 +
31 +*gnumeric-1.12.0-r1 (29 Dec 2012)
32 +
33 + 29 Dec 2012; Alexandre Rostovtsev <tetromino@g.o>
34 + +gnumeric-1.12.0-r1.ebuild:
35 + Fix build failure with gobject-introspection-1.34 (bug #448992).
36
37 27 Dec 2012; Pacho Ramos <pacho@g.o> gnumeric-1.12.0.ebuild:
38 Add forgotten PYTHON_USEDEP (thanks to Gilles for noticing)
39
40
41
42 1.1 app-office/gnumeric/gnumeric-1.12.0-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/gnumeric-1.12.0-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnumeric/gnumeric-1.12.0-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gnumeric-1.12.0-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2012 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.12.0-r1.ebuild,v 1.1 2012/12/29 09:37:46 tetromino Exp $
52
53 EAPI="5"
54 GCONF_DEBUG="no"
55 GNOME2_LA_PUNT="yes"
56 PYTHON_COMPAT=( python{2_6,2_7} )
57
58 inherit eutils gnome2 flag-o-matic python-single-r1
59
60 DESCRIPTION="The GNOME Spreadsheet"
61 HOMEPAGE="http://projects.gnome.org/gnumeric/"
62 LICENSE="GPL-2"
63 SRC_URI="${SRC_URI}
64 http://dev.gentoo.org/~tetromino/distfiles/${PN}/${PN}-1.12.0-annotation-syntax.patch.xz"
65
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
68
69 IUSE="+introspection perl python"
70 # Missing gnome-extra/libgnomedb required version in tree
71 # but its upstream is dead and will be dropped soon.
72
73 # lots of missing files, wait for next release
74 # also fails tests due to 80-bit long story
75 RESTRICT="test"
76
77 RDEPEND="sys-libs/zlib
78 app-arch/bzip2
79 >=dev-libs/glib-2.28.0:2
80 >=gnome-extra/libgsf-1.14.24:=
81 >=x11-libs/goffice-0.10.0:0.10
82 >=dev-libs/libxml2-2.4.12:2
83 >=x11-libs/pango-1.24.0:=
84
85 >=x11-libs/gtk+-3.0.0:3
86 x11-libs/cairo:=[svg]
87
88 introspection? ( >=dev-libs/gobject-introspection-1.0.0:= )
89 perl? ( dev-lang/perl )
90 python? ( ${PYTHON_DEPS}
91 >=dev-python/pygobject-3.0.0:3[${PYTHON_USEDEP}] )
92 "
93 # libgda? (
94 # >=gnome-extra/libgda-4.1.1:4.0
95 # >=gnome-extra/libgnomedb-3.99.6:4.0 )
96 DEPEND="${RDEPEND}
97 >=dev-util/intltool-0.35.0
98 virtual/pkgconfig
99 app-text/scrollkeeper"
100
101 src_prepare() {
102 # Fix gtk-doc annotation syntax for gobject-introspection-1.34; bug #448992
103 # https://bugzilla.gnome.org/show_bug.cgi?id=684159
104 epatch "../${PN}-1.12.0-annotation-syntax.patch"
105 gnome2_src_prepare
106 }
107
108 src_configure() {
109 gnome2_src_configure \
110 --enable-ssindex \
111 --disable-static \
112 --without-gda \
113 --with-zlib \
114 $(use_enable introspection) \
115 $(use_with perl) \
116 $(use_with python)
117 }