diff options
-rw-r--r-- | sci-physics/lhapdf/Manifest | 1 | ||||
-rw-r--r-- | sci-physics/lhapdf/lhapdf-6.3.0.ebuild | 80 |
2 files changed, 81 insertions, 0 deletions
diff --git a/sci-physics/lhapdf/Manifest b/sci-physics/lhapdf/Manifest index 56058d468e3a..c992963b79a4 100644 --- a/sci-physics/lhapdf/Manifest +++ b/sci-physics/lhapdf/Manifest @@ -1 +1,2 @@ DIST LHAPDF-6.2.3.tar.gz 750659 BLAKE2B a16f67c69f41e96cdb5434cc53658c6b085b94c9ad06443fdfb49aa1de50eeb2a59aa41442a032c29b361bad4f749cef42499f3d16f2774efb0b399f889576e4 SHA512 167064a141f46e5c834d950690a989330b940acec62377b8b4c40e14665503cf7b4ddb79e05c71ebe1f801231192d951e294bec3944ec37b2bca484b2e5ce894 +DIST LHAPDF-6.3.0.tar.gz 770744 BLAKE2B 02b9fe3507b87c6f0c635ceb203304eb9b3ee8ac4d17c8b83578f8c05b78b17035b63b6d3d9a0b9fe3505a3daf8e9376fe25040b8826ea4976d2a717b1447eb9 SHA512 4a5aca6e2f06b59a44acc23ef76f1fae747f38e425803e7625cc68130da0c76d1e0d534b7b1867f09c86ee838d4f769d5097257170740db704c966d91c41f94b diff --git a/sci-physics/lhapdf/lhapdf-6.3.0.ebuild b/sci-physics/lhapdf/lhapdf-6.3.0.ebuild new file mode 100644 index 000000000000..f28072c4f40d --- /dev/null +++ b/sci-physics/lhapdf/lhapdf-6.3.0.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +DISTUTILS_USE_SETUPTOOLS=no +inherit distutils-r1 + +MY_PV=$(ver_cut 1-3) +MY_PF=LHAPDF-${MY_PV} + +DESCRIPTION="Les Houches Parton Density Function unified library" +HOMEPAGE="http://lhapdf.hepforge.org/" +SRC_URI="http://www.hepforge.org/archive/lhapdf/${MY_PF}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc examples python" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +RDEPEND=" + dev-libs/boost:0= + python? ( ${PYTHON_DEPS} )" +DEPEND="${RDEPEND}" +BDEPEND=" + doc? ( + app-doc/doxygen + dev-texlive/texlive-bibtexextra + dev-texlive/texlive-fontsextra + dev-texlive/texlive-fontutils + dev-texlive/texlive-latex + dev-texlive/texlive-latexextra + )" + +S="${WORKDIR}/${MY_PF}" + +src_configure() { + econf \ + --disable-static \ + $(use_enable python) + + if use python; then + cd "${S}"/wrappers/python || die + distutils-r1_src_prepare + fi +} + +src_compile() { + emake all $(use doc && echo doxy) + + if use python; then + cd "${S}"/wrappers/python || die + distutils-r1_src_compile + fi +} + +src_test() { + emake -C tests +} + +src_install() { + emake DESTDIR="${D}" install + use doc && dodoc -r doc/doxygen/. + use examples && doins examples/*.cc + + if use python; then + cd "${S}"/wrappers/python || die + distutils-r1_src_install + fi + + find "${ED}" -name '*.la' -delete || die +} + +pkg_postinst() { + elog "Download data files from:" + elog "http://www.hepforge.org/archive/${PN}/pdfsets/$(ver_cut 1-2)" + elog "and untar them into ${EPREFIX}/usr/share/LHAPDF" +} |