Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
| Navigation: |
|
Lists:
gentoo-commits:
< Prev
By Thread
Next >
< Prev
By Date
Next >
|
| Headers: |
|
To:
|
gentoo-commits@g.o
|
|
From:
|
"Mart Raudsepp (leio)" <leio@g.o>
|
|
Subject:
|
gentoo-x86 commit in www-client/epiphany-extensions: ChangeLog epiphany-extensions-2.24.0.ebuild
|
|
Date:
|
Mon, 06 Oct 2008 06:37:25 +0000
|
|
leio 08/10/06 06:37:25
Modified: ChangeLog
Added: epiphany-extensions-2.24.0.ebuild
Log:
Version bump
(Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 x86_64)
Revision Changes Path
1.93 www-client/epiphany-extensions/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/epiphany-extensions/ChangeLog?rev=1.93&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/epiphany-extensions/ChangeLog?rev=1.93&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/epiphany-extensions/ChangeLog?r1=1.92&r2=1.93
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/epiphany-extensions/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog 25 Sep 2008 15:57:11 -0000 1.92
+++ ChangeLog 6 Oct 2008 06:37:24 -0000 1.93
@@ -1,6 +1,12 @@
# ChangeLog for www-client/epiphany-extensions
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany-extensions/ChangeLog,v 1.92 2008/09/25 15:57:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany-extensions/ChangeLog,v 1.93 2008/10/06 06:37:24 leio Exp $
+
+*epiphany-extensions-2.24.0 (06 Oct 2008)
+
+ 06 Oct 2008; Mart Raudsepp <leio@g.o>
+ +epiphany-extensions-2.24.0.ebuild:
+ Version bump
25 Sep 2008; Jeroen Roovers <jer@g.o>
epiphany-extensions-2.22.2.ebuild:
1.1 www-client/epiphany-extensions/epiphany-extensions-2.24.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/epiphany-extensions/epiphany-extensions-2.24.0.ebuild?rev=1.1&view=markup
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
Index: epiphany-extensions-2.24.0.ebuild
===================================================================
# 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.24.0.ebuild,v 1.1 2008/10/06 06:37:24 leio Exp $
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"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dbus examples pcre python"
RDEPEND=">=www-client/epiphany-${MY_MAJORV}
app-text/opensp
>=dev-libs/glib-2.15.5
>=gnome-base/gconf-2.0
>=dev-libs/libxml2-2.6
>=x11-libs/gtk+-2.11.6
>=gnome-base/libglade-2
=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 )"
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 java-console \
livehttpheaders page-info permissions push-scroller \
select-stylesheet sessionsaver sidebar smart-bookmarks \
tab-groups tab-states"
use dbus && extensions="${extensions} rss"
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"
}
src_unpack() {
gnome2_src_unpack
# disable pyc compiling
mv py-compile py-compile.orig
ln -s $(type -P true) py-compile
# Don't remove sessionsaver, please. -dang
epatch "${FILESDIR}"/${PN}-2.21.92-sessionsaver-v4.patch.gz
echo "extensions/sessionsaver/ephy-sessionsaver-extension.c" >> po/POTFILES.in
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
if use python; then
python_mod_cleanup /usr/$(get_libdir)/epiphany/${MY_MAJORV}/extensions
fi
}
|
|