gajim-0.12.3 port updated, fix wrong $path in file

Hi,

I have just updated gajim port to the latest release with portmaster.
The upgrade was successfull, but gajim can't be run :

Code:
$ gajim
/usr/local/bin/python2.5: can't open file 'gajim.py': [Errno 2] No such file or directory

The fix is to edit the file /usr/local/bin/gajim and fix the $PATH like this :

Change
Code:
exec ${PYTHON_EXEC} -OO gajim.py $@

To:
Code:
exec ${PYTHON_EXEC} -OO ${datadir}/src/gajim.py $@

++
 
fredg,
you may want to file a PR and have the ports maintainer being informed about the problem and the possible fix. It'll be fixed soon, if you're able to attach a patch (unified diff).
 
Back
Top