Installing Code::Blocks from source on FreeBSD

From Code::Blocks
Revision as of 10:01, 29 November 2006 by Afb (talk | contribs) (testing on FreeBSD 6.1)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Prerequisites

wxWidgets

pkg_add -r wxgtk2-unicode

SVN client

pkg_add -r subversion

GNU autoconf

pkg_add -r gnu-autoconf

GNU automake

pkg_add -r gnu-automake

GNU libtool

pkg_add -r gnu-libtool

zip

pkg_add -r zip

Code::Blocks

Sources

http://codeblocks.org/source_code.shtml

svn checkout svn://svn.berlios.de/codeblocks/trunk

Building

 export PATH=/usr/local/gnu-autotools/bin:$PATH
 
 setenv PATH /usr/local/gnu-autotools/bin:$PATH
 cd trunk
 ./bootstrap
 ./configure
 make
 make install