10-16-2017, 11:33 PM
(This post was last modified: 10-16-2017, 11:41 PM by crazyBaboon.)
Thanks!
I followed the instructions on the link you sent me:
and I get the following error:
The good news: it looks like I have installed the babl library successfully, since it does not mention is is missing.
The bad news: the script got stuck at installing gegl>=0.3.21
I checked the 'INSTALL' file and that did not find it particularly helpful.
Any idea on what I am doing wrong?
I followed the instructions on the link you sent me:
Code:
# Set up some folders
mkdir $HOME/code
mkdir $HOME/code/gimpdefault
mkdir $HOME/code/gimpdefault/build
mkdir $HOME/code/gimpdefault/install
mkdir $HOME/code/gimpdefault/install/share
mkdir $HOME/code/gimpdefault/install/share/aclocal
touch $HOME/code/gimpdefault/install/share/aclocal/gimp-2.0.m4
# Clone the software — add to this list as needed on your system.
cd $HOME/code/gimpdefault/build
git clone git://git.gnome.org/glib
git clone git://git.gnome.org/babl
git clone git://git.gnome.org/gegl
git clone git://github.com/mypaint/libmypaint.git
git clone git://git.gnome.org/gimp
# Set up the prefix
PREFIX=$HOME/code/gimpdefault/install
export PATH=$PREFIX/bin:$PATH
export LD_LIBRARY_PATH=$PREFIX/lib:$LD_LIBRARY_PATH
export XDG_DATA_DIRS=$PREFIX/share:$XDG_DATA_DIRS
export ACLOCAL_FLAGS="-I $PREFIX/share/aclocal"
export PKG_CONFIG_PATH=$PREFIX/lib/pkgconfig:$PKG_CONFIG_PATH
export GIO_EXTRA_MODULES=/usr/lib/gio/modules
export SRC_DIR=$HOME/code/gimpdefault/build
# Build and install glib/babl/GEGL/libmypaint/GIMP in the
# prefix — add to this list as needed on your system.
cd $SRC_DIR/glib
./autogen.sh --prefix=$PREFIX
make -j3 && make -j3 install
cd $SRC_DIR/babl
./autogen.sh --prefix=$PREFIX --disable-docs
make -j3 && make -j3 install
cd $SRC_DIR/gegl
./autogen.sh --prefix=$PREFIX --enable-gtk-doc-html=no --enable-workshop
make -j3 && make -j3 install
cd $SRC_DIR/libmypaint
./autogen.sh --prefix=$PREFIX
./configure --prefix=$PREFIX
make -j3 && make -j3 install
cd $SRC_DIR/gimp
./autogen.sh --prefix=$PREFIX --with-gimpdir=$HOME/code/gimpdefault/install/config --disable-gtk-doc
make -j3 && make -j3 install
and I get the following error:
Code:
Error: GIMP configuration failed.
- Error: missing dependency gegl-0.3 >= 0.3.21
- Error: missing dependency gexiv2 >= 0.10.6
- Error: missing dependency libtiff
*** Checks for TIFF library failed: TIFF library not found
- Error: missing dependency libjpeg
*** JPEG library not found
- Error: missing dependency libjpeg
*** JPEG header file not found
- Error: missing dependency libjpeg
*** JPEG library is too old
- Error: missing dependency libmypaint >= 1.3.0
- Error: missing dependency rsvg >= 2.40.6
- Error: missing dependency lcms2 >= 2.8
- Python 2 headers
*** Please install them, or skip building the python scripting extension by
*** passing --disable-python to configure (but then you will not be able
*** to use scripts for GIMP that are written in Python).
- PyGTK 2.10.4 or newer
*** Please install it, or skip building the python scripting extension by
*** passing --disable-python to configure (but then you will not be able
*** to use scripts for GIMP that are written in Python).
- pygtk-codegen-2.0 script
*** Please install it, or skip building the python scripting extension by
*** passing --disable-python to configure (but then you will not be able
*** to use scripts for GIMP that are written in Python).
- PyCairo 1.0.2 or newer
*** Please install it, or skip building the python scripting extension by
*** passing --disable-python to configure (but then you will not be able
*** to use scripts for GIMP that are written in Python).
See the file 'INSTALL' for more help.
Configure failed or did not finish!
The good news: it looks like I have installed the babl library successfully, since it does not mention is is missing.
The bad news: the script got stuck at installing gegl>=0.3.21
I checked the 'INSTALL' file and that did not find it particularly helpful.
Any idea on what I am doing wrong?