blob: f5fdbc8ddfb9d383eb6e9feed0b9bbb169367ee4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
#DISTUTILS_USE_SETUPTOOLS=no
PYTHON_COMPAT=( python3_{9..12} )
inherit distutils-r1
DESCRIPTION="Python package for the generation of encapsulated PostScript figures"
MY_PN="PyX"
MY_P=${MY_PN}-${PV}
HOMEPAGE="
https://github.com/pyx-project/pyx
https://pyx-project.org/
https://pypi.org/project/PyX/"
SRC_URI="https://github.com/pyx-project/${PN}/releases/download/${PV}/${MY_P}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="
dev-python/pillow[${PYTHON_USEDEP}]
virtual/tex-base
virtual/latex-base
dev-texlive/texlive-basic"
BDEPEND="${RDEPEND}
doc? (
$(python_gen_any_dep '
dev-python/sphinx[latex,${PYTHON_USEDEP}]
dev-python/sphinx_selective_exclude[${PYTHON_USEDEP}]
')
)"
PATCHES=( "${FILESDIR}"/pyx-0.14.1-unicode-latex.patch )
S="${WORKDIR}"/${MY_P}
python_check_deps() {
use doc || return 0
python_has_version "dev-python/sphinx[latex,${PYTHON_USEDEP}]" \
"dev-python/sphinx_selective_exclude[${PYTHON_USEDEP}]"
}
src_prepare() {
sed -i \
-e 's/^build_t1code=.*/build_t1code=1/' \
-e 's/^build_pykpathsea=.*/build_pykpathsea=1/' \
setup.cfg || die "setup.cfg fix failed"
distutils-r1_src_prepare
}
python_compile_all() {
if use doc; then
local -x VARTEXFONTS="${T}"/fonts
emake -C "${S}"/manual latexpdf
emake -C "${S}"/faq latexpdf
fi
}
python_install_all() {
use doc && dodoc manual/_build/latex/manual.pdf faq/_build/latex/pyxfaq.pdf
distutils-r1_python_install_all
}
|