Lo he solucionado instalando el driver synaptics (esta masked en Gentoo pero funciona bien).
Se configura el /etc/X11/XF86Config añadiendo ésto:
#sección para el touchpad
Section "InputDevice"
Identifier "TouchPad"
Driver "synaptics"
Option "Device" "/dev/psaux"
Option "SHMConfig" "on"
Option "auto-dev"
Option "Emulate3Buttons" "yes"
EndSection
#sección para el ratón óptico normal
Section "InputDevice"
Identifier "Raton"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "ZAxisMapping" "4 5"
Option "Device" "/dev/mouse"
EndSection
Y luego en la última sección:
Section "ServerLayout"
Identifier "Server Layout"
Screen "Screen0"
InputDevice "Raton" "CorePointer"
InputDevice "TouchPad" "SendCoreEvents"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Y listos… por ahora todo funcionado correctamente… (no testeado profundamente, esperaremos a que pasen los días… xD).