Unfortunately among the offered binary builds there was no Debian package for Ubuntu Feisty (that's what I'm running at work) and neither does the Ubuntu repositories offer a package.
So after some googling I found a few .deb packages (from which I chose one from download.ubuntu.pl). Installing the package, however, was a bit of pain due to the fact that I already had gaim 2.0.0 (beta7) installed and that was generating dependency issues: since nautilus-sendto is (wronly) dependent on gaim, uninstalling it would trigger uninstalling the whole ubuntu-desktop package.
Here is what I needed to do in order to remain with a clean package tree:
- Forcibly uninstall gaim ignoring the nautilus-sendto dependency:
sudo dpkg --purge --ignore-depends=nautilus-sendto gaim
- Uninstalled the gaim-data package:
sudo dpkg --purge gaim-data
- Edited by hand the /var/lib/dpkg/status to remove the stale gaim dependency in the nautilus-sendto package
- Installed pidgin package:
sudo dpkg -i pidgin_2.0.0-1_i386.deb
- Fix the packaging list (and eventually installing unresolved pidgin dependencies):
sudo apt-get -f install
Big ups! Saved my life!
ReplyDelete