If you want to make apt-get ignore the updates for a package, you can put the package on hold. To hold it:

Code:
echo package-name hold |dpkg --set-selections
To take a package off Hold:

Code:
echo package-name install|dpkg --set-selections

Additionally, to list packages on hold:
Code:
dpkg --get-selections | grep hold
This will make that package stay stuck in that version so you will have to take it off hold if you want to upgrade it.