blob: 86388053ec7c21e62ca443316ae2724f7c015a64 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/orocos_kdl/orocos_kdl-9999.ebuild,v 1.2 2014/10/31 10:17:51 aballier Exp $
EAPI=5
SCM=""
if [ "${PV#9999}" != "${PV}" ] ; then
SCM="git-r3"
EGIT_REPO_URI="http://github.com/orocos/orocos_kinematics_dynamics"
fi
inherit ${SCM} cmake-utils
if [ "${PV#9999}" != "${PV}" ] ; then
KEYWORDS=""
SRC_URI=""
else
KEYWORDS="~amd64 ~arm"
SRC_URI="http://github.com/orocos/orocos_kinematics_dynamics/archive/v${PV}.tar.gz -> orocos_kinematics_dynamics-${PV}.tar.gz"
fi
DESCRIPTION="Kinematics and Dynamics Library (KDL)"
HOMEPAGE="http://www.orocos.org/kdl"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="doc test examples models"
RDEPEND="dev-cpp/eigen:3"
DEPEND="${RDEPEND}
test? ( dev-util/cppunit )
doc? ( app-doc/doxygen )"
REQUIRED_USE="examples? ( models )"
DOCS=( README )
if [ "${PV#9999}" != "${PV}" ] ; then
S=${WORKDIR}/${P}/orocos_kdl
else
S=${WORKDIR}/orocos_kinematics_dynamics-${PV}/orocos_kdl
fi
src_configure() {
local mycmakeargs=(
"$(cmake-utils_use_enable test TESTS)"
"$(cmake-utils_use_enable examples EXAMPLES)"
"-DBUILD_MODELS=$(usex models ON OFF)"
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
cd "${BUILD_DIR}"
use doc && emake docs
}
src_test() {
cd "${BUILD_DIR}"
emake check
}
src_install() {
cmake-utils_src_install
cd "${BUILD_DIR}"
use doc && dohtml -r doc/api/html/*
use examples && dobin "${BUILD_DIR}/examples/"{geometry,trajectory_example,chainiksolverpos_lma_demo}
}
|