blob: 273705fb73d0d5ed6baaf70f64df05d685c35d64 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit autotools bash-completion-r1 python-single-r1
DESCRIPTION="Toolkit for validation of Monte Carlo HEP event generators"
HOMEPAGE="http://rivet.hepforge.org/"
SRC_URI="http://www.hepforge.org/archive/${PN}/${P^}.tar.bz2
doc? ( https://rivet.hepforge.org/trac/export/8a05acecd26c18f368f4b748da2d5aa2db46be6c/doc/refs.bib )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc python static-libs"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="
dev-libs/boost:=
sci-libs/gsl:=
sci-physics/fastjet[plugins]
sci-physics/hepmc
sci-physics/yoda:=[python]
python? ( ${PYTHON_DEPS} )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen[latex,dot] )
python? ( dev-python/cython[${PYTHON_USEDEP}] )"
S="${WORKDIR}/${P^}"
pkg_setup() {
use python && python-single-r1_pkg_setup
}
src_unpack() {
unpack "${P^}.tar.bz2"
if use doc; then
# refs.bib is missing in tarball (reported upstream)
cp "${DISTDIR}"/refs.bib "${S}"/doc || die
fi
}
src_prepare() {
default
# Install rivet-manual.pdf to docdir intead of pkgdatadir
sed -i '/pkgdata_DATA = $(DOCS)/s/pkgdata/doc/' doc/Makefile.am || die
# Adjust shebangs of Python scripts
sed -i "s@^#! /usr/bin/env python@#!${EPREFIX}/usr/bin/python2@" bin/* || die
eautoreconf
}
src_configure() {
econf \
$(use_enable python pyext) \
$(use_enable static-libs static) \
$(use_enable doc doxygen) \
$(use_enable doc pdfmanual)
}
src_compile() {
use doc && export VARTEXFONTS="${T}/fonts"
default
if use doc; then
doxygen Doxyfile || die
HTML_DOCS+=( doxy/html/. )
fi
}
src_install() {
default
newbashcomp "${ED%/}"/usr/share/Rivet/rivet-completion rivet
rm -f "${ED%/}"/usr/share/Rivet/rivet-completion || die
}
|