# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Libcwd is a library to support C++ developers with debugging their applications" HOMEPAGE="http://libcwd.sourceforge.net/" SRC_URI="http://belnet.dl.sourceforge.net/sourceforge/libcwd/libcwd-0.99.28.tar.gz" LICENSE="GPL" SLOT="0" KEYWORDS="~x86" DEPEND="sys-devel/gcc-2.95*" SUB="libcwd-0.99.28" S=${WORKDIR}/${SUB} src_compile() { cd ${S} ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man || die "./configure failed" #emake || die make || die } src_install() { cd ${S} make DESTDIR=${D} install || die }