You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-util/codeblocks/codeblocks-10.05-r1.ebuild

49 lines
1.2 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/codeblocks/codeblocks-10.05-r1.ebuild,v 1.1 2012/11/02 06:03:31 dirtyepic Exp $
EAPI="4"
WX_GTK_VER="2.8"
inherit eutils flag-o-matic wxwidgets
DESCRIPTION="The open source, cross platform, free C++ IDE."
HOMEPAGE="http://www.codeblocks.org/"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
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
virtual/pkgconfig"
S=${WORKDIR}/${P}-release
src_prepare() {
epatch "${FILESDIR}"/${P}-wxChartCtrl-crash.patch
epatch "${FILESDIR}"/${P}-gcc47.patch
}
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() {
default
prune_libtool_files
}