blob: a30645a6388dd78f62a14e247de1bfb0440b4f1a (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
inherit bash-completion-r1 python-single-r1 optfeature
DESCRIPTION="Yet more Objects for (High Energy Physics) Data Analysis"
HOMEPAGE="https://yoda.hepforge.org/"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/hepcedar/yoda"
else
SRC_URI="https://yoda.hepforge.org/downloads?f=${P^^}.tar.bz2 -> ${P^^}.tar.bz2"
S="${WORKDIR}/${P^^}"
KEYWORDS="~amd64"
fi
LICENSE="GPL-3"
SLOT="0/${PV}"
IUSE="root test +python +zlib"
RESTRICT="!test? ( test )"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} ) root? ( python )"
RDEPEND="
root? ( sci-physics/root:=[${PYTHON_SINGLE_USEDEP}] )
python? ( ${PYTHON_DEPS} )
zlib? ( sys-libs/zlib )
"
DEPEND="${RDEPEND}"
BDEPEND="
python? (
$(python_gen_cond_dep '
>=dev-python/cython-0.29.24[${PYTHON_USEDEP}]
')
test? (
$(python_gen_cond_dep '
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/matplotlib[${PYTHON_USEDEP}]
')
)
)
"
pkg_setup() {
use python && python-single-r1_pkg_setup
}
src_configure() {
# we need to use the prefix cython here
econf --disable-static \
$(use_enable root) \
$(use_enable python pyext) \
$(use_with zlib zlib "${ESYSROOT}/usr") \
$(usex python CYTHON="${ESYSROOT}/usr/bin/cython")
}
src_test() {
# PYTESTS and SHTESTS both require python tools
if use python; then
emake check
else
emake check PYTESTS= SHTESTS= NO_PYTHON=1
fi
}
src_install() {
default
if use python ; then
newbashcomp "${ED}"/etc/bash_completion.d/${PN}-completion ${PN}-config
bashcomp_alias ${PN}-config \
${PN}ls \
${PN}diff \
${PN}merge \
${PN}stack \
${PN}scale \
${PN}plot \
${PN}envelope \
${PN}cnv \
${PN}2root
rm "${ED}"/etc/bash_completion.d/${PN}-completion || die
python_optimize
fi
find "${ED}" -name '*.la' -delete || die
}
pkg_postinst() {
optfeature "latex plotting support" virtual/latex-base
optfeature "python plotting support" dev-python/matplotlib
}
|