[opengl] OpenGLのMANをインストールする手法

VimOpenGLの辞書は設定したものの、MANもあると便利だと思い調査してみた(VimではKを押すと、MANを開くという便利な機能がある)。案の定Ubuntu forumにのってたので試してみた

やり方は以下のようになる
  

sudo apt-get install ncompress imake

# download
cd /tmp
wget ftp://ftp.sgi.com/sgi/opengl/doc/mangl{,u,x}.tar.Z

# unpack (you need the ncompress package for this to work)
tar xf mangl.tar.Z release/xc/doc/man
tar xf manglu.tar.Z release/xc/doc/man
tar xf manglx.tar.Z release/xc/doc/man

# configure and make (you need the imake package for this to work)
cd release/xc/doc/man/GL/
for dir in * ; do cd $dir && xmkmf && make && cd - ; done

# install (will install them into /usr/X11R6/man)
for dir in * ; do cd $dir && sudo make install && cd - ; done

# clean up
cd /tmp
rm -rf /tmp/release

この通りにやればMANのインストールができる

しかしながら、インストールはできたものの、imakeとかncompressの機能について詳しくは知らなかったりする。あと外国のforumとか軽視してたけど、意外にも重要な情報があるのでこれからはもうちょっと重要視してみてみるかな

もちろんOpenGLのMANがあるぐらいなので、他のツールとか言語のMANとかもあるはずなので片っ端から調査するのもおもしろそうである

ついでなんでglutのmanのインストール方法についても書いとく

wget http://www.opengl.org/resources/libraries/glut/glut-3.7.tar.gz

tar zxf glut-3.7.tar.gz

cd glut-3.7/man

xmkmf

make install.man

で、できるが、なぜかglutでない方(gle folder内部のman)はインストールできない。はて、なんでだろか?

gleの方はあんまり使わないと思うので、あまり必要がないと思うのでとりあえず放置しておく。必要となる場合には再度考え直す

とりあえず辞書とMANのおかげで大分プログラミングがしやすくなったとさ

OpenGLのMANに関する参考リンク  opengl man ubuntu forum

OpenGLの辞書に関する参考リンク

http://d.hatena.ne.jp/gnarl/20071221/1198238454
http://nanabit.net/blog/2007/12/02/vim-opengl-dict/