LoriMomOf9 wrote:
I can do that - if I am following the info (directions) way back when I used ubuntu in 2008.... that's how you did everything.... some of this new stuff (other ways to install is a bit more confusing - since some things don't work in some things).... LOL
OK, make sure all the requisite dev packages are installed. You should be able to do this from the package installer. Specifically, you will want to make sure that you have gtk+-2.0 (gtk+-2.24.8) and associated dev package installed. Then install glib-2.0-dev, pango, cairo, atk, gtk-pixbuff, libexif, libcurl, libcroco, libxslt, libxml2, libpoppler (and associated packages), lcms-1.19, libpng-dev, libtiff-dev, libjpeg-dev, libjp2000-dev, librsvg, libjasper, libpixman, libfreetype, libffi.
Don't worry, some of these will pull in others and so it's not as daunting as it looks.
The something like this will install gimp in your $HOME/opt directory. Note - completely untested. Make appropriate corrections based on errors you get:
#!/bin/bash
#
##############################################################
#Set your PKG_CONFIG_PATH for a local install - adjust appropriately for your system if you want system install
export PKG_CONFIG_PATH=$HOME/opt/gimp-2.7.5:$PKG_CONFIG_PATH
#let's make a tmp location for us to work in:
if [ ! -d loctemp ];
then mkdir $HOME/loctemp
fi;
cd $HOME/loctemp
#Download sources and untar, configure, make and makeinstall
#First install babl
wget https://gimptest.flamingtext.com:9090/job/babl-distcheck-master/lastSuccessfulBuild/artifact/babl-git-master.tar.bz2
tar xjf babl-git-master.tar.bz2
cd babl-0.1.7
./configure --prefix=$HOME/opt/gimp-2.7.5
make; make install
cd ..
#Now get gegl
wget https://gimptest.flamingtext.com:9090/job/babl-distcheck-master/lastSuccessfulBuild/artifact/gegl-git-master.tar.bz2
tar xjf gegl-git-master.tar.bz2
cd gegl-0.1.9
./configure --prefix=$HOME/opt/gimp-2.7.5
make; make install
cd ..
#Finally get gimp
wget https://gimptest.flamingtext.com:9090/job/babl-distcheck-master/lastSuccessfulBuild/artifact/gimp-git-master.tar.bz2
tar xjf gimp-git-master.tar.bz2
cd gimp-2.7.5
./configure --prefix=$HOME/opt/gimp-2.7.5
make; make install
cd ..
echo "All done ..."
#
##############################################################