How to install Ghostscript?
The basic:
Download source at http://www.ghostscript.com/awki/Releases
./configure
make
make install
Done
Example: Install Ghostscript 8.63
Related Posts:
cd /usr/local/src/
wget http://mirror.cs.wisc.edu/pub/mirrors/ghost/GPL/gs863/ghostscript-8.63.tar.gz
tar zxf ghostscript-8.63.tar.gz
cd ghostscript-8.63
./configure
make
make install
Eddy
This was very very helpfull, and worked 100%