# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="a Generic Hash Table which is meant to be easy to extend, portable, clear in its code and easy to use." HOMEPAGE="http://www.ipd.bth.se/ska/sim_home/libghthash.html" SRC_URI="http://www.ipd.bth.se/ska/sim_home/filer/${P}.tar.gz" LICENSE="GPL-1" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="" S=${WORKDIR}/${P} src_compile() { ./configure \ --prefix=/usr || die "./configure failed" emake || die "emake failed" } src_install() { make DESTDIR=${D} install || die }