# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnsres/libdnsres-0.1a.ebuild,v 1.1 2006/03/21 23:49:57 jokey Exp $ inherit autotools DESCRIPTION="a non-blocking DNS resolver library" HOMEPAGE="http://www.monkey.org/~provos/libdnsres/" SRC_URI="http://www.monkey.org/~provos/${P}.tar.gz" LICENSE="|| ( as-is BSD )" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="dev-libs/libevent" src_compile() { econf || die "econf failed" make || die "make failed" } src_install() { make DESTDIR=${D} install || die "make install failed" }