diff options
author | Pacho Ramos <pacho@gentoo.org> | 2011-06-05 09:56:32 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2011-06-05 09:56:32 +0000 |
commit | 556c31fd1ee43c9692b561f445809120c2ad8cb3 (patch) | |
tree | 1b3fa1266f119f00be5d83845a5708ae48a87971 /www-client/epiphany-extensions/epiphany-extensions-2.32.0-r1.ebuild | |
parent | Version bump to 2.0.3. Drop older overshadowed versions. Fixes bug #359127. (diff) | |
download | historical-556c31fd1ee43c9692b561f445809120c2ad8cb3.tar.gz historical-556c31fd1ee43c9692b561f445809120c2ad8cb3.tar.bz2 historical-556c31fd1ee43c9692b561f445809120c2ad8cb3.zip |
Add support for adblock extension as reported by Jani Kananen in bug #370081, the problem was fixed by upstream in newer glib versions time ago, RDEPENDing then on glib version I have used to confirm the original problem went away. Remove old.
Package-Manager: portage-2.1.9.50/cvs/Linux x86_64
Diffstat (limited to 'www-client/epiphany-extensions/epiphany-extensions-2.32.0-r1.ebuild')
-rw-r--r-- | www-client/epiphany-extensions/epiphany-extensions-2.32.0-r1.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/www-client/epiphany-extensions/epiphany-extensions-2.32.0-r1.ebuild b/www-client/epiphany-extensions/epiphany-extensions-2.32.0-r1.ebuild new file mode 100644 index 000000000000..4df2de1af7fe --- /dev/null +++ b/www-client/epiphany-extensions/epiphany-extensions-2.32.0-r1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2011 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.32.0-r1.ebuild,v 1.1 2011/06/05 09:56:32 pacho Exp $ + +EAPI="3" +GCONF_DEBUG="yes" +GNOME2_LA_PUNT="yes" +PYTHON_DEPEND="2" + +inherit gnome2 python + +DESCRIPTION="Extensions for the Epiphany web browser" +HOMEPAGE="http://projects.gnome.org/epiphany/extensions.html" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="dbus examples pcre" + +RDEPEND=">=www-client/epiphany-2.30.0 + app-text/opensp + >=dev-libs/glib-2.28.7:2 + >=gnome-base/gconf-2.0:2 + >=dev-libs/libxml2-2.6:2 + >=x11-libs/gtk+-2.21.6:2 + >=net-libs/webkit-gtk-1.1:2 + + dbus? ( >=dev-libs/dbus-glib-0.34 ) + pcre? ( >=dev-libs/libpcre-3.9-r2 )" +DEPEND="${RDEPEND} + >=dev-util/intltool-0.40 + >=dev-util/pkgconfig-0.20 + >=app-text/gnome-doc-utils-0.3.2" +# eautoreconf dependencies: +# gnome-base/gnome-common + +# FIXME: broken extensions: +# FIXME: - session-saver ( https://bugzilla.gnome.org/show_bug.cgi?id=316245 ) + +pkg_setup() { + local extensions="" + extensions="actions auto-reload auto-scroller certificates \ + error-viewer extensions-manager-ui gestures html5tube \ + java-console livehttpheaders page-info permissions \ + push-scroller select-stylesheet \ + smart-bookmarks soup-fly tab-groups tab-states" + use dbus && extensions="${extensions} rss" + use pcre && extensions="${extensions} adblock greasemonkey" + use examples && extensions="${extensions} sample" + + G2CONF="${G2CONF} + --disable-maintainer-mode + --with-extensions=$(echo "${extensions}" | sed -e 's/[[:space:]]\+/,/g')" + DOCS="AUTHORS ChangeLog HACKING NEWS README" + + python_set_active_version 2 +} + +src_prepare() { + gnome2_src_prepare + python_convert_shebangs -r 2 . +} |