Vine Linux 4.2 and GPAC (注)

[gpac-0.4.5]
次の page を 参考にして、gpac (mp4box) を インストールしてみました、感謝。
http://mathomfactory.com/contents/gpac.htm
http://se-suganuma.blogspot.com/2008/06/linuxgpac.html
下の page から GPAC source (generic) と third-party libraries を ダウンロード、
http://gpac.sourceforge.net/home_download.php

$ ls
gpac-0.4.5.tar.gz
gpac_extra_libs-0.4.5.tar.gz
展開し、次に extra library を 本体の extra_libs ディレクトリに コピー、
$ tar xvfz gpac-0.4.5.tar.gz
$ tar xvfz gpac_extra_libs-0.4.5.tar.gz
$ cd gpac_extra_libs
$ cp -r * ../gpac/extra_libs
$ cd ../gpac
INSTALL file に 目を 通しておく、
$ less doc/INSTALL.gcc
必要な ライブラリは、ffmpeg を self-build した 時点で ほとんど 揃っています。
http://www.k2.dion.ne.jp/~mistle/linux/application/ffmpeg.html
不足分の ライブラリを apt-get で 追加、
$ sudo apt-get install freeglut freeglut-devel
パスワード(P):
configure file を 実行モードに 変換、
$ chmod +x configure
GPAC を インストール、
$ ./configure
$ make
$ sudo make install
GPAC が ライブラリの 場所を 探せるように ld.so.conf file に 1行 追加 (ldconfig ユーティリティで 設定を 有効にしておく)、
$ su
パスワード(P):
# vi /etc/ld.so.conf
include ld.so.conf.d/*.conf
/usr/X11R6/lib
/usr/lib
/usr/local/lib
# /sbin/ldconfig
# su ユーザ名
$
これで mp4box が 使えるように なりますよ ...
$ MP4Box -h general
$ man mp4box