freebsd-ports/devel/ros/files/pkg-message.in
Rene Ladan da287c3a37 Upgrade the Robot Operating System ports to their 1.4 aka Diamondback versions.
Detailed changelists are available on the WWW sites.

Port changes:
- distribution files are now fetched from upstream servers instead of
  using local copies from my server
- Python files are now always compiled (to .pyc and .pyo) and use Python 2.7
- devel/ros is now split in to devel/ros, devel/ros-documentation,
  devel/ros-rx, and devel-ros-comm to allow more lightweight installations
- Connect latter 3 ports to the build
2011-05-31 22:24:13 +00:00

18 lines
836 B
Text

To use ROS, add these variables to your environment:
ROS_MASTER_URI <HTTP address of the host running roscore>:11311
ROS_ROOT %%PREFIX%%/ros/ros
ROS_PACKAGE_PATH %%PREFIX%%/ros/stacks:/my_other_ROS_directory
PYTHONPATH ${ROS_ROOT}/core/roslib/src
If you intend to build software with ROS:
CPATH %%LOCALBASE%%/include
LIBRARY_PATH %%LOCALBASE%%/lib
MAKE %%LOCALBASE%%/bin/gmake
ROS_BOOST_ROOT %%LOCALBASE%%
Note that some scripts in %%LOCALBASE%%/bin will not work, which is by design.
See http://www.ros.org/reps/rep-0100.html#ros-root-bin-executables :
> The inclusion of ros_comm and rx executables with the ros stack is
> unfortunate. It does not significantly increase the size of the ros stack as
> binary executables will be replaced with bash scripts, but it does add
> non-functioning executables to a bare ros installation.