blob: 03e30f85b391ff466dd4d7be9c0d5ca91df93186 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_7 )
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() {
CONFIG_SHELL="${EPREFIX}/bin/bash" \
econf \
--disable-static \
$(use_enable python)
if use python; then
cd "${S}/wrappers/python" && distutils-r1_src_prepare
fi
}
src_compile() {
emake all $(use doc && echo doxy)
if use python; then
cd "${S}/wrappers/python" && distutils-r1_src_compile
fi
}
src_test() {
emake -C tests
}
src_install() {
emake DESTDIR="${D}" install
use doc && dodoc -r doc/doxygen/*
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins examples/*.cc
fi
if use python; then
cd "${S}/wrappers/python" && 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"
}
|