Hey,
This is a complete stab in the dark, but maybe gphoto2 is expecting the libraries to be in a different place, somewhere like /usr/lib instead of /usr/local/lib. So, you could at least test my hypothesis by using a creating-some-symbolic-links hack, and if it gphoto2 works, you could then work on finding a cleaner solution. Anyways, in case you don't know, here's what you'd type in as root to create the symbolic links:
# ln -s /usr/local/lib/libgphoto2.so.2 /usr/lib/libgphoto2.so.2
# ln -s /usr/local/lib/libgphoto2.so /usr/lib/libgphoto2.so
|