Monday, April 23, 2012

Installing Gimp on Ubuntu 11.1

Last month I installed Gimp on Ubuntu 11.1 which dropped Gimp since they deemed it too complex for new linux converts. Since this was last month I don't remember all the steps I took but I did copy the commands to a file and they might come handy in future. Here they are...

   69  sudo add-apt-repository ppa:matthaeus123/mrw-gimp-svn
   71  sudo apt-get install gimp gimp-data gimp-plugin-registry gimp-data-extras
   73  sudo add-apt-repository ppa:lucid-bleed/ppa
   74  sudo add-apt-repository ppa:matthaeus123/mrw-gimp-svn
   79  mkdir gimp
   80  cd gimp/
   81  wget ftp://ftp.gimp.org/pub/gimp/v2.7/gimp-2.7.2.tar.bz2
   82  tar xjf gimp-2.7.2.tar.bz2
   83  export PATH=/opt/gimp-2.7/bin:$PATH
   84  export PKG_CONFIG_PATH=/opt/gimp-2.7/lib/pkgconfig
   85  export LD_LIBRARY_PATH=/opt/gimp-2.7/lib
   86  cd gimp-2.7.2/
   87  ./configure —prefix=/opt/gimp-2.7
   89  ./configure
   90  cd ..
   92  sudo apt-get install git
   93  git clone git://git.gnome.org/babl
   94  cd gimp-2.7.2/
   95  ./configure --prefix=/opt/gimp-2.7
   96  cd ..
   97  ./autogen.sh --prefix=/opt/gimp-2.7
   99  cd babl/
  100  ./autogen.sh --prefix=/opt/gimp-2.7
  101  make -j5
  102  cd ../gimp-2.7.2/
  103  ./configure --prefix=/opt/gimp-2.7
  104  cd ../babl/
  105  cd ..
  106  git clone git://git.gnome.org/babl
  107  ./autogen.sh --prefix=/opt/gimp-2.7
  108  sudo apt-get install libtool
  109  ./autogen.sh --prefix=/opt/gimp-2.7
  110  cd babl/
  111  ./autogen.sh --prefix=/opt/gimp-2.7
  112  make -j5
  113  sudo make install
  114  cd ../gimp-2.7.2/
  115  ./configure --prefix=/opt/gimp-2.7
  116  cd ..
  117  wget ftp://ftp.gimp.org/pub/gegl/0.1/gegl-0.1.6.tar.bz2
  118  tar -xjf gegl-0.1.6.tar.bz2
  119  sudo apt-get install libjpeg62-dev libopenexr-dev librsvg2-dev
  120  cd gegl-0.1.6/
  121  ./configure --prefix=/opt/gimp-2.7
  122  sudo make install
  123  cd ..
  124  ls
  125  cd gimp-2.7.2/
  126  ./configure --prefix=/opt/gimp-2.7
  127  sudo apt-get install libtiff4-dev python-dev python-gtk2-dev
  128  ./configure --prefix=/opt/gimp-2.7
  129  which gimp
  130  sudo apt-get install libexif-dev liblcms1-dev
  131  ./configure --prefix=/opt/gimp-2.7
  132  make -j5
  133  make install -j5
  134  sudo make install -j5
  135  ls /opt/gimp-2.7/bin/gimp-2.7
  136  /opt/gimp-2.7/bin/gimp-2.7
  137  history > ~/gimpinstallcommands.dat

No comments:

Post a Comment