mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Done via: ``` git grep -l 'virtual/zlib ' | xargs sed -i -e 's@virtual/zlib @virtual/zlib:= @g' ``` with some manual reverts. Signed-off-by: Michał Górny <mgorny@gentoo.org>
119 lines
2.9 KiB
Bash
119 lines
2.9 KiB
Bash
# Copyright 2022-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{11..13} )
|
|
|
|
inherit python-single-r1 flag-o-matic autotools optfeature bash-completion-r1
|
|
|
|
MY_PN="Rivet"
|
|
MY_PF=${MY_PN}-${PV}
|
|
|
|
DESCRIPTION="Rivet toolkit (Robust Independent Validation of Experiment and Theory)"
|
|
HOMEPAGE="
|
|
https://rivet.hepforge.org/
|
|
https://gitlab.com/hepcedar/rivet
|
|
"
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://gitlab.com/hepcedar/rivet"
|
|
EGIT_BRANCH="main"
|
|
else
|
|
SRC_URI="https://www.hepforge.org/archive/rivet/${MY_PF}.tar.gz -> ${P}.tar.gz"
|
|
S=${WORKDIR}/${MY_PF}
|
|
KEYWORDS="~amd64"
|
|
fi
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="4"
|
|
IUSE="+zlib +python +highfive"
|
|
REQUIRED_USE="
|
|
python? ( ${PYTHON_REQUIRED_USE} )
|
|
"
|
|
|
|
RDEPEND="
|
|
dev-cpp/yaml-cpp
|
|
>=sci-physics/fastjet-3.4.0[plugins]
|
|
>=sci-physics/fastjet-contrib-1.048
|
|
>=sci-physics/hepmc-3.1.1:3=[-cm(-),gev(+)]
|
|
highfive? (
|
|
sci-libs/highfive
|
|
sci-libs/hdf5[cxx]
|
|
)
|
|
|
|
sci-libs/gsl
|
|
zlib? ( virtual/zlib:= )
|
|
python? (
|
|
${PYTHON_DEPS}
|
|
$(python_gen_cond_dep '
|
|
dev-python/matplotlib[${PYTHON_USEDEP}]
|
|
')
|
|
>=sci-physics/yoda-2.1[${PYTHON_SINGLE_USEDEP}]
|
|
)
|
|
>=sci-physics/yoda-2.1[highfive(-)?]
|
|
!sci-physics/rivet:3
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
app-shells/bash
|
|
python? (
|
|
$(python_gen_cond_dep '
|
|
>=dev-python/cython-0.29.24[${PYTHON_USEDEP}]
|
|
')
|
|
)
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-4.1.0-lib64.patch # https://gitlab.com/hepcedar/rivet/-/merge_requests/1065
|
|
"${FILESDIR}"/${PN}-4.1.0-testsyoda.patch # https://gitlab.com/hepcedar/rivet/-/merge_requests/1056
|
|
"${FILESDIR}"/${PN}-4.1.0-testanalysis.patch # https://gitlab.com/hepcedar/rivet/-/issues/532
|
|
)
|
|
|
|
pkg_setup() {
|
|
use python && python-single-r1_pkg_setup
|
|
}
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
# Eigen complains about alignment (see https://gitlab.com/libeigen/eigen/-/issues/2523).
|
|
# does this affect more cpus?
|
|
replace-cpu-flags znver1 x86-64
|
|
# not posix compatible, only bash
|
|
CONFIG_SHELL=${ESYSROOT}/bin/bash econf \
|
|
$(use_with zlib zlib "${ESYSROOT}/usr") \
|
|
--with-hepmc3="${ESYSROOT}/usr" \
|
|
$(use_enable highfive h5) \
|
|
--with-yoda="${ESYSROOT}/usr" \
|
|
--with-fastjet="${ESYSROOT}/usr" \
|
|
--with-yaml-cpp="${EPREFIX}/usr" \
|
|
$(use_enable python pyext) \
|
|
$(usex python CYTHON="${ESYSROOT}/usr/bin/cython")
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
use python && python_optimize
|
|
find "${ED}" -name '*.la' -delete || die
|
|
if use python ; then
|
|
newbashcomp "${ED}"/etc/bash_completion.d/${PN}-completion ${PN}
|
|
bashcomp_alias ${PN} \
|
|
${PN}-config \
|
|
${PN}-build \
|
|
${PN}-cmphistos \
|
|
make-plots \
|
|
${PN}-mkhtml-tex \
|
|
${PN}-mkhtml
|
|
rm "${ED}"/etc/bash_completion.d/${PN}-completion || die
|
|
fi
|
|
}
|
|
|
|
pkg_postinstall() {
|
|
optfeature "latex plotting support" virtual/latex-base media-gfx/imagemagick app-text/ghostscript-gpl
|
|
optfeature "python plotting support" dev-python/matplotlib
|
|
}
|