# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 DESCRIPTION="TCG/CCG deck creation tool" HOMEPAGE="https://gitlab.com/xgqt/python-deckmaster/" if [[ ${PV} == *9999* ]] ; then inherit git-r3 EGIT_REPO_URI="https://gitlab.com/xgqt/python-${PN}.git" else SRC_URI="https://gitlab.com/xgqt/python-${PN}/-/archive/${PV}/python-${P}.tar.bz2" S="${WORKDIR}"/python-${P} KEYWORDS="~amd64 ~x86" fi LICENSE="GPL-3" SLOT="0" IUSE="doc" RDEPEND=" dev-python/PyQt5[${PYTHON_USEDEP}] dev-python/sqlalchemy[${PYTHON_USEDEP}] dev-python/requests[${PYTHON_USEDEP}] " BDEPEND=" ${RDEPEND} doc? ( app-text/doxygen ) " distutils_enable_tests pytest src_compile() { ( cd src/${PN} && distutils-r1_src_compile ) use doc && emake docs } src_install() { ( cd src/${PN} && distutils-r1_src_install ) emake APPLICATIONS="${ED}"/usr/share/applications install-desktop-deckmaster if use doc ; then dodoc -r docs/artifacts/{html,latex} doman docs/artifacts/man/man3/* fi }