# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit subversion ESVN_REPO_URI="svn://svn.berlios.de/codeblocks/trunk/" ESVN_PROJECT="codeblocks" ESVN_BOOTSTRAP="./bootstrap" DESCRIPTION="An open source, cross platform, free C++ IDE." HOMEPAGE="http://www.codeblocks.org" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="debug" RDEPEND="=x11-libs/wxGTK-2.6* !dev-util/codeblocks !dev-util/codeblocks-cvs" DEPEND="${RDEPEND} >=sys-devel/libtool-1.4 >=sys-devel/automake-1.7 >=sys-devel/autoconf-2.50" src_compile() { econf $(use_enable debug) \ --disable-dependency-tracking \ --with-wx-config=wx-config-2.6 || die "econf failed" emake || die "emake failed" } src_install() { make install DESTDIR=${D} || die "install failed" #einstall DESTDIR=${D} || die "einstall failed" }