blob: d4388627f5f193cebeb7d0ce27f7b5d4c8e33095 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/insight/insight-5.2.1.ebuild,v 1.10 2004/06/25 02:36:29 agriffis Exp $
IUSE="nls"
DESCRIPTION="A graphical interface to the GNU debugger"
HOMEPAGE="http://sources.redhat.com/insight/index.html"
LICENSE="GPL-2 LGPL-2"
DEPEND="sys-libs/ncurses"
RDEPEND="${DEPEND}
nls? ( sys-devel/gettext )"
SLOT="0"
KEYWORDS="x86 sparc alpha"
SRC_URI="ftp://sources.redhat.com/pub/gdb/releases/${P}.tar.bz2"
INSIGHTDIR="/opt/insight"
src_compile() {
local myconf
use nls || myconf="--disable-nls"
./configure --prefix="${INSIGHTDIR}" \
--mandir="${D}${INSIGHTDIR}/share/man" \
--infodir="${D}${INSIGHTDIR}/share/info" \
${myconf} || die
emake || die
}
src_install () {
make \
prefix="${D}${INSIGHTDIR}" \
mandir="${D}${INSIGHTDIR}/share/man" \
infodir="${D}${INSIGHTDIR}/share/info" \
install || die
dosym /opt/insight/bin/gdb /opt/insight/bin/insight
insinto /etc/env.d
doins "${FILESDIR}/99insight"
}
|