blob: c300450dabe72ace3c08dc331fbbe275d305fdd7 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.08-r1.ebuild,v 1.2 2008/09/16 14:03:23 jer Exp $
EAPI=1
inherit versionator multilib
MV=$(get_major_version)
MY_P=${PN}$(replace_all_version_separators "" ${PV})
DESCRIPTION="Lund Monte Carlo high-energy physics event generator"
HOMEPAGE="http://home.thep.lu.se/~torbjorn/Pythia.html"
SRC_URI="http://home.thep.lu.se/~torbjorn/${PN}${MV}/${MY_P}.tgz"
LICENSE="GPL-2"
SLOT="8"
KEYWORDS="~amd64 ~hppa ~sparc ~x86"
IUSE="doc examples +hepmc"
DEPEND="hepmc? ( sci-physics/hepmc )"
S="${WORKDIR}/${MY_P}"
src_compile() {
use hepmc && export HEPMCVERSION=2 HEPMCLOCATION=/usr
# homemade configure script creates a useless config.mk
rm -f config.mk && touch config.mk
emake SHAREDLIBS=yes || die "emake failed"
}
src_test() {
cd "${S}"/examples
# use emake for parallel instead of long runmains
emake \
$(ls main0{1..9}*.cc main1{0..5}*.cc | sed -e 's/.cc//') \
|| die "emake tests failed"
for i in main0{1..9}*.exe main1{0..5}*.exe; do
./${i} > ${i}.out || die "test ${i} failed"
done
if use hepmc; then
emake main31 main32 || die "emake tests for hepmc failed"
./main31.exe > main31.exe.out || die
./main32.exe main32.cmnd hepmcout32.dat > main32.exe.out || die
fi
emake clean && rm -f main*out
}
src_install() {
dolib.so lib/*so || die "shared lib install failed"
dolib.a lib/archive/* || die "static lib install failed"
insinto /usr/include/${PN}
doins include/* || die "headers install failed"
# xmldoc needed by root
insinto /usr/share/${PN}
doins -r xmldoc || die "xmldoc install failed"
echo PYTHIA8DATA=/usr/share/${PN}/xmldoc >> 99pythia8
doenvd 99pythia8
insinto /usr/share/doc/${PF}
dodoc GUIDELINES AUTHORS README
if use doc; then
doins worksheet.pdf || die "doc install failed"
mv htmldoc html
doins -r html || die "html doc install failed"
fi
if use examples; then
doins -r examples || die "examples install failed"
fi
}
|