dev-ros/laser_proc: fix build
authorAlexis Ballier <aballier@gentoo.org>
Wed, 11 Apr 2018 18:13:10 +0000 (20:13 +0200)
committerAlexis Ballier <aballier@gentoo.org>
Wed, 11 Apr 2018 18:13:21 +0000 (20:13 +0200)
Closes: https://bugs.gentoo.org/652978
Package-Manager: Portage-2.3.28, Repoman-2.3.9

dev-ros/laser_proc/files/pluginlib.patch [new file with mode: 0644]
dev-ros/laser_proc/laser_proc-0.1.4-r1.ebuild

diff --git a/dev-ros/laser_proc/files/pluginlib.patch b/dev-ros/laser_proc/files/pluginlib.patch
new file mode 100644 (file)
index 0000000..cf34946
--- /dev/null
@@ -0,0 +1,20 @@
+From 2d81f874dc4f2a78d66284f3f32d6efe0bace4e3 Mon Sep 17 00:00:00 2001
+From: Mikael Arguedas <mikael@osrfoundation.org>
+Date: Thu, 26 Oct 2017 18:11:55 -0700
+Subject: [PATCH] update to use non deprecated pluginlib macro
+
+---
+ src/LaserProcNodelet.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/LaserProcNodelet.cpp b/src/LaserProcNodelet.cpp
+index 177d088..5e07e39 100644
+--- a/src/LaserProcNodelet.cpp
++++ b/src/LaserProcNodelet.cpp
+@@ -57,5 +57,5 @@ class LaserProcNodelet : public nodelet::Nodelet
+ }
+ #include <pluginlib/class_list_macros.h>
+-PLUGINLIB_DECLARE_CLASS(laser_proc, LaserProcNodelet, laser_proc::LaserProcNodelet, nodelet::Nodelet);
++PLUGINLIB_EXPORT_CLASS(laser_proc::LaserProcNodelet, nodelet::Nodelet)
index daae664dcaa5fea387c63e5454c47eb19bf10274..56bf959350e3e7d7aeada3c550988293a4fb1674 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -22,3 +22,4 @@ RDEPEND="
        dev-libs/boost:=
 "
 DEPEND="${RDEPEND}"
+PATCHES=( "${FILESDIR}/pluginlib.patch" )