10-18-2017, 12:20 PM
(This post was last modified: 10-18-2017, 12:51 PM by crazyBaboon.)
(10-17-2017, 07:07 AM)Ofnuts Wrote: For tiff/jpeg you may have to install a development packages (ligjpeg-dev/libtif-dev or somesuch), that will give you the header files.
Did you run the "make install" for GEGL?
Yes, I did. I run the commands specified by http://ninedegreesbelow.com/photography/...tists.html :
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
Interesting enough, I am now trying to install gimp-git via AUR on arch linux and I get the same error as I got before, where it complains BABL version is not high enough...:
Code:
configure: error: Package requirements (babl >= 0.1.34) were not met:
Requested 'babl >= 0.1.34' but version of babl is 0.1.30
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables BABL_CFLAGS
and BABL_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
This might not be a surprise as the babl-git on AUR seems to be 0.1.30. Could this mismatch be because babl has bumped up two versions (0.1.32 and 0.1.34) in the last two weeks?
Any ideas?
I have got it working!
I have now GIMP-GIT installed on Arch Linux.
However, I had to install the package 'babl-git' from the AUR before I installed 'gimp-git'. Attempting to install only 'gimp-git' straight from the AUR would cause the aforementioned error.
Regards