On a side note, upstream should probably stop using the deprecated PIL imports, as I suppose the "python-imaging" compatibility package won't be around forever.
For instance the bug with PngImagePlugin can be fixed with the attached one-liner. Jeremy
--- a/src/Texture.py 2013-11-10 13:34:33.200829642 +0100 +++ a/src/Texture.py 2013-11-10 13:34:23.504895668 +0100 @@ -27,7 +27,7 @@ import Image import pygame import StringIO -import PngImagePlugin +from PIL import PngImagePlugin from OpenGL.GL import * from OpenGL.GLU import * from Queue import Queue, Empty