According to billstei in this comments it should work this way:
(This is a compilation of his three postings, I haven’t tried it.)
I was able to compile and install Gimp 2.5.2 (alongside the normal Ubuntu Hardy Gimp 2.4.5, so I have both at once) by following the instructions here: http://www.gimpusers.com/…
However I did the following differently:
1) I did not find it necessary to compile GLib or GTK+ as the ones already in Ubuntu Hardy were fine. So I only compiled babl, gegl, and gimp.
2) In step #5 the only export that you need for compiling is this one:
export PKG_CONFIG_PATH=/opt/gimp-2.5/lib/pkgconfigBoth the gegl and gimp configure steps will demand that you do that export first, or it will complain that you do not have babl. Make sure that you actually do have the babl you just created installed first, or else it will be correct when it tells you that you don’t have it
Then to run the program I made a shell script like this (per the advice on the Gimp website here: http://gimp.org/release-notes/gimp-2.5.html )
#!/bin/shPATH=/opt/gimp-2.5/bin:$PATHexport PATHLD_LIBRARY_PATH=/opt/gimp-2.5/libexport LD_LIBRARY_PATH/opt/gimp-2.5/bin/gimp-2.5 “$@”Whatever name you give to that shell script file is the one you use to start Gimp 2.5. Remember to do:
chmod +x [whatever-you-called-it]so you can execute it.
3) I prefer to use deb packaging where possible and so I use the program “checkinstall” rather than doing the “sudo make install” step for each of the 3 compiles. Checkinstall is a little buggy at times so you may not want to use it, but if you do here is some advice:
3a) Checkinstall will fail until you create some directories ahead of time (there may be some I missed, but checkinstall will let you know):
sudo mkdir /opt/gimp-2.5/share/localesudo mkdir /opt/gimp-2.5/share/iconssudo mkdir /opt/gimp-2.5/share/icons/hicolorsudo mkdir /opt/gimp-2.5/share/gimp/2.0/fonts3b) Checkinstall will list 10 options, and option line #2 is the name of the package itself, which will be by default “gimp”. Since you already have “gimp” installed as Gimp 2.4.5 you will have to change the package name to avoid a conflict, to something like “gimp-2.5″ or similar, just so it’s different.
4) Start checkinstall like this:sudo checkinstall --install=noThen when it finishes you will get a deb, which you can install like this (babl package shown, similar for the others):
sudo dpkg -i babl_0.0.22-1_i386.deb
and of course the advantage is that this will show up in Synaptic if you later decide you want to get rid of it (or upgrade it).
I wish I could say all this is “easy”, but perhaps not. If it seems confusing, then just stick with the original instructions and not mine.
According to the weather report I have a lousy weekend in front of me, (my Croatian friends: it’s afternoon and 16°C in front of my window…..
) so perhaps I’ll give it a try.




Rolf, what’s taking you so long? Ha, just kidding. It occurred to me that this entire session with the terminal window, building Gimp 2.5.x, would make an interesting video… and then we would see if all that stuff I said actually works or not.
I did that with 5.1 – but the terminal window is not that interesting for the non-geeks. The geeks do it them self.
Okay, well let me know if you want me to try making a video like that — I did a test with gtk-recordmydesktop and it seems to be working. Maybe if I told some good jokes during the boring parts… I don’t know any, so I must be a geek. Wait, that was a joke!
Everything works until I try to configure the GIMP 2.5.2 sources, It just thows me this error: configure: error: Test for GEGL failed. Please get it from http://gegl.org/. Anyone know how to fix this?
I see that all (most of ?) the plugins in 2.5.2 build except for help-browser. Maybe the configure script is broken, or maybe the devs don’t want that plugin built just yet. Not sure. But I’ve been trying to build the Gimp Help and install that into 2.5.2 because the Help supposedly looks a lot better now.
Okay, looks like the webkit library has to be installed in order for the help-browser plugin to get built.
After compiling WebKit and then re-compiling Gimp 2.5.2 the Help window will open up, and it does look nice, being an exact duplicate of the online http://docs.gimp.org/en/ only the files are local. But as soon as I go anywhere beyond the first front page it crashes. So, a little work to be done yet.
ack*! I don’t even know where to start with this. Guess I’ll just wait for a stable version….
Rumors are, that the wait will not be long.
I am using Linux since 96/97 and have done a lot with it. But this cutting edge stuff is always a challenge for me.
Ok, I found the correct script to compile and run the gimp 2.5.2 on my system:
You need to go to Applications -> Terminal to open a terminal window.
1. Install the packages needed to compile programs:
* sudo apt-get install build-essential subversion libtool ruby
2. Install gimp dependencies:
* sudo apt-get build-dep gimp
3. 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)
* svn co svn.gnome.org/svn/babl/trunk/ babl && svn co svn.gnome.org/svn/gegl/trunk/ gegl
3.1 Install BABL:
* cd babl
* ./autogen.sh –prefix=/opt/gimp-2.5
* make (or “make -j 2″ for multiple cores)
* sudo make install
* cd ..
3.2 Install GEGL:
* export PKG_CONFIG_PATH=/opt/gimp-2.5/lib/pkgconfig
* cd gegl
* ./autogen.sh –prefix=/opt/gimp-2.5
* make (or “make -j 2″ for multiple cores)
* sudo make install
* cd ..
4. 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
5. Grab GIMP 2.5 tarball.
* wget ftp://ftp.gimp.org/pub/gimp/v2.5/gimp-2.5.2.tar.bz2
6. Extract and install latest GIMP:
* tar jxvf gimp-2.5.2.tar.bz2
* cd gimp-2.5.2
* ./configure –prefix=/opt/gimp-2.5
* make (or “make -j 2″ for multiple cores)
* sudo make install
7. Enjoy your GIMP by running:
* /opt/gimp-2.5/bin/gimp-2.5
This works and runs on my ubuntu 8.04 using amd64 version and compiled for my dual core system!!! Woooo Hoooo!!! This is the whole compile so it should work on any ubuntu version.
Hi people,
just want to introduce myself on meetthegimp.org, hope this is the right category for that purpose.
Kind regards,
Max
Hi. I on numerous occasions announce this forum. This is the head together undisputed to ask a query.
How numberless in this forum are references progressive behind, knavish users?
Can I depute all the advice that there is?
I am here at a forum newcomer. Until I read and deal with the forum.
Let’s learn!
Hello I’m new here
:):)
And it looks like a good forum, so just wanted to say hello!
And looking forward to participating.
Going on vacation for a few days, so i’ll be back
The four comments befor this seem to be SPAM. But for what purpose? No links, nothing.
Secret communication?
Comments closed – this attracts a lot of spammers.