Gentoo Archives: gentoo-commits

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