gpixpod's website seems not to get updated anymore and the ebuild is more than a year old. Do not know if anybody but me is using this, but I like it. Here we go: /usr/bin/gpixpod has python2.4 hardcoded, the website was (and still is) talking about python2.4, but gpixpod works for me with python2.5 The patch below just uses /usr/bin/python. diff a/gpixpod b/gpixpod index 2f2c514..4632801 100644 --- a/gpixpod +++ b/gpixpod @@ -1,2 +1,2 @@ #!/bin/bash -exec python2.4 /usr/lib/gpixpod/gpixpod.py "$@" +exec python /usr/lib/gpixpod/gpixpod.py "$@" Reproducible: Always Steps to Reproduce: tail -n1 /usr/bin/gpixpod
fixed...