blob: 49e1118bff7a06ce2d32aafe9dca9f2eca3076de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/codeblocks/codeblocks-10.05.ebuild,v 1.1 2010/07/02 22:04:11 dirtyepic Exp $
EAPI="2"
WX_GTK_VER="2.8"
inherit wxwidgets flag-o-matic
DESCRIPTION="The open source, cross platform, free C++ IDE."
HOMEPAGE="http://www.codeblocks.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
SRC_URI="mirror://berlios/codeblocks/${P}-src.tar.bz2"
IUSE="contrib debug pch static-libs"
RDEPEND="x11-libs/wxGTK:2.8[X]"
DEPEND="${RDEPEND}
app-arch/zip"
S=${WORKDIR}/${P}-release
src_configure() {
# C::B is picky on CXXFLAG -fomit-frame-pointer
# (project-wizard crash, instability ...)
filter-flags -fomit-frame-pointer
append-flags -fno-strict-aliasing
econf \
--with-wx-config="${WX_CONFIG}" \
$(use_enable debug) \
$(use_enable pch) \
$(use_enable static-libs static) \
$(use_with contrib contrib-plugins all)
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
}
|