Catkin can't find move_base
I'm trying to rebuild a package I made in fuerte in groovy. Back in fuerte it depended on move_base and move_base_msgs. When I try to make it using catkin in groovy I get the following:
-- +++ processing catkin package: 'autonomous_navigation'
-- ==> add_subdirectory(autonomous_navigation)
CMake Error at /opt/ros/groovy/share/catkin/cmake/catkinConfig.cmake:71
(find_package):
Could not find a configuration file for package move_base.
Set move_base_DIR to the directory containing a CMake configuration file
for move_base. The file will have one of the following names:
move_baseConfig.cmake
move_base-config.cmake
Call Stack (most recent call first):
autonomouse_navigation/CMakeLists.txt:7 (find_package)
CMake Error at /opt/ros/groovy/share/catkin/cmake/catkinConfig.cmake:71
(find_package):
Could not find a configuration file for package move_base_msgs.
Set move_base_msgs_DIR to the directory containing a CMake configuration file
for move_base_msgs. The file will have one of the following names:
move_base_msgsConfig.cmake
move_base_msgs-config.cmake
Call Stack (most recent call first):
autonomouse_navigation/CMakeLists.txt:7 (find_package)
I get a similar error trying to follow the Simple Sending Goals tutorial under navigation. The error is just for move_base_msgs since move_base isn't a dependency of the package.
Did the move_base package change? What do I need to do to be able to use the move_base for setting up navigational goals?