# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Extended Python Debugger for DDD" HOMEPAGE="http://bashdb.sourceforge.net/${PN}/" SRC_URI="mirror://sourceforge/bashdb/${P}.tar.gz" LICENSE="GPL" SLOT="0" KEYWORDS="x86" DEPEND="sys-libs/readline sys-apps/gawk dev-lang/python dev-util/ddd" src_unpack() { unpack ${P}.tar.gz || die } src_compile() { config="" ./configure \ --prefix=/usr \ ${config} || die "./configure failed" emake || die } src_install() { emake install DESTDIR="${D}" || die "make install failed" dodoc AUTHORS COPYING Changelog INSTALL NEWS README INSTALL TODO }