I have an apt package that is compiled for Ubuntu 13.04 and want to install it on Ubuntu 14.04
The package in question depends on libcogl12
which is not available on Ubuntu 14.04 (replaced by newer libcogl15 as i assume).
In order to solve this problem i download cogl source code and build libcogl12 manually:
sudo apt-get install freeglut3-dev libxcomposite-dev libglib2.0-dev libpango1.0-dev
curl -O http://ftp.gnome.org/pub/GNOME/sources/cogl/1.7/cogl-1.7.8.tar.xz
cd cogl-1.7.8
./configure --prefix=/usr
make
sudo checkinstall
In checkinstall
interactive menu i define a libcogl12
name for resulting package. It is built without problems, but upon install i got an error:
dpkg: dependency problems prevent configuration of libcogl12:
libclutter-1.0-0:amd64 (1.16.4-0ubuntu2) breaks libcogl12 and is installed.
What this "A breaks B and is installed" means? I can't see any documentation for such errors :(.