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 5A3E11395E1 for ; Tue, 1 Nov 2016 14:54:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48B2DE0C46; Tue, 1 Nov 2016 14:54:34 +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 30F5FE0C46 for ; Tue, 1 Nov 2016 14:54:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6ED5D3411D7 for ; Tue, 1 Nov 2016 14:54:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B9B524BB for ; Tue, 1 Nov 2016 14:54:28 +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: <1478012061.a9bc35f4881616179ea5c92d157a3539e597d406.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.5.ebuild X-VCS-Directories: dev-ros/kdl_parser/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: a9bc35f4881616179ea5c92d157a3539e597d406 X-VCS-Branch: master Date: Tue, 1 Nov 2016 14:54:28 +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: 4bd04ca9-c679-4007-baff-bdd71206f0fd X-Archives-Hash: 4bb7f03b9bcb31200cf6e258c9359275 commit: a9bc35f4881616179ea5c92d157a3539e597d406 Author: Alexis Ballier gentoo org> AuthorDate: Tue Nov 1 14:46:28 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Tue Nov 1 14:54:21 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9bc35f4 dev-ros/kdl_parser: forward port urdfdom1 fix. Package-Manager: portage-2.3.2 dev-ros/kdl_parser/kdl_parser-1.12.5.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-ros/kdl_parser/kdl_parser-1.12.5.ebuild b/dev-ros/kdl_parser/kdl_parser-1.12.5.ebuild index 372f508..7e6a2bd 100644 --- a/dev-ros/kdl_parser/kdl_parser-1.12.5.ebuild +++ b/dev-ros/kdl_parser/kdl_parser-1.12.5.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 +}