|
|
| |
Forum Overview
::
Beyond Good & Evil
|
| |
|
by Ice Cream Jonsey 01/27/2014, 11:51am PST |
|
 |
|
 |
|
http://linux.suramya.com/tutorials/Install_GIMPShop/
Copyright
This document is Copyright © 02nd April 2004, Suramya Tomar.
It is released to the public under the Creative Commons Attribution-ShareAlike 1.0 License
You are free:
To copy, distribute, display, and perform the work
To make derivative works
To make commercial use of the work
Under the following conditions:
Attribution. You must give the original author credit.
Share Alike. If you alter, transform, or build upon this work, you may distribute the resulting work only under a license identical to this one.
For any reuse or distribution, you must make clear to others the license terms of this work.
Any of these conditions can be waived if you get permission from the author.
Disclaimer
Use the information in this document at your own risk. I disavow any potential liability for the contents of this document. Use of the concepts, examples, and/or other content of this document is entirely at your own risk. They worked on my system but it doesn't necessarily mean that it would be safe to do the same on your system.
All copyrights are owned by their owners, unless specifically noted otherwise. Use of a term in this document should not be regarded as affecting the validity of any trademark or service mark.
You are strongly recommended to take a backup of your system before performing any of the actions listed in this document .
Credits
In this section I have the pleasure of acknowledging the following people without whose input this would have never seen the light of the day:
Scott Moschella for writing the GIMPShop hack
Anshuman for creating a RPM installer of GIMPShop
Creators of GIMP for creating an awesome graphics editor
My friends and family for brearing with me while I wrote this
Pre-Requisites
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
Install GIMPShop
Now that we have installed all the pre-requisites we can install GIMPShop. Now we can either install GIMPShop from the source or install it using the Debian dpkg installer.
Install using Debian dpkg installer
Download the Debian package for GIMPShop from Here. Install the package by running the following command as root:
dpkg -i gimp_2.2.4-2_i386.deb
Install from Source
Before we can install GIMPShop we need to download the latest version of the GIMPShop source. We do that from Here
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 GIMPshop-source-2.2.4.tbz
Once tar finishes uncompressing the archive change to the GIMPShop directory using the following command:
cd gimp-2.2
Now we configure GIMPShop by running the following command:
./configure --prefix=/usr
Once the configuration is complete and you don't see any errors compile GIMPShop by running the following command:
make
If the compile finishes without errors install GIMPShop by running the following command as root
make install
Running GIMPShop
To run the server run the following command from a command prompt:
/usr/bin/gimp
Conclusion
Now you should have a working install of GIMPShop. If you like it drop a note to Scott and let him know that he did a great job. If you think this document helped you or you have some comments or questions about this please feel free to Contact Me and let me know. However I must warn you that I am a somewhat lazy person who might take a little while before replying to your emails.
Thanks for your time
- Suramya Tomar
02nd April 2005
It's a fucking Cyril Badman post.
So before doing all that I just wanted to check to see if there was something else everyone is using. I don't think there is, though.
ICJ |
|
 |
|
 |
|
|
|
| |
Besides GIMP, is there a good Linux Photoshop replacement? by Ice Cream Jonsey 01/27/2014, 7:30am PST 
What did GIMP ever do to you? NT by WITTGENSTEIN 01/27/2014, 7:56am PST 
Here's how to install GIMP Shop on Linux by Ice Cream Jonsey 01/27/2014, 11:51am PST 
Are you planning on installing form binaries? by motherfuckerfoodeater 01/27/2014, 12:04pm PST 
Doesn't GIMP 2.8 include a single window mode to be more photoshoppish? by Entropy Stew 01/27/2014, 12:49pm PST 
I use Mint. I actually don't care if I install via a binary or a make file. NT by Ice Cream Jonsey 01/27/2014, 8:30pm PST 
Welcome to the world of open source AIDS NT by Linux fag 01/27/2014, 12:38pm PST 
Re: Welcome to the world of open source AIDS by Ice Cream Jonsey 01/27/2014, 1:47pm PST 
You get complete control at the cost of having complete control NT by Entropy Stew 01/27/2014, 2:25pm PST 
For manipulating existing images or making new ones? by motherfuckerfoodeater 01/27/2014, 9:31am PST 
Existing ones, sir. NT by Ice Cream Jonsey 01/27/2014, 11:49am PST 
It's been years since I've tried GIMP, so perhaps the UI is better. I'll try it NT by Ice Cream Jonsey 01/27/2014, 8:31pm PST 
it's fine. floating toolbars are odd but work fine by jeep 01/27/2014, 10:06pm PST 
yeah, agreed by Ice Cream Jonsey 01/28/2014, 7:05am PST 
Re: yeah, agreed by Mysterio 01/29/2014, 7:06am PST 
No, but the designer of GIMP does a pretty good job knowing when I'm ready to by Ice Cream Jonsey 01/29/2014, 9:31am PST 
No. So bring out the Gimp. NT by Quentin Tarantino 01/28/2014, 10:30pm PST 
|
|
| |
|
| |