From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DD3D71381F1 for ; Fri, 26 Aug 2016 16:59:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04E2A21C06B; Fri, 26 Aug 2016 16:59:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 149EC21C054 for ; Fri, 26 Aug 2016 16:59:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C07B340942 for ; Fri, 26 Aug 2016 16:59:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36B8B2471 for ; Fri, 26 Aug 2016 16:59:18 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1472230741.7595333bf8119fc107519cb561493011ce8207c7.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ros/collada_urdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ros/collada_urdf/collada_urdf-1.12.4.ebuild X-VCS-Directories: dev-ros/collada_urdf/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 7595333bf8119fc107519cb561493011ce8207c7 X-VCS-Branch: master Date: Fri, 26 Aug 2016 16:59:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fbac4149-0c6f-47e2-9982-876f769698a4 X-Archives-Hash: fb463dc8e364fa154ff47e799cc6c35c commit: 7595333bf8119fc107519cb561493011ce8207c7 Author: Alexis Ballier gentoo org> AuthorDate: Fri Aug 26 14:56:50 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Fri Aug 26 16:59:01 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7595333b dev-ros/collada_urdf: forward port urdfdom fix Package-Manager: portage-2.3.0 dev-ros/collada_urdf/collada_urdf-1.12.4.ebuild | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/dev-ros/collada_urdf/collada_urdf-1.12.4.ebuild b/dev-ros/collada_urdf/collada_urdf-1.12.4.ebuild index bea7a16..ccf46f3 100644 --- a/dev-ros/collada_urdf/collada_urdf-1.12.4.ebuild +++ b/dev-ros/collada_urdf/collada_urdf-1.12.4.ebuild @@ -7,7 +7,7 @@ ROS_REPO_URI="https://github.com/ros/robot_model" KEYWORDS="~amd64 ~arm" ROS_SUBDIR=${PN} -inherit ros-catkin +inherit ros-catkin flag-o-matic DESCRIPTION="Tool to convert Unified Robot Description Format (URDF) documents into COLLADA documents" LICENSE="BSD" @@ -19,11 +19,20 @@ RDEPEND=" dev-ros/angles dev-ros/collada_parser dev-ros/resource_retriever - dev-ros/urdf + >=dev-ros/urdf-1.12.3-r1 dev-ros/geometric_shapes dev-ros/tf media-libs/assimp dev-libs/tinyxml dev-libs/collada-dom + >=dev-libs/urdfdom-1:= + dev-cpp/eigen:3 " DEPEND="${RDEPEND}" +PATCHES=( "${FILESDIR}/urdfdom1.patch" ) + +src_configure() { + append-cppflags `pkg-config --cflags eigen3` + append-cxxflags -std=gnu++11 + ros-catkin_src_configure +}