You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-physics/rivet/rivet-2.6.0-r1.ebuild

81 lines
1.8 KiB

# 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
}