forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.7, Repoman-2.3.3
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST navigation-1.14.0.tar.gz 340196 SHA256 3974bb52af21cf0a6e4da8eb231b3101b4c5da700793bdac1cdc97e69d6e5cac SHA512 8ac2048be6d06be1f137aab2e73c5c724e794b9e6125fa70e2283df3790200f7b5203bae12c46e0796523ae58a4f8ede79fd0c1afc09a306a99f450576c7b11a WHIRLPOOL 12e8b7f5043a9473033df772021c3ebae1cdf87bde52988874489e490e7dfdcb07623c588ffd1297fbbd3fc336813fc6f4e9ae812dc80dfcad3062cceb82ef0b | ||
DIST navigation-1.14.2.tar.gz 345166 SHA256 b8be76079876ff866bce634caf862f1e2fd8e017d82c207b6aed27ca94cf0f6c SHA512 6477104a330a20722fde1634a0d51b1706c9705b4b9415aa9703c99a61d2ce3de97caba24a6b667897e842490c15a6bf2cdbb2f51341febf29d0475b4c0f384b WHIRLPOOL d4fbea98ccf9d7d75ce6cdec54b32132b67a962b047fbf25ea2dd0c2be874e1f981d1f2de66e4a03567680e32c3bd01904429a072b99d9265c50e0baa44cdb5b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=5 | ||
ROS_REPO_URI="https://github.com/ros-planning/navigation" | ||
ROS_SUBDIR=${PN} | ||
KEYWORDS="~amd64 ~arm" | ||
CATKIN_MESSAGES_TRANSITIVE_DEPS="dev-ros/std_msgs dev-ros/geometry_msgs dev-ros/nav_msgs" | ||
CATKIN_HAS_MESSAGES=yes | ||
PYTHON_COMPAT=( python2_7 ) | ||
|
||
inherit ros-catkin | ||
|
||
DESCRIPTION="Fast interpolated navigation function that can be used to create plans for a mobile base" | ||
LICENSE="BSD" | ||
SLOT="0" | ||
IUSE="" | ||
|
||
RDEPEND=" | ||
dev-ros/costmap_2d | ||
dev-ros/nav_core | ||
dev-ros/pcl_conversions | ||
dev-ros/pcl_ros | ||
dev-ros/pluginlib | ||
dev-ros/roscpp | ||
dev-ros/tf | ||
dev-ros/visualization_msgs | ||
dev-cpp/eigen:3 | ||
sci-libs/pcl | ||
x11-libs/fltk | ||
media-libs/netpbm | ||
dev-libs/boost:=[threads] | ||
" | ||
DEPEND="${RDEPEND} | ||
test? ( dev-cpp/gtest ) | ||
dev-ros/cmake_modules" | ||
|
||
PATCHES=( "${FILESDIR}/pgm_h_location.patch" ) |