35 lines
665 B
Bash
35 lines
665 B
Bash
# Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI="2"
|
|
|
|
WX_GTK_VER="2.8"
|
|
|
|
inherit eutils wxwidgets
|
|
|
|
DESCRIPTION="powerful open-source, cross platform IDE for the C/C++"
|
|
HOMEPAGE="http://www.codelite.org/"
|
|
SRC_URI="mirror://sourceforge/codelite/codelite-${PV}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE=""
|
|
|
|
RDEPEND=""
|
|
|
|
DEPEND="${RDEPEND}
|
|
x11-libs/wxGTK:2.8[X]
|
|
>=sys-devel/gdb-7.1
|
|
subversion? ( dev-util/subversion )"
|
|
|
|
src_configure() {
|
|
./configure --prefix=/usr || die "configure failed"
|
|
}
|
|
|
|
src_install() {
|
|
emake -j1 DESTDIR="${D}" install || die "install failed"
|
|
}
|
|
|