From: Alexis Ballier Date: Thu, 29 Aug 2019 15:19:56 +0000 (+0200) Subject: dev-ros/visp_auto_tracker: fix build with boost 1.70 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=fafa94c5042835ead1588be9d365cf90da838d3f;p=gentoo.git dev-ros/visp_auto_tracker: 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/visp_auto_tracker/files/boost170.patch b/dev-ros/visp_auto_tracker/files/boost170.patch new file mode 100644 index 000000000000..47f04d4989a3 --- /dev/null +++ b/dev-ros/visp_auto_tracker/files/boost170.patch @@ -0,0 +1,13 @@ +Index: visp_auto_tracker/CMakeLists.txt +=================================================================== +--- visp_auto_tracker.orig/CMakeLists.txt ++++ visp_auto_tracker/CMakeLists.txt +@@ -36,7 +36,7 @@ find_package(catkin REQUIRED COMPONENTS + find_package(VISP) + + find_package(Boost REQUIRED +- COMPONENTS filesystem system signals regex date_time program_options thread) ++ COMPONENTS filesystem system regex date_time program_options thread) + + include_directories( + ${Boost_INCLUDE_DIRS} diff --git a/dev-ros/visp_auto_tracker/visp_auto_tracker-0.11.1.ebuild b/dev-ros/visp_auto_tracker/visp_auto_tracker-0.11.1.ebuild index a70745b7a6d2..dcd584eb2644 100644 --- a/dev-ros/visp_auto_tracker/visp_auto_tracker-0.11.1.ebuild +++ b/dev-ros/visp_auto_tracker/visp_auto_tracker-0.11.1.ebuild @@ -30,3 +30,5 @@ DEPEND="${RDEPEND}" if [ "${PV#9999}" = "${PV}" ] ; then S="${WORKDIR}/vision_visp-kinetic-${PV}/${ROS_SUBDIR}" fi + +PATCHES=( "${FILESDIR}/boost170.patch" )