|
The GIMPShop package has a lot of pre-requisites that need to be installed before GIMP can be installed. Since this is a hacked version of GIMP the pre-requisites are the same as the official version. So if you have compiled GIMP from source before you should be able to skip this section without problems.
The following packages are required to install GIMPShop:
- XML::Parser perl module
- GLib >= 2.4.5
- atk >= 1.0.1
- GTK+ >= 2.4.4
- libart-2.0
Install XML::Parser perl module
To install the XML::Parser perl module issue te following command as root:
cpan -i XML::Parser
This assumes that you have the cpan module installed. If thats not the case download the XML::Parser module from here and follow the instructions in the README file to install it)
Install GLib
Before we can install GLib we need to download the latest version of the GLib source. We do that by running the the following command:
wget ftp://ftp.gtk.org/pub/gtk/v2.6/glib-2.6.3.tar.gz
Now that we have the latest version of the source we can install it on our system. To do that we must first uncompress the archive so issue the following command:
tar -zxf glib-2.6.3.tar.gz
Once tar finishes uncompressing the archive change to the glib directory using the following command:
cd glib-2.6.3
Now we configure GLib by running the following command:
./configure --prefix=/usr
Once the configuration is complete and you don’t see any errors compile GLib by running the following command:
make
If the compile finishes without errors install GLib by running the following command as root
make install
Install atk
Before we can install atk we need to download the latest version of the atk source. We do that by running the the following command:
wget ftp://ftp.gtk.org/pub/gtk/v2.6/atk-1.9.0.tar.bz2
Now that we have the latest version of the source we can install it on our system. To do that we must first uncompress the archive so issue the following command:
tar -jxf atk-1.9.0.tar.bz2
Once tar finishes uncompressing the archive change to the atk directory using the following command:
cd atk-1.9.0
Now we configure atk by running the following command:
./configure --prefix=/usr
Once the configuration is complete and you don’t see any errors compile atk by running the following command:
make
If the compile finishes without errors install atk by running the following command as root
make install
Install pango
Before we can install pango we need to download the latest version of the pango source. We do that by running the the following command:
wget ftp://ftp.gtk.org/pub/gtk/v2.6/pango-1.8.1.tar.gz
Now that we have the latest version of the source we can install it on our system. To do that we must first uncompress the archive so issue the following command:
tar -zxf pango-1.8.1.tar.gz
Once tar finishes uncompressing the archive change to the pango directory using the following command:
cd pango-1.8.1
Now we configure pango by running the following command:
./configure --prefix=/usr
Once the configuration is complete and you don't see any errors compile pango by running the following command:
make
If the compile finishes without errors install pango by running the following command as root
make install
Install libtiff
Before we can install libtiff we need to download the latest version of the libtiff source. We do that by visiting the the following website: http://dl.maptools.org/dl/libtiff/
Now that we have the latest version of the source we can install it on our system. To do that we must first uncompress the archive so issue the following command:
tar -zxf tiff-3.7.2.tar.gz
Once tar finishes uncompressing the archive change to the libtiff directory using the following command:
cd tiff-3.7.2
Now we configure libtiff by running the following command:
./configure --prefix=/usr
Once the configuration is complete and you don't see any errors compile libtiff by running the following command:
make
If the compile finishes without errors install libtiff by running the following command as root
make install
Install GTK+
Before we can install GTK+ we need to download the latest version of the GTK+ source. We do that by running the the following command:
wget ftp://ftp.gtk.org/pub/gtk/v2.6/gtk+-2.6.4.tar.gz
Now that we have the latest version of the source we can install it on our system. To do that we must first uncompress the archive so issue the following command:
tar -zxf gtk+-2.6.4.tar.gz
Once tar finishes uncompressing the archive change to the GTK+ directory using the following command:
cd gtk+-2.6.4
Now we configure GTK+ by running the following command:
./configure --prefix=/usr
Once the configuration is complete and you don't see any errors compile GTK+ by running the following command:
make
If the compile finishes without errors install GTK+ by running the following command as root
make install
Install libart-2.0
Before we can install libart-2.0 we need to download the latest version of the libart-2.0 source. We do that by running the the following command:
wget ftp://ftp.gnome.org/pub/gnome/sources/libart_lgpl/2.3/libart_lgpl-2.3.17.tar.gz
Now that we have the latest version of the source we can install it on our system. To do that we must first uncompress the archive so issue the following command:
tar -zxf libart_lgpl-2.3.17.tar.gz
Once tar finishes uncompressing the archive change to the libart-2.0 directory using the following command:
cd libart_lgpl-2.3.17
Now we configure libart-2.0 by running the following command:
./configure --prefix=/usr
Once the configuration is complete and you don't see any errors compile libart-2.0 by running the following command:
make
If the compile finishes without errors install libart-2.0 by running the following command as root
make install
|