# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="RedBlack Balanced Tree Searching and Sorting Library" HOMEPAGE="http://libredblack.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" KEYWORDS="~x86" SLOT="0" IUSE="" DEPEND="virtual/glibc" RESTRICT="nomirror" src_compile() { econf --libexecdir=/usr/lib || "configure failure" emake || die "compile failure" } src_install() { make DESTDIR=${D} install || die dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README rm example*.o cp -a example* ${D}/usr/share/doc/${PF} }