mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-19 12:28:20 +01:00
32 lines
894 B
Bash
32 lines
894 B
Bash
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/pywebkitgtk/pywebkitgtk-1.0.2.ebuild,v 1.1 2008/12/07 15:54:20 neurogeek Exp $
|
|
|
|
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="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=dev-python/pygtk-2.12.1-r2
|
|
>=dev-python/sexy-python-0.1.9
|
|
>=x11-libs/libsexy-0.1.11
|
|
>=dev-libs/libxslt-1.1.24-r1
|
|
>=dev-python/pygobject-2.14.2
|
|
>=net-libs/webkit-gtk-0_p37894"
|
|
DEPEND="${RDEPEND}
|
|
virtual/python
|
|
>=dev-util/pkgconfig-0.23"
|
|
|
|
src_install() {
|
|
python_need_rebuild
|
|
|
|
emake DESTDIR="${D}" install || die "Install failed"
|
|
dodoc AUTHORS MAINTAINERS NEWS README || die "Installing docs failed"
|
|
}
|