blob: d560bebcdc7466cf080813b4910383ce3fcfa044 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# 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"
}
|