# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pymongo/pymongo-1.11-r1.ebuild,v 1.1 2011/07/06 14:30:30 ultrabug Exp $ EAPI="3" PYTHON_DEPEND="2" SUPPORT_PYTHON_ABIS="1" RESTRICT_PYTHON_ABIS="3.*" DISTUTILS_SRC_TEST="nosetests" inherit distutils DESCRIPTION="Python driver for MongoDB" HOMEPAGE="http://github.com/mongodb/mongo-python-driver" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc mod_wsgi test" RDEPEND="|| ( dev-lang/python:2.7 dev-lang/python:2.6 dev-lang/python:2.5 >=dev-python/celementtree-1.0.5 )" DEPEND="${RDEPEND} dev-python/setuptools doc? ( dev-python/sphinx ) test? ( dev-db/mongodb )" pkg_setup() { if use test; then ewarn "WARNING: You need a running instance of mongod in order to test this package !" sleep 3 fi } src_compile() { distutils_src_compile if use doc; then mkdir html sphinx-build doc html || die "building docs failed" fi } src_install() { # Maintainer note: # In order to work with mod_wsgi, we need to disable the C extension. # See [1] for more information. # [1] http://api.mongodb.org/python/current/faq.html#does-pymongo-work-with-mod-wsgi local myopts="" use mod_wsgi && myopts="--no_ext" distutils_src_install ${myopts} if use doc; then dohtml -r html/* || die "Error installing docs" fi }