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/image_view/files/, dev-ros/image_view/
Date: Wed, 28 Aug 2019 17:02:17
Message-Id: 1567011705.cd6af72137f80578bb6d5c1863e168f779488f08.aballier@gentoo
1 commit: cd6af72137f80578bb6d5c1863e168f779488f08
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 28 16:31:51 2019 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 28 17:01:45 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd6af721
7
8 dev-ros/image_view: 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/image_view/files/boost170.patch | 13 +++++++++++++
14 dev-ros/image_view/image_view-1.12.23.ebuild | 3 ++-
15 2 files changed, 15 insertions(+), 1 deletion(-)
16
17 diff --git a/dev-ros/image_view/files/boost170.patch b/dev-ros/image_view/files/boost170.patch
18 new file mode 100644
19 index 00000000000..ab52d89c5fa
20 --- /dev/null
21 +++ b/dev-ros/image_view/files/boost170.patch
22 @@ -0,0 +1,13 @@
23 +Index: image_view/CMakeLists.txt
24 +===================================================================
25 +--- image_view.orig/CMakeLists.txt
26 ++++ image_view/CMakeLists.txt
27 +@@ -5,7 +5,7 @@ find_package(catkin REQUIRED COMPONENTS
28 + generate_dynamic_reconfigure_options(cfg/ImageView.cfg)
29 +
30 + catkin_package(CATKIN_DEPENDS dynamic_reconfigure)
31 +-find_package(Boost REQUIRED COMPONENTS signals thread)
32 ++find_package(Boost REQUIRED COMPONENTS thread)
33 + find_package(OpenCV REQUIRED)
34 +
35 + include_directories(${Boost_INCLUDE_DIRS}
36
37 diff --git a/dev-ros/image_view/image_view-1.12.23.ebuild b/dev-ros/image_view/image_view-1.12.23.ebuild
38 index 6835689f080..ef3403e5342 100644
39 --- a/dev-ros/image_view/image_view-1.12.23.ebuild
40 +++ b/dev-ros/image_view/image_view-1.12.23.ebuild
41 @@ -1,4 +1,4 @@
42 -# Copyright 1999-2018 Gentoo Foundation
43 +# Copyright 1999-2019 Gentoo Authors
44 # Distributed under the terms of the GNU General Public License v2
45
46 EAPI=5
47 @@ -31,3 +31,4 @@ RDEPEND="
48 dev-ros/std_srvs[${CATKIN_MESSAGES_CXX_USEDEP}]
49 "
50 DEPEND="${RDEPEND}"
51 +PATCHES=( "${FILESDIR}/boost170.patch" )