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 086FB139085 for ; Sat, 7 Jan 2017 18:11:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C992E0C8B; Sat, 7 Jan 2017 18:11:55 +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 5BF71E0C8B for ; Sat, 7 Jan 2017 18:11:55 +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 3B17D3413C3 for ; Sat, 7 Jan 2017 18:11:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B099253B for ; Sat, 7 Jan 2017 18:11:52 +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: <1483812708.98a8f5bfe93d9f9520aa58c0d0f6dd771d91f059.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ros/urdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ros/urdf/urdf-1.12.6.ebuild X-VCS-Directories: dev-ros/urdf/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 98a8f5bfe93d9f9520aa58c0d0f6dd771d91f059 X-VCS-Branch: master Date: Sat, 7 Jan 2017 18:11:52 +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: f021ce6a-41c9-4753-894f-dde6a1d55c07 X-Archives-Hash: 471d7536b591132d56a01d81563c1ecc commit: 98a8f5bfe93d9f9520aa58c0d0f6dd771d91f059 Author: Alexis Ballier gentoo org> AuthorDate: Sat Jan 7 18:11:40 2017 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Sat Jan 7 18:11:48 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98a8f5bf dev-ros/urdf: append-cxxflags -std=gnu++11. Fixes build with gcc 5. Bug #604960. Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-ros/urdf/urdf-1.12.6.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-ros/urdf/urdf-1.12.6.ebuild b/dev-ros/urdf/urdf-1.12.6.ebuild index ce8d3c0..8ad9688 100644 --- a/dev-ros/urdf/urdf-1.12.6.ebuild +++ b/dev-ros/urdf/urdf-1.12.6.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="C++ parser for the Unified Robot Description Format (URDF)" LICENSE="BSD" @@ -28,3 +28,8 @@ RDEPEND=" DEPEND="${RDEPEND} dev-ros/cmake_modules test? ( dev-ros/rostest[${PYTHON_USEDEP}] dev-cpp/gtest )" + +src_prepare() { + append-cxxflags -std=gnu++11 + ros-catkin_src_prepare +}