You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
PYTHON_COMPAT=( python2_7 )
|
|
|
|
inherit autotools-utils python-r1 virtualx
|
|
|
|
DESCRIPTION="Python bindings for the WebKit GTK+ port"
|
|
HOMEPAGE="https://github.com/jmalonzo/pywebkitgtk"
|
|
SRC_URI="https://github.com/jmalonzo/${PN}/archive/${PN^^}_${PV//./_}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc ~sparc x86"
|
|
IUSE="test"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
dev-python/pygobject:2[${PYTHON_USEDEP}]
|
|
dev-python/pygtk:2[${PYTHON_USEDEP}]
|
|
dev-libs/libxslt
|
|
>=net-libs/webkit-gtk-1.1.15:2"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
src_configure() {
|
|
local myeconfargs=( --disable-static )
|
|
python_foreach_impl autotools-utils_src_configure
|
|
}
|
|
|
|
src_compile() {
|
|
python_foreach_impl autotools-utils_src_compile
|
|
}
|
|
|
|
src_test() {
|
|
testing() {
|
|
local test st=0
|
|
for test in tests/test_*.py; do
|
|
PYTHONPATH="${BUILD_DIR}/.libs" "${PYTHON}" "${test}"
|
|
(( st |= $? ))
|
|
done
|
|
return ${st}
|
|
}
|
|
VIRTUALX_COMMAND=testing python_foreach_impl virtualmake
|
|
}
|
|
|
|
src_install() {
|
|
local AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
|
|
local DOCS=( AUTHORS MAINTAINERS NEWS README )
|
|
python_foreach_impl autotools-utils_src_install
|
|
}
|