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/urdf/
Date: Fri, 26 Aug 2016 16:59:38
Message-Id: 1472230741.ba9013980f9231f205d6940acf9a62521f153baa.aballier@gentoo
1 commit: ba9013980f9231f205d6940acf9a62521f153baa
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 26 15:01:02 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 26 16:59:01 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba901398
7
8 dev-ros/urdf: forward port urdfdom fix
9
10 Package-Manager: portage-2.3.0
11
12 dev-ros/urdf/urdf-1.12.4.ebuild | 12 +++++++++---
13 1 file changed, 9 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-ros/urdf/urdf-1.12.4.ebuild b/dev-ros/urdf/urdf-1.12.4.ebuild
16 index e6cb39f..eb2263d 100644
17 --- a/dev-ros/urdf/urdf-1.12.4.ebuild
18 +++ b/dev-ros/urdf/urdf-1.12.4.ebuild
19 @@ -8,7 +8,7 @@ KEYWORDS="~amd64 ~arm"
20 ROS_SUBDIR=${PN}
21 PYTHON_COMPAT=( python2_7 )
22
23 -inherit ros-catkin
24 +inherit ros-catkin flag-o-matic
25
26 DESCRIPTION="C++ parser for the Unified Robot Description Format (URDF)"
27 LICENSE="BSD"
28 @@ -17,9 +17,9 @@ IUSE=""
29
30 RDEPEND="
31 dev-libs/boost:=[threads]
32 - dev-libs/urdfdom
33 + >=dev-libs/urdfdom-1
34 dev-libs/urdfdom_headers
35 - dev-ros/urdf_parser_plugin
36 + >=dev-ros/urdf_parser_plugin-1.12.3-r1
37 dev-ros/pluginlib
38 dev-ros/rosconsole_bridge
39 dev-ros/roscpp
40 @@ -28,3 +28,9 @@ RDEPEND="
41 DEPEND="${RDEPEND}
42 dev-ros/cmake_modules
43 test? ( dev-ros/rostest[${PYTHON_USEDEP}] dev-cpp/gtest )"
44 +PATCHES=( "${FILESDIR}/urdfdom1.patch" )
45 +
46 +src_configure() {
47 + append-cxxflags -std=c++11
48 + ros-catkin_src_configure
49 +}