開発環境の入れ直し 20 Jan 2015
Xcode 6.1.1
https://itunes.apple.com/jp/app/xcode/id497799835?l=en&mt=12
$ sudo xcodebuild -license
XQuartz 2.7.7
http://xquartz.macosforge.org/downloads/SL/XQuartz-2.7.7.dmg
Libtool 2.4.4
http://ftp.gnu.org/gnu/libtool/libtool-2.4.4.tar.xz
$ tar xvf ~/Downloads/libtool-2.4.4.tar.xz -C /tmp $ cd /tmp/libtool-2.4.4 $ ./configure $ make $ sudo make install
Automake 1.15
http://ftp.gnu.org/gnu/automake/automake-1.15.tar.xz
$ tar xvf ~/Downloads/automake-1.15.tar.xz -C /tmp $ cd /tmp/automake-1.15 $ ./configure $ make $ sudo make install
pkg-config 0.28
http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz
$ tar xvf ~/Downloads/pkg-config-0.28.tar -C /tmp $ cd /tmp/pkg-config-0.28 $ ./configure --with-internal-glib $ make $ sudo make install
Python 2.7.9
https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tar.xz
$ tar xvf ~/Downloads/Python-2.7.9.tar.xz -C /tmp $ cd /tmp/Python-2.7.9 $ ./configure $ make $ sudo make install
zlib 1.2.8
http://zlib.net/zlib-1.2.8.tar.xz
$ tar xvf ~/Downloads/zlib-1.2.8.tar.xz -C /tmp $ cd /tmp/zlib-1.2.8 $ ./configure $ make $ sudo make install
libffi 3.2.1
ftp://sourceware.org/pub/libffi/libffi-3.2.1.tar.gz
$ tar xvf ~/Downloads/libffi-3.2.1.tar -C /tmp $ cd /tmp/libffi-3.2.1 $ ./configure $ make $ sudo make install
gettext 0.19.4
http://ftp.gnu.org/pub/gnu/gettext/gettext-0.19.4.tar.xz
$ tar xvf ~/Downloads/gettext-0.19.4.tar.xz -C /tmp $ cd /tmp/gettext-0.19.4 $ ./configure $ make $ sudo make install
GLib 2.43.3
http://ftp.gnome.org/pub/gnome/sources/glib/2.43/glib-2.43.3.tar.xz
$ tar xvf ~/Downloads/glib-2.43.3.tar.xz -C /tmp $ cd /tmp/glib-2.43.3 $ ./configure $ make $ sudo make install
FreeType 2.5.5
http://sourceforge.net/projects/freetype/files/freetype2/2.5.5/freetype-2.5.5.tar.bz2/download
$ tar jxvfp ~/Downloads/freetype-2.5.5.tar.bz2 -C /tmp $ cd /tmp/freetype-2.5.5 $ ./configure $ make $ sudo make install
libxml2 2.9.2
ftp://xmlsoft.org/libxml2/libxml2-git-snapshot.tar.gz
$ tar xvf ~/Downloads/libxml2-git-snapshot.tar -C /tmp $ cd /tmp/libxml2-2.9.2 $ ./configure $ make $ sudo make install
libpng 1.6.16
http://prdownloads.sourceforge.net/libpng/libpng-1.6.16.tar.xz?download
$ tar xvf ~/Downloads/libpng-1.6.16.tar.xz -C /tmp $ cd /tmp/libpng-1.6.1 $ ./configure $ make $ sudo make install
fontforge-20141230
https://github.com/fontforge/fontforge/archive/20141230.tar.gz
$ tar xvf ~/Downloads/fontforge-20141230.tar -C /tmp $ cd /tmp/fontforge-20141230 $ ACLOCAL="aclocal -I /usr/local/share/aclocal" $ ./bootstrap $ ./configure -without-x -enable-pyextension $ make $ sudo make installやっとインストールできた。