blob: 447083b06888b5b671eda1402227c03e90c6340e (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
# Sphinx doc building is not compatible with in-tree version of sphinx-bibtex:
# Extension error: You must configure the bibtex_bibfiles setting
#
# PYTHON_COMPAT=( python3_{8..10} )
# DOCS_BUILDER="sphinx"
# DOCS_DEPEND="
# dev-python/sphinxcontrib-bibtex
# dev-python/sphinx-rtd-theme
# "
inherit cmake xdg # python-any-r1 docs
DESCRIPTION="General purpose computer algebra system"
HOMEPAGE="https://www.yacas.org/"
SRC_URI="https://github.com/grzegorzmazur/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0/1"
KEYWORDS="~amd64 ~x86"
IUSE="+jupyter test"
RESTRICT="!test? ( test )"
# Upstream bundles MathJax-2.x
DEPEND="
jupyter? (
dev-libs/boost:=
dev-libs/jsoncpp:=
dev-libs/openssl:0=
dev-python/jupyter
net-libs/zeromq
>=net-libs/zmqpp-4.1.2
)
"
RDEPEND="${DEPEND}"
src_configure() {
# TODO: Unbundle CodeMirror
local mycmakeargs=(
-DENABLE_CYACAS_BENCHMARKS=OFF
-DENABLE_DOCS=OFF
# -DENABLE_DOCS=$(usex doc)
-DENABLE_JYACAS=OFF # requires manual install
-DENABLE_CYACAS_GUI=OFF # bug 926677
# use system version of mathjax instead
-DENABLE_CYACAS_GUI_PRIVATE_MATHJAX=OFF
-DMATHJAX_PATH="${EPREFIX}/usr/share/mathjax/MathJax.js"
-DENABLE_CYACAS_KERNEL=$(usex jupyter)
-DENABLE_CYACAS_UNIT_TESTS=$(usex test)
)
cmake_src_configure
}
|