# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="C++ implementation of the Atlas protocol, for use in client-server game applications." HOMEPAGE="http://www.worldforge.org/dev/eng/libraries/atlas_cpp" SRC_URI="mirror://sourceforge/worldforge/${P}.tar.gz" LICENSE="GPL-2" KEYWORDS="~x86" IUSE="doc" SLOT="0" DEPEND="virtual/libc" src_compile() { econf || die "econf failed" emake || die "emake failed" emake docs || die "emake docs failed" } src_install() { emake DESTDIR="${D}" install || die "install failed" dodoc AUTHORS ChangeLog COPYING HACKING INSTALL NEWS README ROADMAP THANKS TODO doman doc/man/* use doc && dohtml -r doc/html }