progress
still a ton of work to do, but it's a start:
$ tar xvfz PIL-1.2a0.tar.gz
...
$ cd PIL-1.2a0/
$ python3 setup.py install --prefix .
...
$ cd lib/python3.1/site-packages/
$ python3
Python 3.1.2 (r312:79147, Apr 15 2010, 15:35:48)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from PIL import Image
>>> im = Image.open("../../../Images/lena.png")
>>> im
<PIL.PngImagePlugin.PngImageFile image mode=RGB size=128x128 at 0xE6B1D0>
>>>
the current 1.2a0 snapshot can be found in the development repository.