# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Tim Raedisch ; Kai Reichert # $Header:$ # This ebuild was generated by Ebuilder v0.4. S=${WORKDIR}/gc6.1 DESCRIPTION="The Boehm-Demers-Weiser conservative garbage collector can be used as a garbage collecting replacement for C malloc or C++ new." SRC_URI="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc6.1.tar.gz" HOMEPAGE="http://www.hpl.hp.com/personal/Hans_Boehm/gc/" LICENSE="as-is" DEPEND="" src_compile() { ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man || die "./configure failed" # emake (previously known as pmake) is a script that calls the # standard GNU make with parallel building options for speedier # builds (especially on SMP systems). Try emake first. It might # not work for some packages, in which case you'll have to resort # to normal "make". emake || die #make || die } src_install () { make DESTDIR=${D} install || die # If the above installs anything outside of DESTDIR, try the following. #make \ # prefix=${D}/usr \ # mandir=${D}/usr/share/man \ # infodir=${D}/usr/share/info \ # install || die # Install documentation. #dodoc dodoc README.QUICK doc/README* doc/barrett_diagram dohtml doc doman doc/gc.man dodir /usr/include/gc insinto /usr/include/gc doins include/*.h }