tigのインストール

libiconv, ncurses はインストール済み

% port installed
The following ports are currently installed:
  libiconv @1.14_0+cp932fix+enable_cp932fix (active)
  ncurses @5.9_1 (active)


とりあえず、依存関係確認

% port deps tig  
Full Name: tig @0.17_0
Library Dependencies: git-core, libiconv, ncurses

% port deps git-core 
Full Name: git-core @1.7.7_1+doc+pcre+python27
Library Dependencies: perl5.12, curl, zlib, openssl, expat, libiconv, python27, pcre
Runtime Dependencies: rsync, p5.12-error


...ソースから入れる。

% git clone http://jonas.nitro.dk/tig/tig.git tig.git
% cd tig.git
% make configure
% CFLAGS=-I/opt/local/include  LDFLAGS="-L/opt/local/lib" ./configure
% make && make install