# 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="mirror://sourceforge/libcwd/${P}.tar.gz" LICENSE="GPL" IUSE="" SLOT="0" KEYWORDS="~x86" S=${WORKDIR}/${P} src_compile() { cd ${S} econf || die make || die "make failed" } src_install() { cd ${S} make DESTDIR=${D} install || die cd documentation dodoc 0README Makefile doxygen.config html.footer html.header index.html *.dox *.m4 docinto doxygen-examples/ dodoc doxygen-examples/* docinto external/ dodoc external/* docinto images/ dodoc images/*.gif images/*.png docinto images/buttons/ dodoc images/buttons/* docinto images/lines/ dodoc images/lines/* docinto reference-manual/ dodoc reference-manual/* docinto scripts/ dodoc scripts/* docinto styles/ dodoc styles/*.css styles/Makefile styles/defines.h docinto styles/ie/ dodoc styles/ie/* docinto styles/konqueror/ dodoc styles/konqueror/* docinto styles/mozilla/ dodoc styles/mozilla/* docinto styles/netscape4/ dodoc styles/netscape4/* docinto styles/netscape6/ dodoc styles/netscape6/* docinto tutorial/ dodoc tutorial/Makefile tutorial/*.in tutorial/*.awk tutorial/*.cc tutorial/*.html tutorial/*.m4 docinto tutorial/examples5/ dodoc tutorial/examples5/*.cc tutorial/examples5/*.h docinto tutorial/examples5/sysinclude/libbooster/ dodoc tutorial/examples5/sysinclude/libbooster/* docinto tutorial/examples5/sysinclude/libturbo/ dodoc tutorial/examples5/sysinclude/libturbo/* docinto tutorial/examples7/ dodoc tutorial/examples7/* docinto www/ dodoc www/* }