diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-02-08 07:44:00 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-02-09 17:46:34 +0100 |
commit | 356f6374649b2ed2cfd4d62729d1d21f49adb04f (patch) | |
tree | 74f7e16f23a1678f2b3c0649b7ee2b0274b5a5c8 /media-video/openshot/openshot-2.4.4-r1.ebuild | |
parent | media-sound/picard: Switch to PYTHON_MULTI_USEDEP API (diff) | |
download | gentoo-356f6374649b2ed2cfd4d62729d1d21f49adb04f.tar.gz gentoo-356f6374649b2ed2cfd4d62729d1d21f49adb04f.tar.bz2 gentoo-356f6374649b2ed2cfd4d62729d1d21f49adb04f.zip |
media-video/openshot: Switch to PYTHON_MULTI_USEDEP API
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'media-video/openshot/openshot-2.4.4-r1.ebuild')
-rw-r--r-- | media-video/openshot/openshot-2.4.4-r1.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/media-video/openshot/openshot-2.4.4-r1.ebuild b/media-video/openshot/openshot-2.4.4-r1.ebuild new file mode 100644 index 000000000000..cf2c948c325c --- /dev/null +++ b/media-video/openshot/openshot-2.4.4-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_REQ_USE=xml +DISTUTILS_SINGLE_IMPL=1 + +inherit distutils-r1 xdg + +MY_PN="${PN}-qt" + +DESCRIPTION="Free, open-source, non-linear video editor to create and edit videos and movies" +HOMEPAGE="https://www.openshot.org/" +SRC_URI="https://github.com/OpenShot/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="1" +KEYWORDS="amd64 x86" +IUSE="doc" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/httplib2[${PYTHON_MULTI_USEDEP}] + dev-python/PyQt5[${PYTHON_MULTI_USEDEP},gui,svg,webkit,widgets] + dev-python/pyzmq[${PYTHON_MULTI_USEDEP}] + dev-python/requests[${PYTHON_MULTI_USEDEP}] + ') + >=media-libs/libopenshot-0.2.3[python,${PYTHON_SINGLE_USEDEP}] +" +BDEPEND=" + $(python_gen_cond_dep ' + doc? ( dev-python/sphinx[${PYTHON_MULTI_USEDEP}] ) + ') +" + +S="${WORKDIR}/${MY_PN}-${PV}" + +src_prepare() { + distutils-r1_python_prepare_all + # prevent setup.py from trying to update MIME databases + sed -i 's/^ROOT =.*/ROOT = False/' setup.py || die +} + +python_compile_all() { + use doc && emake -C doc html +} + +python_install_all() { + use doc && local HTML_DOCS=( doc/_build/html/. ) + distutils-r1_python_install_all +} |