blob: 39b91169a1622469e724fe88e998b53af454a1cb (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit cmake-utils multilib
DESCRIPTION="High Energy Physics C++ library"
HOMEPAGE="http://www.cern.ch/clhep"
SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz"
LICENSE="GPL-3 LGPL-3"
SLOT="2/${PV}"
KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
IUSE="doc static-libs test"
RDEPEND=""
DEPEND="${RDEPEND}
doc? ( virtual/latex-base )"
S="${WORKDIR}/${PV}/CLHEP"
src_prepare() {
# respect flags
sed -i -e 's:-O::g' cmake/Modules/ClhepVariables.cmake || die
# no batch mode to allow parallel building (bug #437482)
sed -i \
-e 's:-interaction=batchmode::g' \
cmake/Modules/ClhepBuildTex.cmake || die
# gentoo doc directory
sed -i \
-e "/DESTINATION/s:doc:share/doc/${PF}:" \
cmake/Modules/ClhepBuildTex.cmake */doc/CMakeLists.txt || die
# dont build test if not asked
if ! use test; then
sed -i \
-e '/add_subdirectory(test)/d' \
*/CMakeLists.txt || die
fi
}
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_enable test TESTING)
$(cmake-utils_use doc CLHEP_BUILD_DOCS)
)
DESTDIR="${ED}" cmake-utils_src_configure
use doc && MAKEOPTS+=" -j1"
}
src_install() {
cmake-utils_src_install
use static-libs || rm "${ED}"/usr/$(get_libdir)/*.a
}
|