blob: bad6cc4fc4698579ffb431153ff9c21c46702e32 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/nemiver/nemiver-0.2.0-r1.ebuild,v 1.2 2007/07/12 01:05:42 mr_bones_ Exp $
inherit gnome2 eutils
DESCRIPTION="A gtkmm front end to the GNU Debugger (gdb)"
HOMEPAGE="http://home.gna.org/nemiver/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
>=dev-cpp/libglademm-2.6.0
>=dev-cpp/libgtksourceviewmm-0.2.0
>=gnome-base/libgtop-2.14.0
>=x11-libs/vte-0.12.0
>=gnome-base/gconf-2.14.0
>=gnome-base/gnome-vfs-2.14.0
>=dev-db/sqlite-3.0
sys-devel/gdb
dev-libs/boost
"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9
>=app-text/scrollkeeper-0.3.11
>=dev-util/intltool-0.35"
DOCS="AUTHORS ChangeLog NEWS README TODO"
G2CONF="${G2CONF} --enable-symbolsvisibilitycontrol=no"
gnome2_src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-0.2.0-breakpoints-fix.diff
# Prevent scrollkeeper access violations
gnome2_omf_fix
}
|