45 lines
1 KiB
Bash
45 lines
1 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/pywebkitgtk/pywebkitgtk-1.1.8.ebuild,v 1.8 2012/05/04 15:12:15 patrick Exp $
|
|
|
|
EAPI="3"
|
|
PYTHON_DEPEND="2:2.6"
|
|
PYTHON_EXPORT_PHASE_FUNCTIONS="1"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="2.4 2.5 3.* 2.7-pypy-* *-jython"
|
|
|
|
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 ppc sparc x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-python/pygobject:2
|
|
dev-python/pygtk:2
|
|
dev-libs/libxslt
|
|
>=net-libs/webkit-gtk-1.1.15:2"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
src_configure() {
|
|
python_src_configure --disable-static
|
|
}
|
|
|
|
src_install() {
|
|
python_src_install
|
|
python_clean_installation_image
|
|
dodoc AUTHORS MAINTAINERS NEWS README || die "dodoc failed"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
python_mod_optimize webkit
|
|
}
|
|
|
|
pkg_postrm() {
|
|
python_mod_cleanup webkit
|
|
}
|