Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/rtabmap/
Date: Tue, 28 Feb 2017 11:27:42
Message-Id: 1488281209.92641419e9cc5882cfa24df446a4b23ca50a1b90.aballier@gentoo
1 commit: 92641419e9cc5882cfa24df446a4b23ca50a1b90
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 09:35:05 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 11:26:49 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92641419
7
8 sci-libs/rtabmap: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 sci-libs/rtabmap/Manifest | 1 -
13 sci-libs/rtabmap/rtabmap-0.11.13.ebuild | 55 ---------------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/sci-libs/rtabmap/Manifest b/sci-libs/rtabmap/Manifest
17 index 6cf6795da0..30ae6d3a42 100644
18 --- a/sci-libs/rtabmap/Manifest
19 +++ b/sci-libs/rtabmap/Manifest
20 @@ -1,2 +1 @@
21 -DIST rtabmap-0.11.13.tar.gz 17744796 SHA256 683dce8656d41d1733ae534144360b3f106080f8da14492a8908d8317134eddb SHA512 648f6ba73b9d2d2d659fd07af6c8c7f502d450e64dcf189edc78e45adc92ba77dda0647a358d55d4c0556bc84334ab1d92b0809b392382ff7f3f2e067da24549 WHIRLPOOL 4a060274b1e8cad55afc8e3f54756d2b746b0170b56bd2f8746b01077ac6790fc6562879639aaeb63ad9b08af7d6e9c1771d75162e6dd9bada2a71ba9daf31c0
22 DIST rtabmap-0.11.14.tar.gz 18997635 SHA256 3ca1e46889fe91e83e0de56baa8c8121cc68e0efd1039bd2684323faa8a52b25 SHA512 0793dbe7e58857ef6b5d00296cfe45a2df69d89fac422d3c43d8b550588c500b53b7a0af05683517d40b56e6f7d2af6b9e0dbdbcb1899a49e9736745feee75ae WHIRLPOOL fed930d36bbfcb142a29d010207ece168cb2c8c99f73636bfa0f8bca6d7265dc09b76026715a4b23200ba268022c00be177e28059b7c3c7d83aeb0e4b8eaadcd
23
24 diff --git a/sci-libs/rtabmap/rtabmap-0.11.13.ebuild b/sci-libs/rtabmap/rtabmap-0.11.13.ebuild
25 deleted file mode 100644
26 index a4df9bc1b2..0000000000
27 --- a/sci-libs/rtabmap/rtabmap-0.11.13.ebuild
28 +++ /dev/null
29 @@ -1,55 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -SCM=""
37 -if [ "${PV#9999}" != "${PV}" ] ; then
38 - SCM="git-r3"
39 - EGIT_REPO_URI="https://github.com/introlab/rtabmap"
40 -fi
41 -
42 -inherit ${SCM} cmake-utils multilib
43 -
44 -if [ "${PV#9999}" != "${PV}" ] ; then
45 - KEYWORDS=""
46 - SRC_URI=""
47 -else
48 - KEYWORDS="~amd64"
49 - SRC_URI="https://github.com/introlab/rtabmap/archive/${PV}.tar.gz -> ${P}.tar.gz"
50 -fi
51 -
52 -DESCRIPTION="Real-Time Appearance-Based Mapping (RGB-D Graph SLAM)"
53 -HOMEPAGE="http://introlab.github.io/rtabmap/"
54 -LICENSE="BSD"
55 -SLOT="0"
56 -IUSE="examples ieee1394 openni2 qt5"
57 -
58 -RDEPEND="
59 - media-libs/opencv:=[qt5(-)?]
60 - sci-libs/pcl:=[openni,vtk]
61 - sci-libs/vtk:=[qt5(-)?]
62 - sys-libs/zlib
63 - sci-libs/octomap:=
64 - ieee1394? ( media-libs/libdc1394 )
65 - openni2? ( dev-libs/OpenNI2 )
66 - qt5? (
67 - dev-qt/qtwidgets:5
68 - dev-qt/qtcore:5
69 - dev-qt/qtgui:5
70 - dev-qt/qtsvg:5
71 - )
72 -"
73 -DEPEND="${RDEPEND}
74 - virtual/pkgconfig"
75 -
76 -src_configure() {
77 - local mycmakeargs=(
78 - "-DWITH_QT=$(usex qt5 ON OFF)"
79 - "-DWITH_DC1394=$(usex ieee1394 ON OFF)"
80 - "-DWITH_OPENNI2=$(usex openni2 ON OFF)"
81 - "-DBUILD_EXAMPLES=$(usex examples ON OFF)"
82 - )
83 - cmake-utils_src_configure
84 -}