diff options
author | 2010-08-27 21:19:31 +0000 | |
---|---|---|
committer | 2010-08-27 21:19:31 +0000 | |
commit | 7f2b2351ab9f0db70b14b5250ce9a830795348ab (patch) | |
tree | 79713c3ae6670229ef51641e79ce4c57a9a22ded /dev-python/restkit/restkit-2.1.4.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-7f2b2351ab9f0db70b14b5250ce9a830795348ab.tar.gz gentoo-2-7f2b2351ab9f0db70b14b5250ce9a830795348ab.tar.bz2 gentoo-2-7f2b2351ab9f0db70b14b5250ce9a830795348ab.zip |
Initial commit.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/restkit/restkit-2.1.4.ebuild')
-rw-r--r-- | dev-python/restkit/restkit-2.1.4.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/dev-python/restkit/restkit-2.1.4.ebuild b/dev-python/restkit/restkit-2.1.4.ebuild new file mode 100644 index 000000000000..81ce9e1c3a6a --- /dev/null +++ b/dev-python/restkit/restkit-2.1.4.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/restkit/restkit-2.1.4.ebuild,v 1.1 2010/08/27 21:19:31 dev-zero Exp $ + +EAPI=3 + +# tests currently broken +#DISTUTILS_SRC_TEST="nosetests" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3*" + +inherit distutils + +TAG="benoitc-restkit-addf4be" + +DESCRIPTION="A HTTP ressource kit for Python." +HOMEPAGE="http://github.com/benoitc/restkit + http://benoitc.github.com/restkit/" +SRC_URI="http://github.com/benoitc/restkit/tarball/${PV}/${P}.tgz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+cli doc examples" + +DEPEND="dev-python/setuptools + doc? ( dev-python/sphinx + dev-python/epydoc )" +RDEPEND="cli? ( dev-python/ipython + dev-python/setuptools )" + +DOCS="NOTICE README.rst TODO.txt doc/*.rst" + +S="${WORKDIR}/${TAG}" + +# TODO +# - optionally depend on gevent and/or eventlet + +src_compile() { + distutils_src_compile + + if use doc ; then + cd doc + emake html || die "building docs failed" + fi +} + +src_install() { + distutils_src_install + + use cli || rm "${D}"/usr/bin/restcli* + + use doc && dohtml -r doc/_build/html/* + if use examples ; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} |