# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="A C non-blocking-I/0 based framework for event-based applications" HOMEPAGE="http://www.zigamorph.net/libnbio/" SRC_URI="ftp://ftp.zigamorph.net/pub/libnbio/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="virtual/os-headers >=sys-devel/libtool-1.5.16 >=sys-devel/autoconf-2.59-r6 >=sys-devel/automake-1.9.5" src_unpack() { unpack ${A} } src_compile() { local myconf="" econf \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ ${myconf} \ || die "configure failed" emake || die "make failed" } src_install() { cd ${S} make DESTDIR=${D} install || die "make install failed" }