Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/epiphany: ChangeLog epiphany-2.30.5.ebuild
Date: Tue, 31 Aug 2010 18:33:58
Message-Id: 20100831183353.67A2E20051@flycatcher.gentoo.org
1 eva 10/08/31 18:33:53
2
3 Modified: ChangeLog
4 Added: epiphany-2.30.5.ebuild
5 Log:
6 Version bump. Backported fixes from master.
7
8 (Portage version: 2.2_rc72/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.253 www-client/epiphany/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/epiphany/ChangeLog?rev=1.253&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/epiphany/ChangeLog?rev=1.253&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/epiphany/ChangeLog?r1=1.252&r2=1.253
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-client/epiphany/ChangeLog,v
20 retrieving revision 1.252
21 retrieving revision 1.253
22 diff -u -r1.252 -r1.253
23 --- ChangeLog 23 Aug 2010 22:18:05 -0000 1.252
24 +++ ChangeLog 31 Aug 2010 18:33:53 -0000 1.253
25 @@ -1,6 +1,12 @@
26 # ChangeLog for www-client/epiphany
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany/ChangeLog,v 1.252 2010/08/23 22:18:05 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany/ChangeLog,v 1.253 2010/08/31 18:33:53 eva Exp $
30 +
31 +*epiphany-2.30.5 (31 Aug 2010)
32 +
33 + 31 Aug 2010; Gilles Dartiguelongue <eva@g.o>
34 + +epiphany-2.30.5.ebuild:
35 + Version bump. Backported fixes from master.
36
37 23 Aug 2010; Gilles Dartiguelongue <eva@g.o>
38 -epiphany-2.26.3-r2.ebuild:
39
40
41
42 1.1 www-client/epiphany/epiphany-2.30.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/epiphany/epiphany-2.30.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/epiphany/epiphany-2.30.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: epiphany-2.30.5.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/www-client/epiphany/epiphany-2.30.5.ebuild,v 1.1 2010/08/31 18:33:53 eva Exp $
52
53 EAPI="2"
54
55 inherit eutils gnome2
56
57 DESCRIPTION="GNOME webbrowser based on Webkit"
58 HOMEPAGE="http://www.gnome.org/projects/epiphany/"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
63
64 # We are not ready for introspection yet
65 IUSE="avahi doc networkmanager +nss test"
66
67 # TODO: add seed support
68 RDEPEND=">=dev-libs/glib-2.19.7
69 >=x11-libs/gtk+-2.19.5
70 >=dev-libs/libxml2-2.6.12
71 >=dev-libs/libxslt-1.1.7
72 >=x11-libs/startup-notification-0.5
73 >=x11-libs/libnotify-0.4
74 >=dev-libs/dbus-glib-0.71
75 >=gnome-base/gconf-2
76 >=app-text/iso-codes-0.35
77 >=net-libs/webkit-gtk-1.2.3
78 >=net-libs/libsoup-gnome-2.29.91
79 >=gnome-base/gnome-keyring-2.26.0
80
81 x11-libs/libICE
82 x11-libs/libSM
83
84 avahi? ( >=net-dns/avahi-0.6.22 )
85 networkmanager? ( net-misc/networkmanager )
86 nss? ( dev-libs/nss )
87 x11-themes/gnome-icon-theme"
88 # introspection? ( >=dev-libs/gobject-introspection-0.6.7 )
89 DEPEND="${RDEPEND}
90 app-text/scrollkeeper
91 >=dev-util/pkgconfig-0.9
92 >=dev-util/intltool-0.40
93 >=app-text/gnome-doc-utils-0.3.2
94 doc? ( >=dev-util/gtk-doc-1 )"
95 # eautoreconf needs:
96 # gnome-base/gnome-common
97
98 DOCS="AUTHORS ChangeLog* HACKING MAINTAINERS NEWS README TODO"
99
100 pkg_setup() {
101 G2CONF="${G2CONF}
102 --disable-introspection
103 --disable-scrollkeeper
104 --disable-maintainer-mode
105 --with-distributor-name=Gentoo
106 $(use_enable avahi zeroconf)
107 $(use_enable networkmanager network-manager)
108 $(use_enable nss)
109 $(use_enable test tests)"
110 }
111
112 src_compile() {
113 # Fix sandbox error with USE="introspection" and "doc"
114 # https://bugs.webkit.org/show_bug.cgi?id=35471
115 addpredict "$(unset HOME; echo ~)/.local"
116 emake || die "Compile failed"
117 }