gentoo/dev-python/pyotherside/pyotherside-1.5.4.ebuild
Göktürk Yüksek 240df455e1
dev-python/pyotherside: fix missing PYTHON_REQUIRED_USE
Package-Manager: Portage-2.3.67, Repoman-2.3.12
Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
2019-07-26 13:53:50 -04:00

42 lines
801 B
Bash

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_{5,6} )
inherit qmake-utils python-single-r1
DESCRIPTION="Asynchronous Python 3 Bindings for Qt 5"
HOMEPAGE="https://github.com/thp/pyotherside https://thp.io/2011/pyotherside/"
SRC_URI="https://github.com/thp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64"
REQUIRED_USE=${PYTHON_REQUIRED_USE}
# Requires active X display
RESTRICT="test"
RDEPEND="${PYTHON_DEPS}
dev-qt/qtcore:5
dev-qt/qtdeclarative:5
dev-qt/qtgui:5
dev-qt/qtsvg:5
"
DEPEND="${RDEPEND}"
src_prepare() {
sed -i -e "s/qtquicktests//" pyotherside.pro || die
default
}
src_configure() {
eqmake5
}
src_install() {
emake install INSTALL_ROOT="${D}"
}