Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ros/hector_mapping/, dev-ros/hector_mapping/files/
Date: Wed, 28 Aug 2019 17:24:09
Message-Id: 1567013035.00d9a1c67ed21365368464b9ff9738ce68620b34.aballier@gentoo
1 commit: 00d9a1c67ed21365368464b9ff9738ce68620b34
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 28 17:19:22 2019 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 28 17:23:55 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00d9a1c6
7
8 dev-ros/hector_mapping: fix build with boost 1.70
9
10 Package-Manager: Portage-2.3.73, Repoman-2.3.17
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-ros/hector_mapping/files/boost170.patch | 13 +++++++++++++
14 dev-ros/hector_mapping/hector_mapping-0.3.5.ebuild | 1 +
15 2 files changed, 14 insertions(+)
16
17 diff --git a/dev-ros/hector_mapping/files/boost170.patch b/dev-ros/hector_mapping/files/boost170.patch
18 new file mode 100644
19 index 00000000000..89bc05d2f7d
20 --- /dev/null
21 +++ b/dev-ros/hector_mapping/files/boost170.patch
22 @@ -0,0 +1,13 @@
23 +Index: hector_mapping/CMakeLists.txt
24 +===================================================================
25 +--- hector_mapping.orig/CMakeLists.txt
26 ++++ hector_mapping/CMakeLists.txt
27 +@@ -7,7 +7,7 @@ project(hector_mapping)
28 + find_package(catkin REQUIRED COMPONENTS roscpp nav_msgs visualization_msgs tf message_filters laser_geometry tf_conversions message_generation)
29 +
30 + ## System dependencies are found with CMake's conventions
31 +-find_package(Boost REQUIRED COMPONENTS thread signals)
32 ++find_package(Boost REQUIRED COMPONENTS thread)
33 + include_directories(${Boost_INCLUDE_DIRS})
34 +
35 + # Find Eigen3 (from http://wiki.ros.org/jade/Migration)
36
37 diff --git a/dev-ros/hector_mapping/hector_mapping-0.3.5.ebuild b/dev-ros/hector_mapping/hector_mapping-0.3.5.ebuild
38 index 4e49dd7e8a0..fbcf32d1686 100644
39 --- a/dev-ros/hector_mapping/hector_mapping-0.3.5.ebuild
40 +++ b/dev-ros/hector_mapping/hector_mapping-0.3.5.ebuild
41 @@ -26,3 +26,4 @@ RDEPEND="
42 "
43 DEPEND="${RDEPEND}
44 dev-cpp/eigen:3"
45 +PATCHES=( "${FILESDIR}/boost170.patch" )