Install GIMP 2.5 on Ubuntu Hardy

| | Comments (5) | TrackBacks (2)
digg this GIMP 2.5 came out and it has some interesting features. Since it is not available in Ubuntu's repos i thought it would be nice to make a detailed tutorial on how to install GIMP 2.5 on Ubuntu Hardy for evaluation purpose.

1. Install the packages needed to compile programs:
$ sudo apt-get install build-essential

2. Install gimp dependencies:
$ sudo apt-get build-dep gimp

3. Make binaries, includes, libraries in /opt/gimp-2.5 available for use:

$ export PATH=/opt/gimp-2.5/bin:$PATH
$ export LD_LIBRARY_PATH=/opt/gimp-2.5/lib
$ export PKG_CONFIG_PATH=/opt/gimp-2.5/lib/pkgconfig


4. Install latest BABL and GEGL libs from source (these libs were not installed in step 2 as the gimp package in the repo is not depending on them)
4.1 Grab latest versions from SVN:

$ svn co http://svn.gnome.org/svn/babl/trunk/ babl
$ svn co http://svn.gnome.org/svn/gegl/trunk/ gegl

4.2 Install BABL:
$ cd babl
$ ./autogen.sh --prefix=/opt/gimp-2.5
$ make
$ sudo make install
$ cd ..

4.3 Install GEGL:

$ cd gegl
$ ./autogen.sh --prefix=/opt/gimp-2.5
$ make
$ sudo make install
$ cd ..

5. Grab GIMP 2.5 tarbal here: ftp://ftp.gimp.org/pub/gimp/v2.5/gimp-2.5.0.tar.bz2
$ wget ftp://ftp.gimp.org/pub/gimp/v2.5/gimp-2.5.0.tar.bz2

6. Extract and intall latest GIMP:
$ tar jxvf gimp-2.5.0.tar.bz2
$ cd gimp-2.5.0
$ ./configure --prefix=/opt/gimp-2.5
$ make
$ sudo make install

7. Enjoy your GIMP by running:
$ /opt/gimp-2.5/bin/gimp-2.5



2 TrackBacks

Listed below are links to blogs that reference this entry: Install GIMP 2.5 on Ubuntu Hardy.

TrackBack URL for this entry: http://www.myscienceisbetter.info/cgi-bin/mt/mt-tb.cgi/9

GIMP 2.5 came out and it has some interesting features. Since it is not available in Ubuntu's repos i thought it would be nice to make a detailed tutorial on how to install GIMP 2.5 on Ubuntu Hardy for evaluation... Read More

I’ve been wondering, why hardy’s repositories didn’t include gimp 2.5.0. You should think that such an important software package would be updated quite fast, but maybe i’m missing something.. Luckily, I found a detailed instruc... Read More

5 Comments

Very clear steps. Thanks for installing to a sane location too.

Thanks for the tutorial!
But I encountered a problem. I had to run step 4 before step 3, otherwise GEGL wouldn't find the BABL libs. Otherwise it works fine!

Patrik,

Thanks for noticing the error in my tutorial. I have modified it so that step 4 is now step 3 and vice-versa

i needed to install libtool too.. maybe that should be included.

Other than that: thanks alot!

I found your guide very good. Clear and precise.

There's only one thing I want to say: if anyone notice an error output like this while executing ./configure on the GIMP:

*** Could not find PyGTK 2.10.4 or newer.

then installation of "python-gtk2" or "python-gtk2-dev" could be missing.

Cheers!

Leave a comment