diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-08-09 16:16:13 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-08-09 16:16:13 +0000 |
commit | f0f5928f6383c6e3e27de79dc3345c3464060a2e (patch) | |
tree | b86349275c918b37b560004c2fcb71ab1402c15e /dev-util/cgdb/cgdb-0.5.3.ebuild | |
parent | Stable on mips. (diff) | |
download | gentoo-2-f0f5928f6383c6e3e27de79dc3345c3464060a2e.tar.gz gentoo-2-f0f5928f6383c6e3e27de79dc3345c3464060a2e.tar.bz2 gentoo-2-f0f5928f6383c6e3e27de79dc3345c3464060a2e.zip |
Version bump.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-util/cgdb/cgdb-0.5.3.ebuild')
-rw-r--r-- | dev-util/cgdb/cgdb-0.5.3.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-util/cgdb/cgdb-0.5.3.ebuild b/dev-util/cgdb/cgdb-0.5.3.ebuild new file mode 100644 index 000000000000..df0805240744 --- /dev/null +++ b/dev-util/cgdb/cgdb-0.5.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cgdb/cgdb-0.5.3.ebuild,v 1.1 2005/08/09 16:16:13 ka0ttic Exp $ + +DESCRIPTION="curses interface to 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" +IUSE="" + +DEPEND=">=sys-libs/ncurses-5.3-r1" +RDEPEND="${DEPEND} + >=sys-devel/gdb-5.3" + +src_compile() { + econf || die "econf failed" + emake -j1 || die "emake failed" +} + +src_install() { + einstall || die "make install failed" + dodoc AUTHORS ChangeLog NEWS README +} |