2022-11-27 22:14:54 +01:00
|
|
|
# Copyright 2022 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
2023-04-20 08:56:56 +02:00
|
|
|
PYTHON_COMPAT=( python3_{9..11} )
|
2022-11-27 22:14:54 +01:00
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="Python binding for the freetype library"
|
|
|
|
HOMEPAGE="http://freetype-py.readthedocs.org"
|
|
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
|
|
|
|
|
|
|
|
LICENSE="BSD"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
|
|
|
|
DEPEND="media-libs/freetype:2"
|
|
|
|
RDEPEND="${DEPEND}"
|
2023-04-20 08:56:56 +02:00
|
|
|
BDEPEND="dev-python/setuptools-scm[${PYTHON_USEDEP}]
|
2022-11-27 22:14:54 +01:00
|
|
|
app-arch/unzip
|
|
|
|
"
|
|
|
|
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
distutils_enable_sphinx doc dev-python/sphinx_rtd_theme
|