blob: e8e63117c8e18ddf1e40af33005bd48a03cf3421 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/codeblocks/codeblocks-1.0_pre20071215.ebuild,v 1.1 2007/12/15 12:26:29 jurek Exp $
inherit eutils autotools wxwidgets
#needed for wxwidgets.eclass
WX_GTK_VER="2.8"
DESCRIPTION="Code::Blocks - a free cross-platform C/C++ IDE"
HOMEPAGE="http://www.codeblocks.org/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="unicode contrib debug"
RDEPEND="=x11-libs/wxGTK-${WX_GTK_VER}*"
DEPEND="${RDEPEND}
>=sys-devel/autoconf-2.5
>=sys-devel/automake-1.7
>=sys-devel/libtool-1.4
app-arch/zip"
pkg_setup() {
if use unicode; then
#check for gtk2-unicode
need-wxwidgets unicode
else
#check for gtk2-ansi
need-wxwidgets gtk2
fi
}
src_compile() {
export WANT_AUTOCONF=2.5
export WANT_AUTOMAKE=1.7
local TMP
TMP="/usr/share/aclocal/libtool.m4"
einfo "Running ./bootstrap"
if [ -e "$TMP" ]; then
cp "$TMP" aclocal.m4 || die "cp failed"
fi
./bootstrap || die "boostrap failed"
econf --with-wx-config="${WX_CONFIG}" \
$(use_enable contrib) \
$(use_enable debug) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
make install DESTDIR="${D}" || die "make install failed"
}
|