From: Alexis Ballier Date: Thu, 29 Aug 2019 15:50:13 +0000 (+0200) Subject: dev-ros/laser_cb_detector: fix build with boost 1.70 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=4a20ff3457061f541893ea2a34320272fb172f39;p=gentoo.git dev-ros/laser_cb_detector: fix build with boost 1.70 Package-Manager: Portage-2.3.73, Repoman-2.3.17 Signed-off-by: Alexis Ballier --- diff --git a/dev-ros/laser_cb_detector/files/boost170.patch b/dev-ros/laser_cb_detector/files/boost170.patch new file mode 100644 index 000000000000..019a948be95c --- /dev/null +++ b/dev-ros/laser_cb_detector/files/boost170.patch @@ -0,0 +1,13 @@ +Index: laser_cb_detector/CMakeLists.txt +=================================================================== +--- laser_cb_detector.orig/CMakeLists.txt ++++ laser_cb_detector/CMakeLists.txt +@@ -1,7 +1,7 @@ + cmake_minimum_required(VERSION 2.8.3) + project(laser_cb_detector) + +-find_package(Boost REQUIRED signals thread) ++find_package(Boost REQUIRED thread) + find_package(catkin REQUIRED actionlib actionlib_msgs cv_bridge image_cb_detector message_filters roscpp settlerlib std_msgs) + + add_action_files(DIRECTORY action FILES Config.action) diff --git a/dev-ros/laser_cb_detector/laser_cb_detector-0.10.14.ebuild b/dev-ros/laser_cb_detector/laser_cb_detector-0.10.14.ebuild index 605a596b776e..888eec2019d8 100644 --- a/dev-ros/laser_cb_detector/laser_cb_detector-0.10.14.ebuild +++ b/dev-ros/laser_cb_detector/laser_cb_detector-0.10.14.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -27,4 +27,4 @@ RDEPEND=" dev-ros/settlerlib " DEPEND="${RDEPEND}" -PATCHES=( "${FILESDIR}/gcc6.patch" ) +PATCHES=( "${FILESDIR}/gcc6.patch" "${FILESDIR}/boost170.patch" )