pip install matplotlib: “pas de pkg-config”

Quand je lance pip install matplotlib (dans un virtualenv), les premières lignes de sortie sont:

Downloading/unpacking matplotlib
  Running setup.py egg_info for package matplotlib
    basedirlist is: ['/usr/local/', '/usr', '/usr/X11', '/opt/local']
    ============================================================================
    BUILDING MATPLOTLIB
                matplotlib: 1.2.0
                    python: 2.7.3 (default, Dec 14 2012, 13:31:05)  [GCC 4.2.1
                            (Apple Inc. build 5666) (dot 3)]
                  platform: darwin

    REQUIRED DEPENDENCIES
                     numpy: 1.6.2
                 freetype2: found, but unknown version (no pkg-config)

    OPTIONAL BACKEND DEPENDENCIES
                    libpng: found, but unknown version (no pkg-config)
                   Tkinter: Tkinter: 81008, Tk: 8.5, Tcl: 8.5
                      Gtk+: no
                            * Building for Gtk+ requires pygtk; you must be able
                            * to "import gtk" in your build/install environment
           Mac OS X native: yes
                        Qt: no
                       Qt4: no
                    PySide: no
                     Cairo: no
<snip>

Note

  1. le "pas de pkg-config", et
  2. disparus de la bibliothèque Qt.

Tout d'abord, contrairement à ce que l'affichage ci-dessus dit, pkg-config est en fait installé et sur le PATH:

% pkg-config --version
0.27.1
% which pkg-config
/usr/local/bin/pkg-config

Deuxième, qt est disponible dans le même répertoire où freetype et libpng ont été trouvés:

% ls -l /usr/local/opt/{freetype,libpng,qt} | cut -c43-
/usr/local/opt/freetype -> ../Cellar/freetype/2.4.10/
/usr/local/opt/libpng -> ../Cellar/libpng/1.5.13/
/usr/local/opt/qt -> ../Cellar/qt/4.8.4/

Ma question en trois parties: la

  1. pip install matplotlib obtenir que basedirlist (3ème ligne de la sortie ci-dessus)?
  2. Que dois-je faire différemment pour que pip install matplotlib trouverez pkg-config?
  3. Que dois-je faire différemment pour que pip install matplotlib trouverez qt?

OriginalL'auteur kjo | 2012-12-20