blob: a449b62bc9eda1c108ff0b80f28a245c2019d4d9 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit cmake-utils versionator
if [[ ${PV} == *9999* ]]; then
inherit subversion
ESVN_REPO_URI="https://svn.code.sf.net/p/${PN}/code/trunk"
ESVN_PROJECT="${PN}.${PV}"
KEYWORDS=""
else
# .zip-snapshot can be recreated by visiting
# http://sourceforge.net/p/${PN}/code/${COMMIT}/tarball?path=/tags/v$(replace_all_version_separators '-')
TAG_VER=${PN}-code-1688-tags-v$(replace_all_version_separators '-')
#SRC_URI="http://sourceforge.net/code-snapshots/svn/g/ge/genfit/code/${TAG_VER}.zip"
SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${TAG_VER}.zip"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
S=${WORKDIR}/${TAG_VER}
fi
DESCRIPTION="Generic toolkit for track reconstruction in physics experiments"
HOMEPAGE="http://genfit.sourceforge.net/Main.html"
LICENSE="LGPL-3"
SLOT="0"
IUSE="doc examples"
RDEPEND="
sci-physics/root:=
dev-libs/boost:="
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen[dot] )"
src_compile() {
cmake-utils_src_compile
use doc && cmake-utils_src_compile doc
use examples && cmake-utils_src_compile tests
}
src_install() {
cmake-utils_src_install
if use examples; then
insinto /usr/share/doc/${PF}
doins -r "${BUILD_DIR}/bin"
doins test/makeGeom.C
doins test/README
fi
use doc && dohtml -r doc/html/*
echo
elog "Note that there is no support in this ebuild for RAVE yet,"
elog "which is also not in portage."
elog "It should be possible to use a local installation of RAVE"
elog "and set:"
elog " export RAVEPATH=<yourRaveDirectory>"
echo
}
|