ubuntu 12.04 libudev-dev no se instalará debido a dependencias

Tengo un código c ++ de muestra que recibe eventos hotplug utilizando la biblioteca udev. Funcionó bien en Ubuntu 10.04. El único requisito previo era el paquete libudev-dev: sudo apt-get install libudev-dev

Pero cuando intenté instalar ese paquete en 12.04, obtengo:

sudo apt-get install libudev-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
libudev-dev : Depends: libudev0 (= 175-0ubuntu9) but 175-0ubuntu9.3 is to be installed
E: Unable to correct problems, you have held broken packages.

Esto parece implicar que debo instalar libudev0, así que:

sudo apt-get install libudev0
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libudev0 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

No estoy seguro de cómo proceder desde aquí. libudev-dev depende de libudev0 pero eso ya está en su lugar, así que ... ¿qué sigue?

Tenga en cuenta que los siguientes repositorios no están comentados en sources.list y he realizado una actualización de apt-get:

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

Algunos sitios han indicado que debería hacer -f:

sudo apt-get -f install 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

Encontré un excelente enlace aquí:https://askubuntu.com/questions/140246/how-do-i-resolve-unmet-dependencies Pero no hay alegría.

Google dice que esto es un slam dunk para otras personas por ahí ...

Gracias por cualquier ayuda en esto, John

Respuestas a la pregunta(3)

Su respuesta a la pregunta