If you have both lang/python27 and lang/python33 installed, you may get an error in compilation from recent updates to the ports. To work around it, try the following as root.
Prior to building lang/python33:
	
	
	
		
If this shows that /usr/local/bin/python is a link:
	
	
	
		
then remove the link before compiling 
	
	
	
		
After selecting your preferences in the configuration:
	
	
	
		
Then restore the link:
	
	
	
		
				
			Prior to building lang/python33:
		Code:
	
	#cd /usr/local/bin
#ls -l python
	If this shows that /usr/local/bin/python is a link:
		Code:
	
	#lrwxr-xr-x  1 root  wheel  7 May 17 09:37 python -> python2
	
		Code:
	
	#rm python
#cd /usr/ports/lang/python33
#make clean
#make config
	
		Code:
	
	#make build
#make install clean
	
		Code:
	
	#cd /usr/local/bin
#ln -s python2 python