Introduction
gentoo Linux platform에서 wxWindows와 wxRuby를 source로부터 설치하는 방법을 기술한다.
Installing wxWindows
- http://www.wxwindows.org/로부터 wxWindows source를 다운로드 받는다. 본인은 wxGTK-2.4.2.tar.gz를 기준으로 설명한다.
- wxWindows를 설치한다.
cd wxGTK-2.4.2/ ./configure --with-gtk --enable-gtk2 --enable-unicode make su make install
- wxRuby가 htmlproc.h를 필요로 하기 때문에 다음 command를 실행한다.
/bin/install -c -m 644 ./include/wx/html/htmldefs.h /usr/local/include/wx/html/htmldefs.h
- wxRuby가 문서에 따라 설치한다.
cd contrib/src/xrc make su make install
Installing wxRuby
- README에 나와있는대로 설치한다.
> ruby extconf.rb > make [[[or nmake, depending on your platform]]] > ruby install.rb
- 단, install 시 “ruby install.rb” 대신 “make install”을 사용한다.