mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
78 lines
2.0 KiB
Bash
78 lines
2.0 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DOCS_BUILDER="sphinx"
|
|
DOCS_DIR="docs/source"
|
|
DOCS_DEPEND="
|
|
dev-python/furo
|
|
dev-python/jinja2-cli
|
|
dev-python/sphinx-copybutton
|
|
"
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{12..13} )
|
|
|
|
inherit distutils-r1 docs git-r3
|
|
|
|
DESCRIPTION="Animation engine for explanatory math videos"
|
|
HOMEPAGE="https://github.com/3b1b/manim https://pypi.org/project/manimgl/"
|
|
|
|
if [[ ${PV} == *9999* ]]; then
|
|
EGIT_REPO_URI="https://github.com/3b1b/manim.git"
|
|
else
|
|
SRC_URI="https://github.com/3b1b/manim/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
|
S="${WORKDIR}/manim-${PV}"
|
|
KEYWORDS="~amd64"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
RDEPEND="
|
|
dev-python/addict[${PYTHON_USEDEP}]
|
|
dev-python/appdirs[${PYTHON_USEDEP}]
|
|
dev-python/colour[${PYTHON_USEDEP}]
|
|
dev-python/diskcache[${PYTHON_USEDEP}]
|
|
>=dev-python/ipython-8.18.0[${PYTHON_USEDEP}]
|
|
dev-python/isosurfaces[${PYTHON_USEDEP}]
|
|
dev-python/fonttools[${PYTHON_USEDEP}]
|
|
>=dev-python/ManimPango-0.6.0[${PYTHON_USEDEP}]
|
|
dev-python/mapbox-earcut[${PYTHON_USEDEP}]
|
|
dev-python/matplotlib[${PYTHON_USEDEP}]
|
|
dev-python/moderngl[${PYTHON_USEDEP}]
|
|
dev-python/moderngl-window[${PYTHON_USEDEP}]
|
|
dev-python/numpy[${PYTHON_USEDEP}]
|
|
dev-python/pillow[${PYTHON_USEDEP}]
|
|
dev-python/pydub[${PYTHON_USEDEP}]
|
|
dev-python/pygments[${PYTHON_USEDEP}]
|
|
dev-python/pyopengl[${PYTHON_USEDEP}]
|
|
dev-python/pyperclip[${PYTHON_USEDEP}]
|
|
dev-python/pyyaml[${PYTHON_USEDEP}]
|
|
dev-python/rich[${PYTHON_USEDEP}]
|
|
dev-python/scipy[${PYTHON_USEDEP}]
|
|
dev-python/screeninfo[${PYTHON_USEDEP}]
|
|
dev-python/skia-pathops[${PYTHON_USEDEP}]
|
|
>=dev-python/svgelements-1.8.1[${PYTHON_USEDEP}]
|
|
dev-python/sympy[${PYTHON_USEDEP}]
|
|
dev-python/tqdm[${PYTHON_USEDEP}]
|
|
dev-python/validators[${PYTHON_USEDEP}]
|
|
app-text/texlive[extra]
|
|
media-video/ffmpeg
|
|
virtual/opengl
|
|
x11-libs/pango
|
|
"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
python_install_all() {
|
|
default
|
|
if use doc; then
|
|
docinto examples
|
|
dodoc example_scenes.py
|
|
dodoc docs/example.py
|
|
docompress -x /usr/share/doc/${PF}/examples
|
|
fi
|
|
}
|