diff options
author | Pacho Ramos <pacho@gentoo.org> | 2010-03-22 20:58:49 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2010-03-22 20:58:49 +0000 |
commit | 7f6bd1f0849d9e8974c1108a657432aeb4a9b8ef (patch) | |
tree | fd862b9ec5a4db75b319ecf0ed191a0a240ec3b4 /dev-python/gnome-python-extras | |
parent | HOMEPAGE corrected, #310303 (diff) | |
download | gentoo-2-7f6bd1f0849d9e8974c1108a657432aeb4a9b8ef.tar.gz gentoo-2-7f6bd1f0849d9e8974c1108a657432aeb4a9b8ef.tar.bz2 gentoo-2-7f6bd1f0849d9e8974c1108a657432aeb4a9b8ef.zip |
Drop old, fix bug 300437
(Portage version: 2.1.7.17/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/gnome-python-extras')
-rw-r--r-- | dev-python/gnome-python-extras/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/gnome-python-extras/gnome-python-extras-2.14.2-r1.ebuild | 75 |
2 files changed, 7 insertions, 76 deletions
diff --git a/dev-python/gnome-python-extras/ChangeLog b/dev-python/gnome-python-extras/ChangeLog index 75a8eef3c949..2c26ebedf833 100644 --- a/dev-python/gnome-python-extras/ChangeLog +++ b/dev-python/gnome-python-extras/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/gnome-python-extras # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-extras/ChangeLog,v 1.91 2010/03/22 20:52:38 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-extras/ChangeLog,v 1.92 2010/03/22 20:58:49 pacho Exp $ + + 22 Mar 2010; Pacho Ramos <pacho@gentoo.org> + -gnome-python-extras-2.14.2-r1.ebuild: + Dropping old 2.14 version since x86-fbsd can now use a newer version. This + also fixes bug 300437. Thanks to Lars Wendler and Alexis Ballier for their + help. *gnome-python-extras-2.19.1-r4 (22 Mar 2010) diff --git a/dev-python/gnome-python-extras/gnome-python-extras-2.14.2-r1.ebuild b/dev-python/gnome-python-extras/gnome-python-extras-2.14.2-r1.ebuild deleted file mode 100644 index 5c2bcf8a41d5..000000000000 --- a/dev-python/gnome-python-extras/gnome-python-extras-2.14.2-r1.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-extras/gnome-python-extras-2.14.2-r1.ebuild,v 1.16 2009/08/24 20:53:14 eva Exp $ - -NEED_PYTHON=2.4 -WANT_AUTOCONF=latest -WANT_AUTOMAKE=1.9 -inherit eutils gnome2 python virtualx autotools - -DESCRIPTION="GNOME 2 Bindings for Python" -HOMEPAGE="http://www.pygtk.org" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~x86-fbsd" -IUSE="doc firefox seamonkey xulrunner" - -RDEPEND=">=x11-libs/gtk+-2.4 - >=dev-libs/glib-2.6 - >=dev-python/gnome-python-2.10 - >=dev-python/pygtk-2.4 - =gnome-extra/gtkhtml-2* - xulrunner? ( =net-libs/xulrunner-1.8* ) - !xulrunner? ( firefox? ( =www-client/mozilla-firefox-2* ) ) - !xulrunner? ( !firefox? ( seamonkey? ( =www-client/seamonkey-1* ) ) ) - =gnome-extra/libgda-1* - >=app-text/gtkspell-2" - -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -DOCS="AUTHORS COPYING* ChangeLog INSTALL NEWS README" - -pkg_setup() { - # only controls linking, can't disable w/o a patch :) - if use xulrunner; then - G2CONF="${G2CONF} --with-gtkmozembed=xulrunner" - elif use firefox; then - G2CONF="${G2CONF} --with-gtkmozembed=firefox" - elif use seamonkey; then - G2CONF="${G2CONF} --with-gtkmozembed=seamonkey" - fi -} - -src_unpack() { - gnome2_src_unpack - - # change mozilla to seamonkey - sed -i -e 's:1.2b):1.0.0):;s:mozilla):seamonkey):' configure.ac - - eautoreconf -} - -src_test() { - Xmake check || die "tests failed" -} - -src_install() { - gnome2_src_install - - if use doc; then - insinto /usr/share/doc/${PF} - doins -r examples - fi -} - -pkg_postinst() { - python_version - python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0 -} - -pkg_postrm() { - python_version - python_mod_cleanup "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0" -} |