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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 90E85158094 for ; Thu, 7 Jul 2022 10:27:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98599E0F48; Thu, 7 Jul 2022 10:27:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 32BD9E0F48 for ; Thu, 7 Jul 2022 10:27:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37EF1340EB8 for ; Thu, 7 Jul 2022 10:27:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9AF40535 for ; Thu, 7 Jul 2022 10:27:31 +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: <1657189645.e4d0be42d3021ba5d1a2c3a0dabcfff2e5a17b0d.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ros/visp_tracker/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ros/visp_tracker/visp_tracker-0.13.1.ebuild dev-ros/visp_tracker/visp_tracker-9999.ebuild X-VCS-Directories: dev-ros/visp_tracker/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: e4d0be42d3021ba5d1a2c3a0dabcfff2e5a17b0d X-VCS-Branch: master Date: Thu, 7 Jul 2022 10:27:31 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a1f15131-2ea0-4cd0-9968-26d9b106100c X-Archives-Hash: 0b4a8a3b99e1d8ae52ded7c971e1b16b commit: e4d0be42d3021ba5d1a2c3a0dabcfff2e5a17b0d Author: Alexis Ballier gentoo org> AuthorDate: Thu Jul 7 10:20:24 2022 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Thu Jul 7 10:27:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4d0be42 dev-ros/visp_tracker: fix build Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Alexis Ballier gentoo.org> dev-ros/visp_tracker/visp_tracker-0.13.1.ebuild | 5 +++++ dev-ros/visp_tracker/visp_tracker-9999.ebuild | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/dev-ros/visp_tracker/visp_tracker-0.13.1.ebuild b/dev-ros/visp_tracker/visp_tracker-0.13.1.ebuild index 5a0b0f5e491f..e0d68f493025 100644 --- a/dev-ros/visp_tracker/visp_tracker-0.13.1.ebuild +++ b/dev-ros/visp_tracker/visp_tracker-0.13.1.ebuild @@ -37,3 +37,8 @@ if [ "${PV#9999}" = "${PV}" ] ; then S="${WORKDIR}/vision_visp-noetic-${PV}/${ROS_SUBDIR}" fi PATCHES=( "${FILESDIR}/gcc6.patch" ) + +src_compile() { + export ROS_PACKAGE_PATH="${S}:${ROS_PACKAGE_PATH}" + ros-catkin_src_compile +} diff --git a/dev-ros/visp_tracker/visp_tracker-9999.ebuild b/dev-ros/visp_tracker/visp_tracker-9999.ebuild index 81537d67935a..e0d68f493025 100644 --- a/dev-ros/visp_tracker/visp_tracker-9999.ebuild +++ b/dev-ros/visp_tracker/visp_tracker-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -37,3 +37,8 @@ if [ "${PV#9999}" = "${PV}" ] ; then S="${WORKDIR}/vision_visp-noetic-${PV}/${ROS_SUBDIR}" fi PATCHES=( "${FILESDIR}/gcc6.patch" ) + +src_compile() { + export ROS_PACKAGE_PATH="${S}:${ROS_PACKAGE_PATH}" + ros-catkin_src_compile +}