Hi,
I have just updated gajim port to the latest release with portmaster.
The upgrade was successfull, but gajim can't be run :
	
	
	
		
The fix is to edit the file /usr/local/bin/gajim and fix the $PATH like this :
Change
	
	
	
		
To:
	
	
	
		
++
				
			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 $@
	++