<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.codeblocks.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=KingNothing</id>
	<title>Code::Blocks - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.codeblocks.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=KingNothing"/>
	<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php/Special:Contributions/KingNothing"/>
	<updated>2026-04-20T22:23:52Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.0</generator>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_FreeBSD&amp;diff=338</id>
		<title>Installing Code::Blocks from source on FreeBSD</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_FreeBSD&amp;diff=338"/>
		<updated>2005-10-15T15:04:06Z</updated>

		<summary type="html">&lt;p&gt;KingNothing: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Install from Source Package ==&lt;br /&gt;
At first we need to install gnu-make:&lt;br /&gt;
&lt;br /&gt;
  pkg_add -r gmake&lt;br /&gt;
&lt;br /&gt;
then wx-gtk:&lt;br /&gt;
&lt;br /&gt;
  pkg_add -r wxgtk2-contrib&lt;br /&gt;
&lt;br /&gt;
then dosunix wich converts files from dos to unix format:&lt;br /&gt;
&lt;br /&gt;
  pkg_add -r dosunix&lt;br /&gt;
&lt;br /&gt;
then zip wich is used by the update script:&lt;br /&gt;
&lt;br /&gt;
  pkg_add -r zip&lt;br /&gt;
&lt;br /&gt;
now download and extract codeblocks:&lt;br /&gt;
&lt;br /&gt;
  fetch http://mesh.dl.sourceforge.net/sourceforge/codeblocks/codeblocks-1.0-rc1-1.tar.gz&lt;br /&gt;
  tar xzf codeblocks-1.0-finalbeta.tar.gz&lt;br /&gt;
&lt;br /&gt;
  cd codeblocks-1.0-RC1-1/src&lt;br /&gt;
&lt;br /&gt;
now make it:&lt;br /&gt;
  gmake -f Makefile.unix&lt;br /&gt;
  dosunix update update.unix&lt;br /&gt;
  chmod +x update.unix&lt;br /&gt;
&lt;br /&gt;
now run upated.unix:&lt;br /&gt;
  ./update.unix&lt;br /&gt;
&lt;br /&gt;
now execute:&lt;br /&gt;
  cd output&lt;br /&gt;
  ./run.sh&lt;br /&gt;
&lt;br /&gt;
== Install from CVS ==&lt;br /&gt;
First, you have to install the following Ports:&lt;br /&gt;
&lt;br /&gt;
  gnu-autoconf-2.59   Automatically configure source code on many Un*x platforms &lt;br /&gt;
  gnu-automake-1.9.6  GNU Standards-compliant Makefile generator (GNU unmodified)&lt;br /&gt;
  gnu-libtool-1.5.18  Generic shared library support script (GNU unmodified)&lt;br /&gt;
&lt;br /&gt;
now you have to copy the m4 files from /usr/X11R6/share/aclocal/ to /usr/local/gnu-autotools/share/aclocal/&lt;br /&gt;
&lt;br /&gt;
  cp -R /usr/X11R6/share/aclocal/ /usr/local/gnu-autotools/share/&lt;br /&gt;
&lt;br /&gt;
=== Getting the latest sources from CVS ===&lt;br /&gt;
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:&lt;br /&gt;
&lt;br /&gt;
  cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/codeblocks login&lt;br /&gt;
&lt;br /&gt;
When asked for a password, press enter. Now, just checkout (i.e. download) the sources from the repository:&lt;br /&gt;
&lt;br /&gt;
  cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/codeblocks co codeblocks&lt;br /&gt;
&lt;br /&gt;
This will create the directory codeblocks. Change to the codeblocks directory and build it, by issuing the following commands:&lt;br /&gt;
&lt;br /&gt;
  cd codeblocks&lt;br /&gt;
  export PATH=/usr/local/gnu-autotools/bin:$PATH&lt;br /&gt;
  ./bootstrap&lt;br /&gt;
  ./configure&lt;br /&gt;
  make&lt;/div&gt;</summary>
		<author><name>KingNothing</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_FreeBSD&amp;diff=237</id>
		<title>Installing Code::Blocks from source on FreeBSD</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_FreeBSD&amp;diff=237"/>
		<updated>2005-10-15T12:07:19Z</updated>

		<summary type="html">&lt;p&gt;KingNothing: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Install from Source Package ==&lt;br /&gt;
At first we need to install gnu-make:&lt;br /&gt;
&lt;br /&gt;
  pkg_add -r gmake&lt;br /&gt;
&lt;br /&gt;
then wx-gtk:&lt;br /&gt;
&lt;br /&gt;
  pkg_add -r wxgtk2-contrib&lt;br /&gt;
&lt;br /&gt;
then dosunix wich converts files from dos to unix format:&lt;br /&gt;
&lt;br /&gt;
  pkg_add -r dosunix&lt;br /&gt;
&lt;br /&gt;
then zip wich is used by the update script:&lt;br /&gt;
&lt;br /&gt;
  pkg_add -r zip&lt;br /&gt;
&lt;br /&gt;
now download and extract codeblocks:&lt;br /&gt;
&lt;br /&gt;
  fetch http://mesh.dl.sourceforge.net/sourceforge/codeblocks/codeblocks-1.0-rc1-1.tar.gz&lt;br /&gt;
  tar xzf codeblocks-1.0-finalbeta.tar.gz&lt;br /&gt;
&lt;br /&gt;
  cd codeblocks-1.0-RC1-1/src&lt;br /&gt;
&lt;br /&gt;
now make it:&lt;br /&gt;
  gmake -f Makefile.unix&lt;br /&gt;
  dosunix update update.unix&lt;br /&gt;
  chmod +x update.unix&lt;br /&gt;
&lt;br /&gt;
now run upated.unix:&lt;br /&gt;
  ./update.unix&lt;br /&gt;
&lt;br /&gt;
now execute:&lt;br /&gt;
  cd output&lt;br /&gt;
  ./run.sh&lt;br /&gt;
&lt;br /&gt;
== Install from CVS ==&lt;br /&gt;
First, you have to install the following Ports:&lt;br /&gt;
&lt;br /&gt;
  gnu-autoconf-2.59   Automatically configure source code on many Un*x platforms &lt;br /&gt;
  gnu-automake-1.9.6  GNU Standards-compliant Makefile generator (GNU unmodified)&lt;br /&gt;
  gnu-libtool-1.5.18  Generic shared library support script (GNU unmodified)&lt;br /&gt;
&lt;br /&gt;
now you have to copy the m4 files from /usr/X11R6/share/aclocal/ to /usr/local/gnu-autotools/share/ &lt;br /&gt;
&lt;br /&gt;
  cp -R /usr/X11R6/share/aclocal/ /usr/local/gnu-autotools/share/&lt;br /&gt;
&lt;br /&gt;
=== Getting the latest sources from CVS ===&lt;br /&gt;
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:&lt;br /&gt;
&lt;br /&gt;
  cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/codeblocks login&lt;br /&gt;
&lt;br /&gt;
When asked for a password, press enter. Now, just checkout (i.e. download) the sources from the repository:&lt;br /&gt;
&lt;br /&gt;
  cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/codeblocks co codeblocks&lt;br /&gt;
&lt;br /&gt;
This will create the directory codeblocks. Change to the codeblocks directory and build it, by issuing the following commands:&lt;br /&gt;
&lt;br /&gt;
  cd codeblocks&lt;br /&gt;
  export PATH=/usr/local/gnu-autotools/bin:$PATH&lt;br /&gt;
  ./bootstrap&lt;br /&gt;
  ./configure&lt;br /&gt;
  make&lt;/div&gt;</summary>
		<author><name>KingNothing</name></author>
	</entry>
</feed>