diff --git a/dynamic-graph-bridge/PLIST b/dynamic-graph-bridge/PLIST index c860da8c0cf24f37e39a0d1b788befe6d08f514d..b43b6e5d46f95f4af9f155f306b8df441b8808c4 100644 --- a/dynamic-graph-bridge/PLIST +++ b/dynamic-graph-bridge/PLIST @@ -13,6 +13,9 @@ include/dynamic_graph_bridge/warning.hh lib/dynamic_graph_bridge/robot_pose_publisher lib/dynamic_graph_bridge/run_command lib/dynamic_graph_bridge/tf_publisher +share/dynamic_graph_bridge/robot_pose_publisher +share/dynamic_graph_bridge/run_command +share/dynamic_graph_bridge/tf_publisher lib/librobot_model.so lib/libros_bridge.so lib/libros_interpreter.so diff --git a/dynamic-graph-bridge/distinfo b/dynamic-graph-bridge/distinfo index 1b603130471b45e87e97cd53c29918ac14104a25..e98f04e21ae0104aee26fdf988eb869494e09648 100644 --- a/dynamic-graph-bridge/distinfo +++ b/dynamic-graph-bridge/distinfo @@ -3,3 +3,4 @@ RMD160 (dynamic_graph_bridge-1.0.0.tar.gz) = 9c55c95353479bda4b5e3cde79790c18788 Size (dynamic_graph_bridge-1.0.0.tar.gz) = 101838 bytes SHA1 (patch-aa) = 9b131ca3ce53dc8bbe54aa94cd301ddb45d49897 SHA1 (patch-ab) = acf1b743f11302c2123a49febbe48c4e53be3ef4 +SHA1 (patch-ac) = 5d5cd10313d9f5e5195c8f6f2314e84eae094eaf diff --git a/dynamic-graph-bridge/patches/patch-ac b/dynamic-graph-bridge/patches/patch-ac new file mode 100644 index 0000000000000000000000000000000000000000..3977a272d35eaddea26b4ec60e7167a0c322aa07 --- /dev/null +++ b/dynamic-graph-bridge/patches/patch-ac @@ -0,0 +1,24 @@ +install ros executables also in share since +ros facitilies are not able to find it in bin +for now +this issue has already been raised by ros community +(e.g. https://github.com/ros/xacro/issues/2) +should be possible to remove the patch with Hydro version (need to be tested) + +--- CMakeLists.txt-old 2013-12-20 13:22:01.741374000 +0100 ++++ CMakeLists.txt 2013-12-20 13:23:06.659322000 +0100 +@@ -161,5 +161,14 @@ + ${CMAKE_SOURCE_DIR}/scripts/tf_publisher + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} + ) ++#install ros executables also in share since ++# ros facitilies are not able to find it in bin ++# for now ++install(PROGRAMS ++ ${CMAKE_SOURCE_DIR}/scripts/robot_pose_publisher ++ ${CMAKE_SOURCE_DIR}/scripts/run_command ++ ${CMAKE_SOURCE_DIR}/scripts/tf_publisher ++ DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} ++ ) + SETUP_PROJECT_FINALIZE() +