dev-ros/compressed_depth_image_transport: fix build with opencv4
authorAlexis Ballier <aballier@gentoo.org>
Tue, 10 Dec 2019 16:21:52 +0000 (17:21 +0100)
committerAlexis Ballier <aballier@gentoo.org>
Tue, 10 Dec 2019 17:34:47 +0000 (18:34 +0100)
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
dev-ros/compressed_depth_image_transport/compressed_depth_image_transport-1.9.5-r1.ebuild
dev-ros/compressed_depth_image_transport/files/ocv4.patch [new file with mode: 0644]

index d4ef693e9dd27d29f2ed102c0326195918b5d600..d3bccdcdc1cc4c1c5012f816f2611a4666926fb8 100644 (file)
@@ -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
@@ -18,8 +18,9 @@ RDEPEND="
        dev-ros/cv_bridge
        dev-ros/dynamic_reconfigure[${PYTHON_USEDEP}]
        dev-ros/image_transport
-       media-libs/opencv:=
+       >=media-libs/opencv-4:=
        dev-libs/boost:=
        dev-libs/console_bridge:=
 "
 DEPEND="${RDEPEND}"
+PATCHES=( "${FILESDIR}/ocv4.patch" )
diff --git a/dev-ros/compressed_depth_image_transport/files/ocv4.patch b/dev-ros/compressed_depth_image_transport/files/ocv4.patch
new file mode 100644 (file)
index 0000000..9d1c7d7
--- /dev/null
@@ -0,0 +1,13 @@
+Index: compressed_depth_image_transport/src/codec.cpp
+===================================================================
+--- compressed_depth_image_transport.orig/src/codec.cpp
++++ compressed_depth_image_transport/src/codec.cpp
+@@ -135,7 +135,7 @@ sensor_msgs::Image::Ptr decodeCompressed
+       // Decode raw image
+       try
+       {
+-        cv_ptr->image = cv::imdecode(imageData, CV_LOAD_IMAGE_UNCHANGED);
++        cv_ptr->image = cv::imdecode(imageData, cv::IMREAD_UNCHANGED);
+       }
+       catch (cv::Exception& e)
+       {