diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-06-07 23:54:33 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-06-07 23:54:33 +0000 |
commit | 3544e6ea548484b53b03c845031d6ad2919405ec (patch) | |
tree | e387a3f2a8fc39acdc233ae77819a9388ecadb55 /dev-python/pywebkitgtk | |
parent | Stable for HPPA (bug #272966). (diff) | |
download | gentoo-2-3544e6ea548484b53b03c845031d6ad2919405ec.tar.gz gentoo-2-3544e6ea548484b53b03c845031d6ad2919405ec.tar.bz2 gentoo-2-3544e6ea548484b53b03c845031d6ad2919405ec.zip |
Version bump. Fix building with with Python 2.6 (bug #265649).
(Portage version: 13634-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pywebkitgtk')
-rw-r--r-- | dev-python/pywebkitgtk/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/pywebkitgtk/pywebkitgtk-1.1.5.ebuild | 34 |
2 files changed, 42 insertions, 2 deletions
diff --git a/dev-python/pywebkitgtk/ChangeLog b/dev-python/pywebkitgtk/ChangeLog index b34d790990d4..1df7a2f3256d 100644 --- a/dev-python/pywebkitgtk/ChangeLog +++ b/dev-python/pywebkitgtk/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/pywebkitgtk -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pywebkitgtk/ChangeLog,v 1.1 2008/12/07 15:54:20 neurogeek Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pywebkitgtk/ChangeLog,v 1.2 2009/06/07 23:54:33 arfrever Exp $ + +*pywebkitgtk-1.1.5 (07 Jun 2009) + + 07 Jun 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +pywebkitgtk-1.1.5.ebuild: + Version bump. Fix building with with Python 2.6 (bug #265649). *pywebkitgtk-1.0.2 (07 Dec 2008) diff --git a/dev-python/pywebkitgtk/pywebkitgtk-1.1.5.ebuild b/dev-python/pywebkitgtk/pywebkitgtk-1.1.5.ebuild new file mode 100644 index 000000000000..b04457f38179 --- /dev/null +++ b/dev-python/pywebkitgtk/pywebkitgtk-1.1.5.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pywebkitgtk/pywebkitgtk-1.1.5.ebuild,v 1.1 2009/06/07 23:54:33 arfrever Exp $ + +EAPI="2" + +NEED_PYTHON="2.4" + +inherit python + +DESCRIPTION="Python bindings for the WebKit GTK+ port." +HOMEPAGE="http://code.google.com/p/pywebkitgtk/" +SRC_URI="http://pywebkitgtk.googlecode.com/files/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-python/pygobject:2 + dev-python/pygtk:2 + dev-python/sexy-python + x11-libs/libsexy + dev-libs/libxslt + >=net-libs/webkit-gtk-1.1.5" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_install() { + python_need_rebuild + + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS MAINTAINERS NEWS README || die "dodoc failed" +} |