Ubuntu – “Dependency is not satisfiable” error when trying to install ubuntudico

dictionaryinstallationrepository

I try to install the ubuntudico dictionary. I found it here. Downloaded the deb from the link provided there. I get an error (similar to the one I posted in a separate question that maybe could be unified with this one).

“Dependency is not satisfiable” error when trying to install ubuntudico

What is it to be done? What should I add to the repository?

When trying to install gambas2-gb-qt-kde i get the following:
enter image description here

I don't seem to find kdelibs4c2a for my architecture. I have Xubuntu 11.10. Universe is enabled.

At this page I found that the requested environment is:

(k)(edu)Ubuntu 8.04 and above

Debian 5.0.4 and above

(Does this means that the dictionary is accessible only from kubuntu/edubuntu?)

And that the needed dependencies are:

gambas2-runtime (>= 1.9.48)

gambas2-runtime (<< 2.90)

gambas2-gb-qt (>= 1.9.48)

gambas2-gb-qt (<< 2.90)

gambas2-gb-form (>= 1.90.1)

gambas2-gb-form (<< 2.90.0)

gambas2-gb-net (>= 1.9.48)

gambas2-gb-net (<< 2.90)

gambas2-gb-qt-kde (>= 1.9.48)

gambas2-gb-qt-kde (<< 2.90)

gambas2-gb-qt-kde-html (>= 1.9.48)

gambas2-gb-qt-kde-html (<< 2.90)

But gambas2-gb-qt-kde and gambas2-gb-qt-kde-html are not available in Synaptic.

Best Answer

It looks like the package gambas2-gb-qt-kde has been removed from the repos starting in Oneric. It is still available for Natty and you may get some results by installing the Natty Universe repository and installing it from there. I went and did that and I found that one of the dependencies depends on something from natty main as well, so you'll need to add the following four items to /etc/apt/sources.list

deb http://us.archive.ubuntu.com/ubuntu/ natty universe
deb-src http://us.archive.ubuntu.com/ubuntu/ natty universe
deb http://us.archive.ubuntu.com/ubuntu/ natty-updates universe
deb-src http://us.archive.ubuntu.com/ubuntu/ natty-updates universe
deb http://us.archive.ubuntu.com/ubuntu/ natty main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ natty main restricted
deb http://us.archive.ubuntu.com/ubuntu/ natty-updates main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ natty-updates main restricted

Then you'll download the deb for ubuntudico2 from the link you provided and run the following:

sudo apt-get update
sudo dpkg -i ubuntudico2.deb
sudo apt-get install -f

And then it will install. I would recommend removing the extra natty repos after that to prevent issues with packages later on.