blob: 8eac6ef22dd0905faa099b99892448200c61d78d (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake-utils
DESCRIPTION="High Energy Physics C++ library"
HOMEPAGE="http://proj-clhep.web.cern.ch/proj-clhep/"
SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/dist1/${P}.tgz"
LICENSE="GPL-3 LGPL-3"
SLOT="2/${PV}"
KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
IUSE="doc test threads"
BDEPEND="doc? ( app-doc/doxygen[latex] )"
S="${WORKDIR}/${PV}/CLHEP"
src_prepare() {
cmake-utils_src_prepare
# respect flags
sed -i -e 's:-O::g' cmake/Modules/ClhepVariables.cmake || die
# dont build test if not asked
if ! use test; then
sed -i \
-e '/add_subdirectory(test)/d' \
*/CMakeLists.txt || die
fi
# gentoo doc directory
if use doc; then
grep -rl 'share/doc/CLHEP' |
xargs sed -i \
-e "s:share/doc/CLHEP:share/doc/${PF}:" \
{.,*}/CMakeLists.txt || die
fi
}
src_configure() {
local mycmakeargs=(
-DCLHEP_BUILD_DOCS=$(usex doc)
-DCLHEP_SINGLE_THREAD=$(usex threads no yes)
)
DESTDIR="${ED}" cmake-utils_src_configure
}
|