Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/gtkhtml: ChangeLog gtkhtml-3.24.4.ebuild
Date: Sat, 31 Jan 2009 16:40:38
Message-Id: E1LTItW-0005fE-S5@stork.gentoo.org
1 eva 09/01/31 16:40:34
2
3 Modified: ChangeLog
4 Added: gtkhtml-3.24.4.ebuild
5 Log:
6 Bump to 3.24.4. Bug fixes.
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.172 gnome-extra/gtkhtml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/gtkhtml/ChangeLog?rev=1.172&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/gtkhtml/ChangeLog?rev=1.172&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/gtkhtml/ChangeLog?r1=1.171&r2=1.172
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v
19 retrieving revision 1.171
20 retrieving revision 1.172
21 diff -u -r1.171 -r1.172
22 --- ChangeLog 26 Jan 2009 21:54:35 -0000 1.171
23 +++ ChangeLog 31 Jan 2009 16:40:34 -0000 1.172
24 @@ -1,6 +1,12 @@
25 # ChangeLog for gnome-extra/gtkhtml
26 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v 1.171 2009/01/26 21:54:35 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v 1.172 2009/01/31 16:40:34 eva Exp $
29 +
30 +*gtkhtml-3.24.4 (31 Jan 2009)
31 +
32 + 31 Jan 2009; Gilles Dartiguelongue <eva@g.o>
33 + +gtkhtml-3.24.4.ebuild:
34 + Bump to 3.24.4. Bug fixes.
35
36 *gtkhtml-3.24.3 (26 Jan 2009)
37
38
39
40
41 1.1 gnome-extra/gtkhtml/gtkhtml-3.24.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/gtkhtml/gtkhtml-3.24.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/gtkhtml/gtkhtml-3.24.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gtkhtml-3.24.4.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/gtkhtml-3.24.4.ebuild,v 1.1 2009/01/31 16:40:34 eva Exp $
51
52 EAPI="1"
53
54 inherit autotools gnome2
55
56 DESCRIPTION="Lightweight HTML Rendering/Printing/Editing Engine"
57 HOMEPAGE="http://www.gnome.org/"
58
59 LICENSE="GPL-2 LGPL-2"
60 SLOT="3.14"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
62 IUSE=""
63
64 # We keep bonobo until we can make sure no apps in tree uses
65 # the old composer code.
66 # We could probably enable the glade catalog installation with
67 # USE="glade" if someone requests it
68 RDEPEND=">=x11-libs/gtk+-2.12
69 >=gnome-base/gail-1.1
70 >=x11-themes/gnome-icon-theme-1.2
71 >=gnome-base/libbonobo-2.20.3
72 >=gnome-base/libbonoboui-2.2.4
73 >=gnome-base/orbit-2
74 >=gnome-base/libglade-2
75 >=gnome-base/libgnomeui-2
76 app-text/enchant
77 gnome-base/gconf:2
78 >=app-text/iso-codes-0.49
79 net-libs/libsoup:2.4"
80 DEPEND="${RDEPEND}
81 sys-devel/gettext
82 >=dev-util/intltool-0.40.0
83 >=dev-util/pkgconfig-0.9"
84
85 DOCS="AUTHORS BUGS ChangeLog NEWS README TODO"
86
87 pkg_setup() {
88 ELTCONF="--reverse-deps"
89 G2CONF="--disable-static --with-bonobo-editor"
90 }
91
92 src_unpack() {
93 gnome2_src_unpack
94
95 # Fix deprecated API disabling in used glib library - this is not future-proof, bug 210657
96 sed -i -e '/G_DISABLE_DEPRECATED/d' \
97 "${S}/gtkhtml/Makefile.am" "${S}/gtkhtml/Makefile.in" \
98 "${S}/components/html-editor/Makefile.am" "${S}/components/html-editor/Makefile.in"
99
100 sed -i -e 's:-DGTK_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 -DG_DISABLE_DEPRECATED=1 -DGNOME_DISABLE_DEPRECATED=1::g' \
101 "${S}/a11y/Makefile.am" "${S}/a11y/Makefile.in"
102
103 # For some reason, won't install translations otherwise.
104 intltoolize --force --copy --automake || die "intltoolize failed"
105 eautomake
106 }