mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-25 07:08:13 -07:00
Signed-off-by: Alexander Puck Neuwirth <alexander@neuwirth-informatik.de> Closes: https://github.com/gentoo/gentoo/pull/36247 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
86 lines
1.7 KiB
Bash
86 lines
1.7 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
DOCS_BUILDER="doxygen"
|
|
DOCS_DEPEND="
|
|
dev-texlive/texlive-bibtexextra
|
|
dev-texlive/texlive-fontsextra
|
|
dev-texlive/texlive-fontutils
|
|
dev-texlive/texlive-latex
|
|
dev-texlive/texlive-latexextra
|
|
"
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
DISTUTILS_SINGLE_IMPL=1
|
|
DISTUTILS_EXT=1
|
|
inherit distutils-r1 docs autotools
|
|
|
|
MY_PV=$(ver_cut 1-3)
|
|
MY_PF=LHAPDF-${MY_PV}
|
|
|
|
DESCRIPTION="Les Houches Parton Density Function unified library"
|
|
HOMEPAGE="https://lhapdf.hepforge.org/"
|
|
SRC_URI="https://www.hepforge.org/downloads/lhapdf/${MY_PF}.tar.gz"
|
|
S="${WORKDIR}/${MY_PF}"
|
|
DOCS_DIR="${S}/doc"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~x86"
|
|
IUSE="examples"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
BDEPEND="
|
|
$(python_gen_cond_dep '
|
|
>=dev-python/cython-0.19[${PYTHON_USEDEP}]
|
|
')
|
|
"
|
|
RDEPEND="${PYTHON_DEPS}"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-egg.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
# Let cython reproduce this for more recent python versions
|
|
rm wrappers/python/lhapdf.cpp || die
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
local -x CONFIG_SHELL="${EPREFIX}/bin/bash"
|
|
econf \
|
|
--disable-static \
|
|
--enable-python
|
|
|
|
cd "${S}"/wrappers/python || die
|
|
distutils-r1_src_prepare
|
|
}
|
|
|
|
src_compile() {
|
|
emake all $(use doc && echo doxy)
|
|
|
|
cd "${S}"/wrappers/python || die
|
|
distutils-r1_src_compile
|
|
}
|
|
|
|
src_test() {
|
|
emake -C tests
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
use doc && dodoc -r doc/doxygen/.
|
|
use examples && dodoc examples/*.cc
|
|
|
|
cd "${S}"/wrappers/python || die
|
|
distutils-r1_src_install
|
|
rm -r "${D}/$(python_get_sitedir)"/*.egg-info || die
|
|
|
|
find "${ED}" -name '*.la' -delete || die
|
|
}
|