Difference between revisions of "Installing Code::Blocks from source on FreeBSD"

From Code::Blocks
m
 
(31 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category:Installation\Build Intructions]]
+
[[Category:Installing Code::Blocks]]
== Install from Source Package ==
+
[[Category:Installing Code::Blocks from source]]
At first we need to install gnu-make:
+
== Prerequisites ==
  
  pkg_add -r gmake
+
=== wxWidgets ===
  
then wx-gtk:
+
pkg_add -r wxgtk2-unicode
  
  pkg_add -r wxgtk2-contrib
+
=== SVN client ===
  
then dosunix wich converts files from dos to unix format:
+
pkg_add -r subversion
  
  pkg_add -r dosunix
+
=== GNU autoconf ===
  
then zip wich is used by the update script:
+
pkg_add -r gnu-autoconf
  
  pkg_add -r zip
+
# On PC-BSD I used pkg_add -r autotools instead of autoconf and automake
  
now download and extract codeblocks:
+
=== GNU automake ===
  
  fetch http://mesh.dl.sourceforge.net/sourceforge/codeblocks/codeblocks-1.0-rc1-1.tar.gz
+
pkg_add -r gnu-automake
  tar xzf codeblocks-1.0-finalbeta.tar.gz
 
  
  cd codeblocks-1.0-RC1-1/src
+
=== GNU libtool ===
  
now make it:
+
pkg_add -r gnu-libtool
  gmake -f Makefile.unix
 
  dosunix update update.unix
 
  chmod +x update.unix
 
  
now run upated.unix:
+
# On PC-BSD used pkg_add -r libtool instead
  ./update.unix
 
  
now execute:
+
=== zip ===
  cd output
 
  ./run.sh
 
  
To build codeblocks-1.0rc2, you should use the method belown with the Autotools.
+
pkg_add -r zip
  
== Install from CVS ==
+
=== rsync ===
First, you have to install the following Ports:
 
  
  gnu-autoconf-2.59  Automatically configure source code on many Un*x platforms
+
  pkg_add -r rsync
  gnu-automake-1.9.6 GNU Standards-compliant Makefile generator (GNU unmodified)
 
  gnu-libtool-1.5.18  Generic shared library support script (GNU unmodified)
 
  
now you have to copy the m4 files from /usr/X11R6/share/aclocal/ to /usr/local/gnu-autotools/share/aclocal/
+
# On PC-BSD, rsync was needed to run some Code::Blocks scripts.
  
  cp -R /usr/X11R6/share/aclocal/ /usr/local/gnu-autotools/share/
+
=== gnome-icon-theme ===
  
=== Getting the latest sources from CVS ===
+
pkg_add -r gnome-icon-theme
For the following to work, you need to have the cvs command line client installed on your system. First you need to login to the CVS server:
 
  
  cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/codeblocks login
+
# On PC-BSD, gnome-icon-theme was needed by the make install.
  
When asked for a password, press enter. Now, just checkout (i.e. download) the sources from the repository:
+
== Code::Blocks ==
  
  cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/codeblocks co codeblocks
+
=== Sources ===
  
This will create the directory codeblocks. Change to the codeblocks directory and build it, by issuing the following commands:
+
https://www.codeblocks.org/downloads/7
 +
 
 +
mkdir codeblocks
 +
svn checkout http://svn.berlios.de/svnroot/repos/codeblocks/trunk codeblocks
 +
 
 +
=== Building ===
 +
 
 +
  # sh:
 +
  export PATH=/usr/local/gnu-autotools/bin:$PATH
 +
  export ACLOCAL_FLAGS="-I /usr/X11R6/share/aclocal -I /usr/local/share/aclocal"
 +
  # csh:
 +
  setenv PATH /usr/local/gnu-autotools/bin:$PATH
 +
  setenv ACLOCAL_FLAGS "-I /usr/X11R6/share/aclocal -I /usr/local/share/aclocal"
  
 
   cd codeblocks
 
   cd codeblocks
  export PATH=/usr/local/gnu-autotools/bin:$PATH
 
 
   ./bootstrap
 
   ./bootstrap
   ./configure
+
   ./configure --with-wx-config=wxgtk2u-2.8-config --with-contrib-plugins=all
 
   make
 
   make
 +
  su -
 
   make install
 
   make install
 +
 +
== Ports/Packages ==
 +
 +
=== codeblocks ===
 +
 +
http://www.freebsd.org/cgi/cvsweb.cgi/ports/devel/codeblocks/
 +
 +
http://www.freshports.org/devel/codeblocks/
 +
 +
Currently 8.02 (last stable)

Latest revision as of 22:51, 11 March 2010

Prerequisites

wxWidgets

pkg_add -r wxgtk2-unicode

SVN client

pkg_add -r subversion

GNU autoconf

pkg_add -r gnu-autoconf
  1. On PC-BSD I used pkg_add -r autotools instead of autoconf and automake

GNU automake

pkg_add -r gnu-automake

GNU libtool

pkg_add -r gnu-libtool
  1. On PC-BSD used pkg_add -r libtool instead

zip

pkg_add -r zip

rsync

pkg_add -r rsync
  1. On PC-BSD, rsync was needed to run some Code::Blocks scripts.

gnome-icon-theme

pkg_add -r gnome-icon-theme
  1. On PC-BSD, gnome-icon-theme was needed by the make install.

Code::Blocks

Sources

https://www.codeblocks.org/downloads/7

mkdir codeblocks 
svn checkout http://svn.berlios.de/svnroot/repos/codeblocks/trunk codeblocks

Building

 # sh:
 export PATH=/usr/local/gnu-autotools/bin:$PATH
 export ACLOCAL_FLAGS="-I /usr/X11R6/share/aclocal -I /usr/local/share/aclocal"
 # csh:
 setenv PATH /usr/local/gnu-autotools/bin:$PATH
 setenv ACLOCAL_FLAGS "-I /usr/X11R6/share/aclocal -I /usr/local/share/aclocal"
 cd codeblocks
 ./bootstrap
 ./configure --with-wx-config=wxgtk2u-2.8-config --with-contrib-plugins=all
 make
 su -
 make install

Ports/Packages

codeblocks

http://www.freebsd.org/cgi/cvsweb.cgi/ports/devel/codeblocks/

http://www.freshports.org/devel/codeblocks/

Currently 8.02 (last stable)