As usual while waiting for the next release - don't forget to check the nightly builds in the forum.
# Copyright 1999-2005 Gentoo Foundation# Distributed under the terms of the GNU General Public License v2# $Header: $## if you're a developer, uncomment and fix these 3 lines#ECVS_AUTH="ext"#ECVS_USER="<usename>"#ECVS_PASS="<password>"ECVS_SERVER="cvs.sourceforge.net:/cvsroot/codeblocks"ECVS_MODULE="codeblocks"inherit cvsDESCRIPTION="An open source, cross platform, free C++ IDE."HOMEPAGE="http://www.codeblocks.org"SRC_URI=""LICENSE="LGPL-2"SLOT="0"KEYWORDS="ppc x86"IUSE="debug"RDEPEND=" "DEPEND="${RDEPEND} "S="${WORKDIR}/${ECVS_MODULE}"src_compile() { ./bootstrap econf `use_enable debug` || die "configure failed" emake || die "make failed"}src_install() { #make install DESTDIR=${D} || die "install failed" einstall DESTDIR=${D} || die "install failed"}