# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Matthieu Sozeau S=${WORKDIR}/${P} DESCRIPTION="An open-source memory debugger for x86-GNU/Linux" HOMEPAGE="http://developer.kde.org/~sewardj" SRC_URI="http://developer.kde.org/~sewardj/${P}.tar.bz2" DEPEND="virtual/glibc X? ( virtual/x11 )" RDEPEND="${DEPEND}" LICENSE="GPL-2" src_compile() { local myconf myconf="" use X && myconf="${myconf} --with-x" ./configure --host=${CHOST} \ --prefix=/usr \ ${myconf} \ --infodir=/usr/share/info \ --mandir=/usr/share/man emake || die "Failed to compile" } src_install() { einstall || die "Installation problem" dodoc README* COPYING ChangeLog TODO ACKNOWLEDGEMENTS AUTHORS NEWS }