RSS/Atom feed Twitter
Site is read-only, email is disabled

Gimp 2.10 Compiling src issues

This discussion is connected to the gimp-user-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

5 of 5 messages available
Toggle history

Please log in to manage your subscriptions.

Gimp 2.10 Compiling src issues Rukiri 17 Mar 10:02
  Gimp 2.10 Compiling src issues gerard82 17 Mar 18:40
   Gimp 2.10 Compiling src issues Simon Budig 17 Mar 18:58
  Gimp 2.10 Compiling src issues Chris Mohler 17 Mar 19:04
   Gimp 2.10 Compiling src issues Rukiri 18 Mar 04:00
2013-03-17 10:02:24 UTC (about 12 years ago)
postings
2

Gimp 2.10 Compiling src issues

Getting Babl and Gegl installed from src was easy but I'm stuck which seems to be a common issue so here's my issue.

[quote] checking for BABL... no
configure: error: Package requirements (babl >= 0.1.11) were not met:

Requested 'babl >= 0.1.11' but version of babl is 0.1.10 [/quote]

I removed babl the second I started compiling from source, but if you go to the babl's git page you will see 0.1.10 is the latest commit, and there is no 0.1.11 so how do I fix this common error?

It's been awhile since I've used linux, I stopped caring from compiling from source but this is one of the few applications I'd ever compile from source.

I'm using Ubuntu 13.04 by the way, same issue with Gentoo and Arch Linux.

here's my gimp install process.

Babl git clone git://git.gnome.org/babl
cd babl
./autogen.sh --prefix=/opt/gimp-git
make -j3
sudo checkinstall --backup=no --deldoc=yes --fstrans=no --deldesc=yes --delspec=yes --pkgversion=0.1.10-git Gegl
git clone git://git.gnome.org/gegl
cd gegl
./autogen.sh --prefix=/opt/gimp-git
ck. results, add -dev's as desired, see hints below, then run (if any added -dev's ./configure --prefix=/opt/gimp-git
make -j3
sudo checkinstall --backup=no --deldoc=yes --fstrans=no --deldesc=yes --delspec=yes --pkgversion=0.2.0-git Gimp
git clone git://git.gnome.org/gimp
cd gimp
./autogen.sh --prefix=/opt/gimp-git
make -j9

sudo checkinstall --backup=no --deldoc=yes --fstrans=no --deldesc=yes --delspec=yes --pkgversion=2.10 --pkgname=gimp-git

Help please^^;

2013-03-17 18:40:42 UTC (about 12 years ago)
postings
40

Gimp 2.10 Compiling src issues

Getting Babl and Gegl installed from src was easy but I'm stuck which seems to be a common issue so here's my issue.

[quote] checking for BABL... no
configure: error: Package requirements (babl >= 0.1.11) were not met:

Requested 'babl >= 0.1.11' but version of babl is 0.1.10 [/quote]

I removed babl the second I started compiling from source, but if you go to the babl's git page you will see 0.1.10 is the latest commit, and there is no 0.1.11 so how do I fix this common error?

It's been awhile since I've used linux, I stopped caring from compiling from source but this is one of the few applications I'd ever compile from source.

I'm using Ubuntu 13.04 by the way, same issue with Gentoo and Arch Linux.

here's my gimp install process.

Babl git clone git://git.gnome.org/babl
cd babl
./autogen.sh --prefix=/opt/gimp-git
make -j3
sudo checkinstall --backup=no --deldoc=yes --fstrans=no --deldesc=yes --delspec=yes --pkgversion=0.1.10-git Gegl
git clone git://git.gnome.org/gegl
cd gegl
./autogen.sh --prefix=/opt/gimp-git
ck. results, add -dev's as desired, see hints below, then run (if any added -dev's
./configure --prefix=/opt/gimp-git
make -j3
sudo checkinstall --backup=no --deldoc=yes --fstrans=no --deldesc=yes --delspec=yes --pkgversion=0.2.0-git Gimp
git clone git://git.gnome.org/gimp
cd gimp
./autogen.sh --prefix=/opt/gimp-git
make -j9

sudo checkinstall --backup=no --deldoc=yes --fstrans=no --deldesc=yes --delspec=yes --pkgversion=2.10 --pkgname=gimp-git

Help please^^;

No way this will succeed.
I checked but there's simply no babl-0.1.11 available. After you've compiled something in Linux it will install a *.pc file in /usr/lib/pkgconfig. In the case of babl it would be babl.pc. It's a text file and contains ao the version number in this case "version: 0.1.10. Without the right babl version forget about compiling gimp-2.10. I'd be interested myself to do this but no babl with version 0.1.11 no go. Gerard.

Simon Budig
2013-03-17 18:58:11 UTC (about 12 years ago)

Gimp 2.10 Compiling src issues

gerard82 (forums@gimpusers.com) wrote:

[quote]
checking for BABL... no
configure: error: Package requirements (babl >= 0.1.11) were not met:

[...]

No way this will succeed.
I checked but there's simply no babl-0.1.11 available.

If you're compiling Gimp from Git then you also need to use gegl and babl from git.

Bye,
Simon

simon@budig.de              http://simon.budig.de/
Chris Mohler
2013-03-17 19:04:05 UTC (about 12 years ago)

Gimp 2.10 Compiling src issues

On Sun, Mar 17, 2013 at 5:02 AM, Rukiri wrote:

Babl
git clone git://git.gnome.org/babl
cd babl
./autogen.sh --prefix=/opt/gimp-git
make -j3
sudo checkinstall --backup=no --deldoc=yes --fstrans=no --deldesc=yes --delspec=yes --pkgversion=0.1.10-git

Um - isn't your 'pkgversion' flag explicitly setting the babl version to 0.1.10? It's been a while since I used checkinstall, so I could be wrong though.

Chris

2013-03-18 04:00:42 UTC (about 12 years ago)
postings
2

Gimp 2.10 Compiling src issues

Um - isn't your 'pkgversion' flag explicitly setting the babl version to 0.1.10? It's been a while since I used checkinstall, so I could be wrong though.

Chris

You know checkinstall may have been the issue as babl was registering as 0.1.11 after a clean install and doing make install instead of checkinstall.

I move onto Gentoo anyway, I'm compiling to much from source and might as well be on a source distro.