diff options
author | 2011-04-28 18:47:12 +0000 | |
---|---|---|
committer | 2011-04-28 18:47:12 +0000 | |
commit | 7a27901914d46edf6bda95d0f2a79297fd25f077 (patch) | |
tree | 3122701d23636cad354d685e126ec9f8f66d72b8 /www-client/epiphany-extensions | |
parent | Non-existant herd: desktop -> desktop-misc (diff) | |
download | gentoo-2-7a27901914d46edf6bda95d0f2a79297fd25f077.tar.gz gentoo-2-7a27901914d46edf6bda95d0f2a79297fd25f077.tar.bz2 gentoo-2-7a27901914d46edf6bda95d0f2a79297fd25f077.zip |
epiphany-2.26 was removed, so this should have been as well
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'www-client/epiphany-extensions')
-rw-r--r-- | www-client/epiphany-extensions/ChangeLog | 6 | ||||
-rw-r--r-- | www-client/epiphany-extensions/epiphany-extensions-2.26.1-r1.ebuild | 92 |
2 files changed, 5 insertions, 93 deletions
diff --git a/www-client/epiphany-extensions/ChangeLog b/www-client/epiphany-extensions/ChangeLog index 078d2b6f01a9..e164bc91d2d4 100644 --- a/www-client/epiphany-extensions/ChangeLog +++ b/www-client/epiphany-extensions/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-client/epiphany-extensions # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany-extensions/ChangeLog,v 1.146 2011/03/22 13:49:29 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany-extensions/ChangeLog,v 1.147 2011/04/28 18:47:12 halcy0n Exp $ + + 28 Apr 2011; Mark Loeser <halcy0n@gentoo.org> + -epiphany-extensions-2.26.1-r1.ebuild: + epiphany-2.26 was removed, so this should have been as well 22 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> epiphany-extensions-2.32.0.ebuild: diff --git a/www-client/epiphany-extensions/epiphany-extensions-2.26.1-r1.ebuild b/www-client/epiphany-extensions/epiphany-extensions-2.26.1-r1.ebuild deleted file mode 100644 index 856defa25ac7..000000000000 --- a/www-client/epiphany-extensions/epiphany-extensions-2.26.1-r1.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# 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.26.1-r1.ebuild,v 1.9 2011/03/21 19:48:09 nirbheek Exp $ - -EAPI="2" - -inherit autotools eutils gnome2 python versionator - -MY_MAJORV=$(get_version_component_range 1-2) - -DESCRIPTION="Extensions for the Epiphany web browser" -HOMEPAGE="http://www.gnome.org/projects/epiphany/extensions.html" -SRC_URI="${SRC_URI} mirror://gentoo/${PN}-2.21.92-sessionsaver-v4.patch.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="ppc64" -IUSE="dbus examples pcre python" - -RDEPEND="=www-client/epiphany-${MY_MAJORV}* - app-text/opensp - >=dev-libs/glib-2.15.5:2 - >=gnome-base/gconf-2.0:2 - >=dev-libs/libxml2-2.6:2 - >=x11-libs/gtk+-2.11.6:2 - >=gnome-base/libglade-2:2.0 - =net-libs/xulrunner-1.9* - dbus? ( >=dev-libs/dbus-glib-0.34 ) - pcre? ( >=dev-libs/libpcre-3.9-r2 ) - python? ( >=dev-python/pygtk-2.11:2 )" -DEPEND="${RDEPEND} - gnome-base/gnome-common - >=dev-util/intltool-0.40 - >=dev-util/pkgconfig-0.20 - >=app-text/gnome-doc-utils-0.3.2" - -DOCS="AUTHORS ChangeLog HACKING NEWS README" - -pkg_setup() { - local extensions="" - - extensions="actions auto-reload auto-scroller certificates \ - error-viewer extensions-manager-ui gestures \ - livehttpheaders page-info permissions push-scroller \ - select-stylesheet sessionsaver sidebar smart-bookmarks \ - tab-groups tab-states" - - use dbus && extensions="${extensions} rss" - -# java-console cannot build against xul-1.9.2, see bug #302929 -# use java && extensions="${extensions} java-console" - - use pcre && extensions="${extensions} adblock greasemonkey" - - use python && extensions="${extensions} python-console favicon cc-license-viewer epilicious" - use python && use examples && extensions="${extensions} sample-python" - - use examples && extensions="${extensions} sample sample-mozilla" - - G2CONF="${G2CONF} --with-extensions=$(echo "${extensions}" | sed -e 's/[[:space:]]\+/,/g')" - - G2CONF="${G2CONF} --with-gecko=libxul-embedding --disable-maintainer-mode" -} - -src_prepare() { - # disable pyc compiling - mv py-compile py-compile.orig - ln -s $(type -P true) py-compile - - # Don't remove sessionsaver, please. -dang - epatch "${WORKDIR}"/${PN}-2.21.92-sessionsaver-v4.patch - echo "extensions/sessionsaver/ephy-sessionsaver-extension.c" >> po/POTFILES.in - - # Fix building with libtool-1 bug #257337 - rm m4/lt* m4/libtool.m4 - - intltoolize --force --copy --automake || die "intltoolize failed" - eautoreconf -} - -pkg_postinst() { - gnome2_pkg_postinst - - if use python; then - python_mod_optimize /usr/$(get_libdir)/epiphany/${MY_MAJORV}/extensions - fi -} - -pkg_postrm() { - gnome2_pkg_postrm - python_mod_cleanup /usr/$(get_libdir)/epiphany/${MY_MAJORV}/extensions -} |