Compile Gimp 2.7 on Debian Squeeze
Written by edmond in Applications, Controls & Shell, Debian, Gimp, Gnu-Linux, Graphics, Tips & Tricks
Today, having had a bit of time I wanted to compile Gimp 2.7, to check the news, one in all the famous single-window mode, and check if it was done a little photoshop style of order, as promised. Gimp 2.7 does not is nothing but the testing version of the future Gimp 2.8. Title I as I compiled on Debian Squeeze, then fill to make sure you have everything there is a need including:
git-core libtool autoconf automake intltool
still occur wanting more.
We start with determining the variables, since we will install in / opt, so we can use both versions of Gimp.
export PATH = $ PATH: / opt/gimp-2.7/bin
export PKG_CONFIG_PATH = / opt/gimp-2.7/lib/pkgconfig
export LD_LIBRARY_PATH = / opt/gimp-2.7/lib
then ensure that we can compile Gimp:
sudo apt-get build-dep gimp
At this point we have to download and complete graphics library and Babl GEGL.
Babl:
git clone --depth 1 git://git.gnome.org/babl
cd babl
./autogen.sh --prefix=/opt/gimp-2.7
make -j4
sudo make install -j4
GEGL:
git clone --depth 1 git://git.gnome.org/gegl
cd gegl
./autogen.sh --prefix=/opt/gimp-2.7 --disable-gtk-doc
make -j4
sudo make install -j4
Now we download and compile Gimp:
GIMP:
git clone --depth 1 git://git.gnome.org/gimp
cd gimp
./autogen.sh --prefix=/opt/gimp-2.7 --disable-gtk-doc
make -j4
sudo make install -j4
at this point if everything went well we are with Gimp 2.7 installed in / opt and we can start it with:
/opt/gimp-2.7/bin/gimp-2.7
The first assessment is certainly good, but way to go any more so. I say this without wishing to make comparisons between Gimp and Photoshop, which would be like making a comparison between Jenson Button and Michael Schumacher.
Tags: Gimp



















