There are some packages that help with this, see for example the equivs package.
But if you have linked-to dependency, I am not sure you can trick your way around this. Some apps depending on the particular version will just break.
You can usually install several packaged Boost versions side by side, see below for 1.40 and 1.42 versions of the serialization library, plus the packages indicating that current development will use 1.42:
edd@max:~$ dpkg -l | grep libboost-serialization | cut -c-70
ii libboost-serialization-dev 1.42.0.1ubuntu1
ii libboost-serialization1.40.0 1.40.0-6ubuntu1
ii libboost-serialization1.42-dev 1.42.0-4ubuntu2
ii libboost-serialization1.42.0 1.42.0-4ubuntu2
edd@max:~$
When I need newer ones, I sometimes 'borrow' the package from a newer Debian release and build them locally.
And the there is of course /usr/local/lib where you could always install a local copy before the package management system catches up.