# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=2 inherit eutils DESCRIPTION="A high-performance, open source, schema-free document-oriented database" HOMEPAGE="http://www.mongodb.org" SRC_URI="http://github.com/mongodb/mongo/tarball/r${PV} -> ${P}.tar.gz" LICENSE="AGPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="dev-lang/spidermonkey dev-libs/boost dev-libs/libpcre" DEPEND="${RDEPEND} >=dev-util/scons-1.2.0-r1" S="${WORKDIR}/${PN}-mongo-107c1b979d3133c255e1fab227d7c629f3884367" src_compile() { scons all || die "Compile failed" } src_install() { scons install --prefix="${D}/usr" || die "Install failed" }