# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Eris is designed to simplify client development (and promote code reuse) by providing a common system to deal with the back-end Atlas tasks." HOMEPAGE="http://www.worldforge.org/dev/eng/libraries/eris" SRC_URI="mirror://sourceforge/worldforge/${P}.tar.gz" LICENSE="GPL-2" KEYWORDS="~x86" IUSE="doc" SLOT="0" DEPEND="=dev-libs/libsigc++-1.2* >=net-libs/skstream-0.3 >=net-libs/Atlas-C++-0.4.93 >=dev-libs/glib-2.0" src_compile() { econf || die "econf failed" emake || die "emake failed" emake doc || die "emake doc failed" } src_install() { emake DESTDIR="${D}" install || die "install failed" dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README TODO use doc && dohtml -r doc/html }