blob: 394219f80d7887e4423bcd40150849c3a02a3aa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany-extensions/epiphany-extensions-2.20.3.ebuild,v 1.6 2008/03/14 17:28:52 armin76 Exp $
WANT_AUTOMAKE="1.10"
inherit eutils gnome2 autotools python versionator
DESCRIPTION="Extensions for the Epiphany web browser"
HOMEPAGE="http://www.gnome.org/projects/epiphany/extensions.html"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha ~amd64 ~hppa ia64 ~ppc sparc ~x86"
IUSE="pcre python xulrunner"
RDEPEND=">=www-client/epiphany-2.20
>=dev-libs/libxml2-2.6
>=dev-libs/glib-2.12
>=x11-libs/gtk+-2.11.6
gnome-base/gconf
>=gnome-base/libglade-2
app-text/opensp
xulrunner? ( =net-libs/xulrunner-1.8* )
!xulrunner? ( =www-client/mozilla-firefox-2* )
pcre? ( >=dev-libs/libpcre-3.9-r2 )
>=dev-libs/dbus-glib-0.71
python? ( >=dev-python/pygtk-2.11 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9
>=app-text/gnome-doc-utils-0.3.2
>=dev-util/intltool-0.35"
DOCS="AUTHORS ChangeLog HACKING NEWS README"
MY_MAJORV=$(get_version_component_range 1-2)
src_unpack() {
gnome2_src_unpack
# gnome bug #?
epatch "${FILESDIR}"/${PN}-2.18.0-sessionsaver-v4.patch.gz
echo "extensions/epilicious/progress.py" >> po/POTFILES.in
echo "extensions/sessionsaver/ephy-sessionsaver-extension.c" >> po/POTFILES.in
# disable pyc compiling
mv py-compile py-compile.orig
ln -s $(type -P true) py-compile
AT_M4DIR="m4" eautoreconf
}
pkg_setup() {
local extensions="actions auto-reload auto-scroller certificates
error-viewer extensions-manager-ui gestures java-console
livehttpheaders page-info permissions push-scroller rss
select-stylesheet sessionsaver sidebar smart-bookmarks tab-groups
tab-states"
use pcre && extensions="${extensions} greasemonkey adblock"
use python && extensions="${extensions} python-console favicon
cc-license-viewer epilicious"
local list_exts=""
for ext in $extensions; do
[ "x${list_exts}" != "x" ] && list_exts="${list_exts},"
list_exts="${list_exts}${ext}"
done
G2CONF="${G2CONF} --with-extensions=${list_exts}"
if use xulrunner; then
G2CONF="${G2CONF} --with-gecko=xulrunner"
else
G2CONF="${G2CONF} --with-gecko=firefox"
fi
}
pkg_postinst() {
gnome2_pkg_postinst
if use python; then
python_version
python_mod_optimize /usr/$(get_libdir)/epiphany/${MY_MAJORV}/extensions
fi
}
pkg_postrm() {
gnome2_pkg_postrm
if use python; then
python_version
python_mod_cleanup /usr/$(get_libdir)/epiphany/${MY_MAJORV}/extensions
fi
}
|