web-dev-qa-db-fra.com

Installation de gtk-config et / ou fsv, dépendances GTK manquantes

J'essaie d'installer le Visualiseur de système de fichiers (pensez "c'est un système UNIX! Je le sais!" De Jurassic Park) sur Ubuntu 10.10.

J'ai le fichier .tar.gz téléchargé et extrait. Cependant, quand je ./configure, j'obtiens cette sortie:

loading cache ./config.cache
checking for a BSD compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal... found
checking for working autoconf... found
checking for working automake... found
checking for working autoheader... found
checking for working makeinfo... missing
checking for gcc... gcc
checking whether the C compiler (gcc  ) works... yes
checking whether the C compiler (gcc  ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for ranlib... ranlib
checking for POSIXized ISC... no
checking for dirent.h that defines DIR... yes
checking for opendir in -ldir... no
checking for ANSI C header files... yes
checking whether time.h and sys/time.h may both be included... yes
checking for strings.h... yes
checking for sys/time.h... yes
checking for unistd.h... yes
checking for working const... yes
checking for mode_t... yes
checking for uid_t in sys/types.h... yes
checking for pid_t... yes
checking for size_t... yes
checking for comparison_fn_t... yes
checking for st_blocks in struct stat... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for working alloca.h... yes
checking for alloca... yes
checking for working fnmatch... yes
checking for strftime... yes
checking for getcwd... yes
checking for gettimeofday... yes
checking for mktime... yes
checking for strcspn... yes
checking for strdup... yes
checking for strspn... yes
checking for strtod... yes
checking for strtoul... yes
checking for scandir... yes
checking for inline... inline
checking for off_t... yes
checking for unistd.h... (cached) yes
checking for getpagesize... yes
checking for working mmap... yes
checking for argz.h... yes
checking for limits.h... yes
checking for locale.h... yes
checking for nl_types.h... yes
checking for malloc.h... yes
checking for string.h... yes
checking for unistd.h... (cached) yes
checking for sys/param.h... yes
checking for getcwd... (cached) yes
checking for munmap... yes
checking for putenv... yes
checking for setenv... yes
checking for setlocale... yes
checking for strchr... yes
checking for strcasecmp... yes
checking for strdup... (cached) yes
checking for __argz_count... yes
checking for __argz_stringify... yes
checking for __argz_next... yes
checking for stpcpy... yes
checking for LC_MESSAGES... yes
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for libintl.h... yes
checking for gettext in libc... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for gtk-config... no
checking for GTK - version >= 1.2.1... no
*** The gtk-config script installed by GTK could not be found
*** If GTK was installed in PREFIX, make sure PREFIX/bin is in
*** your path, or set the GTK_CONFIG environment variable to the
*** full path to gtk-config.
configure: error: Cannot find proper GTK+ version

De toute évidence, il recherche gtk-config. Cependant, apparemment il n’existe plus dans le dépôt. Puis ce post a mentionné que gtkglarea avait résolu son problème, comme indiqué dans ce fichier .

Bien sûr, cette affiche oublie soigneusement de mentionner exactement quoi et comment gtkglarea a résolu leur problème, et Google est la plupart du temps dépourv d'informations sur le problème.

Alors je viens ici demander de l'aide! J'aimerais installer fsv, mais cela me dit que gtk-config n'existe pas. Comment puis-je résoudre ce problème dans Ubuntu 10.10?

Merci!

EDIT

Donc, avec l'aide de Robert, voici ce que je devais faire:

Depuis les référentiels Dapper que j'ai téléchargés:

libgtk1.2-dev_1.2.10-18_i386.deb
libgtk1.2_1.2.10-18_i386.deb
libgtk1.2-common_1.2.10-18_all.deb
gtkglarea5-dev_1.2.3-2ubuntu4_i386.deb
gtkglarea5_1.2.3-2ubuntu4_i386.deb
libglib1.2_1.2.10-10.1build1_i386.deb
libglib1.2-dev_1.2.10-10.1build1_i386.deb

alors j'ai dû installer:

  1. libglib1.2
  2. libglib1.2-dev
  3. libgtk1.2-common
  4. libgtk1.2
  5. libgtk1.2-dev
  6. gtkglarea5
  7. gtkglarea5-dev

J'ai utilisé Sudo gdebi <file>.deb pour la plupart d'entre eux (cela vous indique mieux les dépendances, si vous en avez manqué une). Dans quelques cas, gdebi fait pas fait la bonne chose et meurt. Lorsque cela se produit, utilisez dpkg -i <file>.deb et cela devrait fonctionner.

6
Wayne Werner

Si la bibliothèque est toujours utilisée ou recherchée par quelqu'un, comment peut-elle être obsolète?

J'ai eu le même problème lors de la création de Mozilla 1.7.13 (oui, l'ancien navigateur Mozilla).

J'ai contourné cela en 10.10 en installant manuellement le paquet dapper et toutes ses dépendances:

https://launchpad.net/ubuntu/dapper/i386/libgtk1.2-dev/1.2.10-18

tu auras besoin:

libglib1.2_1.2.10-10.1build1_i386.deb
libglib1.2-dev_1.2.10-10.1build1_i386.deb
libgtk1.2-common_1.2.10-18_all.deb
libgtk1.2_1.2.10-18_i386.deb
libgtk1.2-dev_1.2.10-18_i386.deb
5
Robert

Il existe une version mise à jour de fsv sur GitHub: https://github.com/mcuelenaere/fsv . Il a été modifié pour fonctionner avec GTK 2.0 et pour moi sur Linux Mint 13 (en utilisant les paquets Ubuntu 12.04)

4
Arjen

ce logiciel n'est pas maintenu et nécessite GTK1, qui est une version de bibliothèque graphique obsolète, il n'est pas disponible dans les référentiels Ubuntu et je ne suis au courant d'aucun référentiel le fournissant.

Je vous recommanderais de contacter l'auteur du logiciel et de vérifier avec lui si une mise à niveau est prévue, ou sinon de rechercher un logiciel similaire mis à jour.

2
João Pinto