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-extensions: ChangeLog epiphany-extensions-2.22.0.ebuild
Date: Sun, 23 Mar 2008 00:11:52
Message-Id: E1JdDoT-000643-HA@stork.gentoo.org
1 eva 08/03/23 00:11:49
2
3 Modified: ChangeLog
4 Added: epiphany-extensions-2.22.0.ebuild
5 Log:
6 New version for GNOME-2.22. Uses GIO from glib-2.16.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.78 www-client/epiphany-extensions/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/epiphany-extensions/ChangeLog?rev=1.78&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/epiphany-extensions/ChangeLog?rev=1.78&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/epiphany-extensions/ChangeLog?r1=1.77&r2=1.78
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-client/epiphany-extensions/ChangeLog,v
19 retrieving revision 1.77
20 retrieving revision 1.78
21 diff -u -r1.77 -r1.78
22 --- ChangeLog 22 Mar 2008 03:57:06 -0000 1.77
23 +++ ChangeLog 23 Mar 2008 00:11:48 -0000 1.78
24 @@ -1,6 +1,13 @@
25 # ChangeLog for www-client/epiphany-extensions
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany-extensions/ChangeLog,v 1.77 2008/03/22 03:57:06 dang Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany-extensions/ChangeLog,v 1.78 2008/03/23 00:11:48 eva Exp $
29 +
30 +*epiphany-extensions-2.22.0 (23 Mar 2008)
31 +
32 + 23 Mar 2008; Gilles Dartiguelongue <eva@g.o>
33 + +files/epiphany-extensions-2.21.92-sessionsaver-v4.patch.gz,
34 + +epiphany-extensions-2.22.0.ebuild:
35 + New version for GNOME-2.22. Uses GIO from glib-2.16.
36
37 22 Mar 2008; Daniel Gryniewicz <dang@g.o>
38 epiphany-extensions-2.20.3.ebuild:
39
40
41
42 1.1 www-client/epiphany-extensions/epiphany-extensions-2.22.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/epiphany-extensions/epiphany-extensions-2.22.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/epiphany-extensions/epiphany-extensions-2.22.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: epiphany-extensions-2.22.0.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/www-client/epiphany-extensions/epiphany-extensions-2.22.0.ebuild,v 1.1 2008/03/23 00:11:48 eva Exp $
52
53 inherit autotools eutils gnome2 python versionator
54
55 MY_MAJORV=$(get_version_component_range 1-2)
56
57 DESCRIPTION="Extensions for the Epiphany web browser"
58 HOMEPAGE="http://www.gnome.org/projects/epiphany/extensions.html"
59 LICENSE="GPL-2"
60
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~ia64 ~hppa ~ppc ~sparc ~x86"
63 IUSE="dbus examples pcre python xulrunner"
64
65 RDEPEND=">=www-client/epiphany-${MY_MAJORV}
66 app-text/opensp
67 >=dev-libs/glib-2.15.5
68 >=gnome-base/gconf-2.0
69 >=dev-libs/libxml2-2.6
70 >=x11-libs/gtk+-2.11.6
71 >=gnome-base/libglade-2
72 xulrunner? ( net-libs/xulrunner )
73 !xulrunner? ( >=www-client/mozilla-firefox-1.5 )
74 dbus? ( >=dev-libs/dbus-glib-0.34 )
75 pcre? ( >=dev-libs/libpcre-3.9-r2 )
76 python? ( >=dev-python/pygtk-2.11 )"
77 DEPEND="${RDEPEND}
78 >=dev-util/intltool-0.35
79 >=dev-util/pkgconfig-0.20
80 >=app-text/gnome-doc-utils-0.3.2"
81
82 DOCS="AUTHORS ChangeLog HACKING NEWS README"
83
84 pkg_setup() {
85 local extensions=""
86
87 extensions="actions auto-reload auto-scroller certificates \
88 error-viewer extensions-manager-ui gestures java-console \
89 livehttpheaders page-info permissions push-scroller \
90 select-stylesheet sessionsaver sidebar smart-bookmarks \
91 tab-groups tab-states"
92
93 use dbus && extensions="${extensions} rss"
94
95 use pcre && extensions="${extensions} adblock greasemonkey"
96
97 use python && extensions="${extensions} python-console favicon cc-license-viewer epilicious"
98 use python && use examples && extensions="${extensions} sample-python"
99
100 use examples && extensions="${extensions} sample sample-mozilla"
101
102 G2CONF="${G2CONF} --with-extensions=$(echo "${extensions}" | sed -e 's/[[:space:]]\+/,/g')"
103
104 if use xulrunner; then
105 G2CONF="${G2CONF} --with-gecko=xulrunner"
106 else
107 G2CONF="${G2CONF} --with-gecko=firefox"
108 fi
109 }
110
111 src_unpack() {
112 gnome2_src_unpack
113
114 # disable pyc compiling
115 mv py-compile py-compile.orig
116 ln -s $(type -P true) py-compile
117
118 # Don't remove sessionsaver, please. -dang
119 epatch "${FILESDIR}"/${PN}-2.21.92-sessionsaver-v4.patch.gz
120 echo "extensions/sessionsaver/ephy-sessionsaver-extension.c" >> po/POTFILES.in
121 AT_M4DIR="m4" eautoreconf
122 }
123
124 pkg_postinst() {
125 gnome2_pkg_postinst
126
127 if use python; then
128 python_version
129 python_mod_optimize "${ROOT}"/usr/$(get_libdir)/epiphany/${MY_MAJORV}/extensions
130 fi
131 }
132
133 pkg_postrm() {
134 gnome2_pkg_postrm
135
136 if use python; then
137 python_version
138 python_mod_cleanup /usr/$(get_libdir)/epiphany/${MY_MAJORV}/extensions
139 fi
140 }
141
142
143
144 --
145 gentoo-commits@l.g.o mailing list