blob: 6c24b68400f570c1d8c12ae9e64a51096d21ceb7 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
SCM=""
if [ "${PV#9999}" != "${PV}" ] ; then
SCM="git-r3"
EGIT_REPO_URI="https://github.com/introlab/rtabmap"
fi
inherit ${SCM} cmake-utils multilib
if [ "${PV#9999}" != "${PV}" ] ; then
KEYWORDS=""
SRC_URI=""
else
KEYWORDS="~amd64"
SRC_URI="https://github.com/introlab/rtabmap/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${P}"
fi
DESCRIPTION="Real-Time Appearance-Based Mapping (RGB-D Graph SLAM)"
HOMEPAGE="http://introlab.github.io/rtabmap/"
LICENSE="BSD"
SLOT="0"
IUSE="examples ieee1394 openni2 qt5"
RDEPEND="
media-libs/opencv:=[qt5(-)?]
sci-libs/pcl:=[openni,vtk,qt5(-)?]
sci-libs/vtk:=[qt5(-)?]
sys-libs/zlib
sci-libs/octomap:=
dev-libs/boost:=
ieee1394? ( media-libs/libdc1394 )
openni2? ( dev-libs/OpenNI2 )
qt5? (
dev-qt/qtwidgets:5
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtsvg:5
)
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_configure() {
local mycmakeargs=(
"-DWITH_QT=$(usex qt5 ON OFF)"
"-DWITH_DC1394=$(usex ieee1394 ON OFF)"
"-DWITH_OPENNI2=$(usex openni2 ON OFF)"
"-DBUILD_EXAMPLES=$(usex examples ON OFF)"
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
# Needed since we force ros crawling to be done only in
# /usr/share/ros_packages/
insinto /usr/share/ros_packages/${PN}
doins "${ED}/usr/share/${PN}/package.xml"
}
|