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 20F061381F1 for ; Fri, 26 Aug 2016 16:59:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A62F921C043; 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 2D7A721C012 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 4E966340967 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 483A92472 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.274de222ab587f2cfcc66c85364333ae9eeda4d0.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ros/kdl_parser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ros/kdl_parser/kdl_parser-1.12.4.ebuild X-VCS-Directories: dev-ros/kdl_parser/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 274de222ab587f2cfcc66c85364333ae9eeda4d0 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: 18dd58d7-1390-40af-bdef-5aa5a8a2f349 X-Archives-Hash: 02d823388c81d3210ffc1e674b6a0219 commit: 274de222ab587f2cfcc66c85364333ae9eeda4d0 Author: Alexis Ballier gentoo org> AuthorDate: Fri Aug 26 14:59:29 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=274de222 dev-ros/kdl_parser: forward port urdfdom fix Package-Manager: portage-2.3.0 dev-ros/kdl_parser/kdl_parser-1.12.4.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-ros/kdl_parser/kdl_parser-1.12.4.ebuild b/dev-ros/kdl_parser/kdl_parser-1.12.4.ebuild index 372f508..7e6a2bd 100644 --- a/dev-ros/kdl_parser/kdl_parser-1.12.4.ebuild +++ b/dev-ros/kdl_parser/kdl_parser-1.12.4.ebuild @@ -8,7 +8,7 @@ KEYWORDS="~amd64 ~arm" ROS_SUBDIR=${PN} PYTHON_COMPAT=( python2_7 ) -inherit ros-catkin +inherit ros-catkin flag-o-matic DESCRIPTION="Constructs a KDL tree from an XML robot representation in URDF" LICENSE="BSD" @@ -19,9 +19,15 @@ RDEPEND=" dev-libs/boost:= dev-ros/roscpp dev-ros/rosconsole - dev-ros/urdf + >=dev-ros/urdf-1.12.3-r1 sci-libs/orocos_kdl dev-libs/tinyxml " DEPEND="${RDEPEND} test? ( dev-ros/rostest[${PYTHON_USEDEP}] )" +PATCHES=( "${FILESDIR}/urdfdom1.patch" ) + +src_configure() { + append-cxxflags -std=gnu++11 + ros-catkin_src_configure +}