OK, so method 1, in other words the PPA?

Let's try to clean up your .conf files a bit. First remove the xorg.conf section with the coordinate options. Those can go in the wizardpen.conf. Or you could use a custom .conf file for them, called say 72-wizardpen.conf in the /etc/X11/xorg.conf.d directory.
Code:
#Section "InputDevice"
#    Identifier     "WizardPen Tablet"
#    Driver         "wizardpen"
#    Option         "Device" "/dev/input/by-id/usb-_TabletPF1209_-event-mouse"
#    Option         "TopX" "0"
#    Option         "TopY" "1553"
#    Option         "BottomX" "32541"
#    Option         "BottomY" "32762"
#    Option       "TopZ"  "10"
#    Option       "BottomZ"  "1024"
#EndSection
The original 0.7.4 wizardpen.conf file that comes from the PPA for Maverick reads:
Code:
Section "InputClass"
   Identifier      "wizardpen"
   MatchIsTablet   "on"
   MatchDevicePath "/dev/input/event*"
   MatchTag        "wizardpen"
   Driver          "wizardpen"
EndSection

Section "InputClass"
   Identifier      "wizardpen ignore mouse dev"
   MatchDevicePath "/dev/input/mouse*"
   MatchTag        "wizardpen"
   Driver          "mouse"
   Option          "MouseSpeed" "16"
   Option          "ignore"     "true"
EndSection
And should work provided you have the 67-wizardpen.rules in /lib/udev/rules.d. But I believe I have run into it not working for the PF1209 before. Maybe the MatchTag line doesn't work.

Now the TabletPF1209 keyword can only be used in a MatchProduct line not a MatchVendor line. No need for the explicit MatchPath. The driver does not support a tablet mouse. You can use all of the coordinates in the wizardpen.conf, no need for the xorg.conf entry.
Code:
Section "InputClass"
   Identifier      "wizardpen"
#   MatchIsTablet   "on"
   MatchProduct    "TabletPF1209"
   MatchDevicePath "/dev/input/event*"
   Driver          "wizardpen"
   Option          "TopX" "0"
   Option          "TopY" "1553"
   Option          "BottomX" "32541"
   Option          "BottomY" "32762"
   Option          "TopZ"  "10"
   Option          "BottomZ"  "1024"
EndSection

Section "InputClass"
   Identifier      "wizardpen ignore mouse dev"
   MatchProduct    "TabletPF1209"
   MatchDevicePath "/dev/input/mouse*"
   Option          "ignore"     "true"
EndSection
If you want to try MatchTablet and it works, fine.