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

installing gimp-gap 1.3.25

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.

6 of 6 messages available
Toggle history

Please log in to manage your subscriptions.

installing gimp-gap 1.3.25 sime 31 Jan 02:09
  installing gimp-gap 1.3.25 Malcolm Tredinnick 01 Feb 02:01
  installing gimp-gap 1.3.25 Henrik Brix Andersen 01 Feb 11:01
   installing gimp-gap 1.3.25 sime 01 Feb 13:10
    installing gimp-gap 1.3.25 Owen 02 Feb 06:41
     installing gimp-gap 1.3.25 Malcolm Tredinnick 02 Feb 07:27
sime
2004-01-31 02:09:04 UTC (about 20 years ago)

installing gimp-gap 1.3.25

I just installed 2.0pre2 and now attempting gimp-gap 1.3.25, in configure it is asking me for gimp-2.0, should i just sym link that to gimp-1.3. Heres the error:

checking for gimp-2.0 gimpui-2.0 gimpthumb-2.0... Package gimp-2.0 was not found in the pkg-config search path. Perhaps you should add the directory containing `gimp-2.0.pc' to the PKG_CONFIG_PATH environment variable No package 'gimp-2.0' found

-sime

Malcolm Tredinnick
2004-02-01 02:01:56 UTC (about 20 years ago)

installing gimp-gap 1.3.25

On Sat, 2004-01-31 at 12:09, sime wrote:

I just installed 2.0pre2 and now attempting gimp-gap 1.3.25, in configure it is asking me for gimp-2.0, should i just sym link that to gimp-1.3. Heres the error:

checking for gimp-2.0 gimpui-2.0 gimpthumb-2.0... Package gimp-2.0 was not found in the pkg-config search path. Perhaps you should add the directory containing `gimp-2.0.pc' to the PKG_CONFIG_PATH environment variable No package 'gimp-2.0' found

If you installed gimp 2.0pre2 from source, you would have had the gimp-2.0.pc file installed for you. So it sounds like you installed from some kind of packaging system. In that case, you need to also install the development half of that package (which may be called gimp-devel or something similar).

You cannot get around this with any symlink tricks or anything. You *must* have gimp-2.0.pc and all the corresponding development files installed.

If you did build gimp-2.0pre2 from source, then, if you installed it under $prefix, the .pc file will be in $prefix/lib/pkgconfig/ and in that case you should set the environment variable PKG_CONFIG_PATH to that directory (see the manual page for pkg-config if you want more information).

If you are still having trouble, despite my very confusing instructions, by all means post a reply. Maybe include some information about what system you are running and how you installed the Gimp (from packages? from source? it just showed up on your machine one afternoon? :-) ).

Cheers, Malcolm

Henrik Brix Andersen
2004-02-01 11:01:20 UTC (about 20 years ago)

installing gimp-gap 1.3.25

On Sat, 2004-01-31 at 02:09, sime wrote:

checking for gimp-2.0 gimpui-2.0 gimpthumb-2.0... Package gimp-2.0 was not found in the pkg-config search path. Perhaps you should add the directory containing `gimp-2.0.pc' to the PKG_CONFIG_PATH environment variable No package 'gimp-2.0' found

...and did you try the above?

Most likely you installed gimp-2.0pre2 in prefix /usr/local (default).

If that is the case you need to do the following:

export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./configure

followed by:

make su -c "make install"

or similar.

Sincerely, ./Brix

sime
2004-02-01 13:10:18 UTC (about 20 years ago)

installing gimp-gap 1.3.25

checking for gimp-2.0 gimpui-2.0 gimpthumb-2.0... Package gimp-2.0 was not found in the pkg-config search path. Perhaps you should add the directory containing `gimp-2.0.pc' to the PKG_CONFIG_PATH environment variable No package 'gimp-2.0' found

...and did you try the above?

Most likely you installed gimp-2.0pre2 in prefix /usr/local (default).

If that is the case you need to do the following:

export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig

Bingo! That did it.

Its flippin Mandrake placing file's in non-standard places. I had similar when I attempt to upgrade GTK... thought 9.2 was a little smoother

Thanks!

-sime

Owen
2004-02-02 06:41:55 UTC (about 20 years ago)

installing gimp-gap 1.3.25

On Sun, 01 Feb 2004 23:10:18 +1100 sime wrote:

export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig

Bingo! That did it.

Alternatively

cp /usr/local/lib/pkgconfig/whatever.pc /usr/lib/pkgconfig/

which fixed all my config failures

Malcolm Tredinnick
2004-02-02 07:27:32 UTC (about 20 years ago)

installing gimp-gap 1.3.25

On Mon, 2004-02-02 at 16:41, Owen wrote:

On Sun, 01 Feb 2004 23:10:18 +1100 sime wrote:

export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig

Bingo! That did it.

Alternatively

cp /usr/local/lib/pkgconfig/whatever.pc /usr/lib/pkgconfig/

which fixed all my config failures

And runs the risk of polluting your system files with locally installed junk. If you are installing a package under /usr/local, then you should keep all of its stuff under /usr/local so that it can be easily removed and stays out of the way of system (distribution) packages.

Malcolm