Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/epiphany: epiphany-3.8.2.ebuild ChangeLog epiphany-3.8.0.ebuild
Date: Sat, 01 Jun 2013 07:35:29
Message-Id: 20130601073526.2299D2171D@flycatcher.gentoo.org
1 pacho 13/06/01 07:35:26
2
3 Modified: ChangeLog
4 Added: epiphany-3.8.2.ebuild
5 Removed: epiphany-3.8.0.ebuild
6 Log:
7 Version bump, remove old
8
9 (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.296 www-client/epiphany/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/epiphany/ChangeLog?rev=1.296&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/epiphany/ChangeLog?rev=1.296&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/epiphany/ChangeLog?r1=1.295&r2=1.296
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/www-client/epiphany/ChangeLog,v
21 retrieving revision 1.295
22 retrieving revision 1.296
23 diff -u -r1.295 -r1.296
24 --- ChangeLog 17 Apr 2013 17:45:27 -0000 1.295
25 +++ ChangeLog 1 Jun 2013 07:35:25 -0000 1.296
26 @@ -1,6 +1,12 @@
27 # ChangeLog for www-client/epiphany
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany/ChangeLog,v 1.295 2013/04/17 17:45:27 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany/ChangeLog,v 1.296 2013/06/01 07:35:25 pacho Exp $
31 +
32 +*epiphany-3.8.2 (01 Jun 2013)
33 +
34 + 01 Jun 2013; Pacho Ramos <pacho@g.o> +epiphany-3.8.2.ebuild,
35 + -epiphany-3.8.0.ebuild:
36 + Version bump, remove old
37
38 *epiphany-3.8.1 (17 Apr 2013)
39
40
41
42
43 1.1 www-client/epiphany/epiphany-3.8.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/epiphany/epiphany-3.8.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/epiphany/epiphany-3.8.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: epiphany-3.8.2.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/www-client/epiphany/epiphany-3.8.2.ebuild,v 1.1 2013/06/01 07:35:25 pacho Exp $
53
54 EAPI="5"
55 GCONF_DEBUG="yes"
56 GNOME2_LA_PUNT="yes"
57
58 inherit eutils gnome2 pax-utils versionator virtualx
59
60 DESCRIPTION="GNOME webbrowser based on Webkit"
61 HOMEPAGE="http://projects.gnome.org/epiphany/"
62
63 # TODO: coverage
64 LICENSE="GPL-2"
65 SLOT="0"
66 IUSE="+jit +nss test"
67 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
68
69 RDEPEND="
70 >=app-crypt/gcr-3.5.5
71 >=app-crypt/libsecret-0.14
72 >=app-text/iso-codes-0.35
73 >=dev-libs/glib-2.35.6:2
74 >=dev-libs/libxml2-2.6.12:2
75 >=dev-libs/libxslt-1.1.7
76 >=gnome-base/gnome-keyring-2.26.0
77 >=gnome-base/gsettings-desktop-schemas-0.0.1
78 >=net-dns/avahi-0.6.22[dbus]
79 >=net-libs/webkit-gtk-1.11.92:3[jit?]
80 >=net-libs/libsoup-2.42.1:2.4
81 >=x11-libs/gtk+-3.7.10:3
82 >=x11-libs/libnotify-0.5.1:=
83 gnome-base/gnome-desktop:3=
84
85 dev-db/sqlite:3
86 x11-libs/libwnck:3
87 x11-libs/libX11
88
89 x11-themes/gnome-icon-theme
90 x11-themes/gnome-icon-theme-symbolic
91
92 nss? ( dev-libs/nss )
93 "
94 # paxctl needed for bug #407085
95 # eautoreconf requires gnome-common-3.5.5
96 DEPEND="${RDEPEND}
97 >=dev-util/gtk-doc-am-1
98 >=dev-util/intltool-0.50
99 sys-apps/paxctl
100 sys-devel/gettext
101 virtual/pkgconfig
102 "
103
104 src_configure() {
105 gnome2_src_configure \
106 --enable-shared \
107 --disable-static \
108 --with-distributor-name=Gentoo \
109 $(use_enable nss) \
110 $(use_enable test tests)
111 }
112
113 src_compile() {
114 # needed to avoid "Command line `dbus-launch ...' exited with non-zero exit status 1"
115 unset DISPLAY
116 gnome2_src_compile
117 }
118
119 src_test() {
120 # FIXME: this should be handled at eclass level
121 "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
122
123 GSETTINGS_SCHEMA_DIR="${S}/data" Xemake check
124 }
125
126 src_install() {
127 DOCS="AUTHORS ChangeLog* HACKING MAINTAINERS NEWS README TODO"
128 gnome2_src_install
129 use jit && pax-mark m "${ED}usr/bin/epiphany"
130 }