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.28.1.ebuild
Date: Thu, 29 Oct 2009 21:59:56
Message-Id: E1N3d29-0001tD-Vc@stork.gentoo.org
1 eva 09/10/29 21:59:53
2
3 Modified: ChangeLog
4 Added: gtkhtml-3.28.1.ebuild
5 Log:
6 New version for GNOME 2.28.
7 (Portage version: 2.2_rc46/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.197 gnome-extra/gtkhtml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/gtkhtml/ChangeLog?rev=1.197&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/gtkhtml/ChangeLog?rev=1.197&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/gtkhtml/ChangeLog?r1=1.196&r2=1.197
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v
19 retrieving revision 1.196
20 retrieving revision 1.197
21 diff -u -r1.196 -r1.197
22 --- ChangeLog 24 Oct 2009 16:50:57 -0000 1.196
23 +++ ChangeLog 29 Oct 2009 21:59:53 -0000 1.197
24 @@ -1,6 +1,12 @@
25 # ChangeLog for gnome-extra/gtkhtml
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v 1.196 2009/10/24 16:50:57 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v 1.197 2009/10/29 21:59:53 eva Exp $
29 +
30 +*gtkhtml-3.28.1 (29 Oct 2009)
31 +
32 + 29 Oct 2009; Gilles Dartiguelongue <eva@g.o>
33 + +gtkhtml-3.28.1.ebuild, +files/gtkhtml-editor.xml:
34 + New version for GNOME 2.28.
35
36 24 Oct 2009; nixnut <nixnut@g.o> gtkhtml-3.26.3.ebuild:
37 ppc stable #281427
38
39
40
41 1.1 gnome-extra/gtkhtml/gtkhtml-3.28.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/gtkhtml/gtkhtml-3.28.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/gtkhtml/gtkhtml-3.28.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gtkhtml-3.28.1.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.28.1.ebuild,v 1.1 2009/10/29 21:59:53 eva Exp $
51
52 EAPI="2"
53 GCONF_DEBUG="no"
54
55 inherit autotools eutils gnome2
56
57 DESCRIPTION="Lightweight HTML Rendering/Printing/Editing Engine"
58 HOMEPAGE="http://www.gnome.org/"
59
60 LICENSE="GPL-2 LGPL-2"
61 SLOT="3.14"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
63 IUSE="glade"
64
65 # We keep bonobo until we can make sure no apps in tree uses
66 # the old composer code.
67 RDEPEND=">=x11-libs/gtk+-2.16
68 >=gnome-base/gail-1.1
69 >=x11-themes/gnome-icon-theme-2.22.0
70 >=gnome-base/orbit-2
71 app-text/enchant
72 gnome-base/gconf:2
73 >=app-text/iso-codes-0.49
74 >=net-libs/libsoup-2.26.0:2.4
75 glade? ( dev-util/glade:3 )"
76 DEPEND="${RDEPEND}
77 sys-devel/gettext
78 >=dev-util/intltool-0.40.0
79 >=dev-util/pkgconfig-0.9"
80
81 DOCS="AUTHORS BUGS ChangeLog NEWS README TODO"
82
83 pkg_setup() {
84 ELTCONF="--reverse-deps"
85 G2CONF="${G2CONF}
86 --disable-static
87 $(use_with glade glade-catalog)"
88 }
89
90 src_prepare() {
91 gnome2_src_prepare
92
93 # Add missing file, upstream bug #597361
94 cp "${FILESDIR}/gtkhtml-editor.xml" \
95 "${S}/components/editor/gtkhtml-editor.xml" || die "cp failed"
96
97 # FIXME: Fix compilation flags crazyness
98 sed 's/CFLAGS="$CFLAGS $WARNING_FLAGS"//' \
99 -i configure.ac configure || die "sed 1 failed"
100
101 sed -i -e 's:-DGTK_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 -DG_DISABLE_DEPRECATED=1 -DGNOME_DISABLE_DEPRECATED=1::g' \
102 a11y/Makefile.am a11y/Makefile.in || die "sed 2 failed"
103
104 # ./../doltcompile: line 31: --silent : command not found
105 intltoolize --force --copy --automake || die "intltoolize failed"
106 eautoreconf
107 }