Update to 1.4.7

Changelog:	http://www.ros.org/wiki/ros_comm/ChangeList/1.4
This commit is contained in:
Rene Ladan 2011-07-11 09:59:03 +00:00
parent 5c4365e639
commit 7d16c03c6f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=277526
4 changed files with 17 additions and 29 deletions

View file

@ -5,7 +5,7 @@
# $FreeBSD$
PORTNAME= ros_comm
PORTVERSION= 1.4.6
PORTVERSION= 1.4.7
CATEGORIES= devel
MASTER_SITES= https://code.ros.org/svn/release/download/stacks/${STACKNAME}/${STACKNAME}-${PORTVERSION}/
DIST_SUBDIR= ros

View file

@ -1,2 +1,2 @@
SHA256 (ros/ros_comm-1.4.6.tar.bz2) = a31c6ce8b4b7349056a5020b57f85865fdb982b2777ec01ea18f386f856e6af6
SIZE (ros/ros_comm-1.4.6.tar.bz2) = 774477
SHA256 (ros/ros_comm-1.4.7.tar.bz2) = b2fbe6f23e803bbba822baf78c09479956317647b209000263093738bc4522da
SIZE (ros/ros_comm-1.4.7.tar.bz2) = 774797

View file

@ -1,26 +0,0 @@
--- ./rosdep.yaml.orig 2011-03-02 01:15:18.000000000 +0100
+++ ./rosdep.yaml 2011-03-20 15:24:05.000000000 +0100
@@ -53,7 +53,7 @@
arch: pil
macports: py26-pil
gentoo: dev-python/imaging
- freebsd: py26-imaging
+ freebsd: py27-imaging
python-numpy:
ubuntu: python-numpy
debian: python-numpy
@@ -73,7 +73,7 @@
fedora: python-matplotlib
rhel: python-matplotlib
gentoo: dev-python/matplotlib
- freebsd: py26-matplotlib
+ freebsd: py27-matplotlib
paramiko:
ubuntu: python-paramiko
debian: python-paramiko
@@ -81,4 +81,4 @@
fedora: python-paramiko
macports: py26-paramiko
gentoo: dev-python/paramiko
- freebsd: py26-paramiko
+ freebsd: py27-paramiko

View file

@ -0,0 +1,14 @@
--- tools/rosrecord/CMakeLists.txt.orig 2011-07-06 22:07:22.000000000 +0200
+++ tools/rosrecord/CMakeLists.txt 2011-07-08 17:38:01.000000000 +0200
@@ -12,7 +12,11 @@
#rosbuild_add_executable(demo src/demo/demo.cpp)
rosbuild_add_library(rosrecorder src/rosrecord/recorder.cpp)
+if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
+rosbuild_link_boost(rosrecorder iostreams system filesystem)
+else (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
rosbuild_link_boost(rosrecorder iostreams system filesystem-mt)
+endif (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
rosbuild_add_executable(rosrecord src/rosrecord/rosrecord.cpp)
target_link_libraries(rosrecord rosrecorder)