blob: 91e8360a5173256db38edd6201495d6ad1c63e54 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cgdb/cgdb-0.6.2.ebuild,v 1.5 2007/01/14 23:59:36 tester Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
inherit eutils autotools
DESCRIPTION="A curses front-end for GDB, the GNU debugger"
HOMEPAGE="http://cgdb.sourceforge.net/"
SRC_URI="mirror://sourceforge/cgdb/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~x86-fbsd"
IUSE=""
DEPEND=">=sys-libs/ncurses-5.3-r1
>=sys-libs/readline-5.1-r2"
RDEPEND="${DEPEND}
>=sys-devel/gdb-5.3"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-fbsd.patch"
epatch "${FILESDIR}/${P}-parallel-make.patch"
# uses an old automake version we don't have anymore
# so rebuild everything
AT_M4DIR="config" eautoreconf
}
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
einstall || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README
}
|