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

why do I need babl to UNINSTALL gimp?

This discussion is connected to the gimp-developer-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.

why do I need babl to UNINSTALL gimp? gg@catking.net 25 Apr 21:54
  why do I need babl to UNINSTALL gimp? Owen 26 Apr 00:48
   why do I need babl to UNINSTALL gimp? gg 26 Apr 01:37
    why do I need babl to UNINSTALL gimp? Owen 26 Apr 02:26
     why do I need babl to UNINSTALL gimp? Martin Nordholts 26 Apr 07:40
gg@catking.net
2009-04-25 21:54:03 UTC (almost 16 years ago)

why do I need babl to UNINSTALL gimp?

Hi,

I just wanted to clean out multiple gimp installations and went to uninstall a gimp cvs build.

make uninstall ....

checking for gmsgfmt... (cached) /usr/bin/gmsgfmt checking for xgettext... (cached) /usr/bin/xgettext checking for iso-codes... yes
checking for BABL... configure: error: Package requirements (babl >= 0.0.23) were not met:

Requested 'babl >= 0.0.23' but version of babl is 0.0.22

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.

make: *** [config.status] Error 1

Do I really need to pull babl , build and install it just to UNINSTALL Gimp ??

TIA.

Owen
2009-04-26 00:48:43 UTC (almost 16 years ago)

why do I need babl to UNINSTALL gimp?

Hi,

I just wanted to clean out multiple gimp installations and went to uninstall a gimp cvs build.

make uninstall

I am not that good at reading Makefiles, but I don't think uninstall does anything and you are just doing a make?

Hence the requirement for a newer babl

gg
2009-04-26 01:37:39 UTC (almost 16 years ago)

why do I need babl to UNINSTALL gimp?

Owen wrote:

Hi,

I just wanted to clean out multiple gimp installations and went to uninstall a gimp cvs build.

make uninstall

I am not that good at reading Makefiles, but I don't think uninstall does anything and you are just doing a make?

Hence the requirement for a newer babl

Thanks Owen, that would explain the error but I thought make reported something like "no rule for target uninstall" if it got fed crap.

maybe there's some default target in the gimp Makefiles that matches a non existent target. :?

Owen
2009-04-26 02:26:21 UTC (almost 16 years ago)

why do I need babl to UNINSTALL gimp?

Owen wrote:

Hi,

I just wanted to clean out multiple gimp installations and went to uninstall a gimp cvs build.

make uninstall

I am not that good at reading Makefiles, but I don't think uninstall does anything and you are just doing a make?

Hence the requirement for a newer babl

Thanks Owen, that would explain the error but I thought make reported something like "no rule for target uninstall" if it got fed crap.

maybe there's some default target in the gimp Makefiles that matches a non existent target. :?

Well, looking at the my Makefile (recent git build, line 873) it reads;

uninstall: uninstall-recursive

Which doesn't seem to go anywhere. Just another mystery for me

Martin Nordholts
2009-04-26 07:40:22 UTC (almost 16 years ago)

why do I need babl to UNINSTALL gimp?

Owen wrote:

Well, looking at the my Makefile (recent git build, line 873) it reads; uninstall: uninstall-recursive

Which doesn't seem to go anywhere. Just another mystery for me

The uninstall-recursive target is enumerated in the RECURSIVE_TARGETS variable. All recursive targets are defined in one place, look for $(RECURSIVE_TARGETS):. It basically calls subdirs and invokes the uninstall-am target, which is defined as uninstall-am: uninstall-binSCRIPTS uninstall-pkgconfigDATA.

HTH

- Martin