I am building a package for my ppa that requires a newer implementation of libboost than what is provided in my target distro (precise). I've copied libboost1.55 from the boost ppa into my ppa. I'm using pbuilder-dist to test my package build. I have successfully used the answer to this question to get pbuilder to get libboost packages from the ppa into the chroot environment.
Unfortunately, while all the dependencies can be installed from the ppa as libboost-libname1.55-dev
, none of them satisfy the meta package libboost-libname-dev
and the pbuilder-dist
build fails due to unsatisfied dependencies.
So, this question is not necessarily only tied to pbuilder-dist
, but how would I either let pbuilder ignore the packages for dependencies (as I'm sure the dependency is met), or make apt-get consider the meta package dependency satisfied? I would prefer not to mess with the debian/control
unless there is no other way.