Gentoo Archives: gentoo-commits

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