diff options
author | 2014-05-09 04:42:31 +0000 | |
---|---|---|
committer | 2014-05-09 04:42:31 +0000 | |
commit | e0ff4df146bd8737f786021c2c18e679a2fc37d1 (patch) | |
tree | c35ea5e371d8f1250ab48d3b5f748b231ae0439d /dev-python/imdbpy/imdbpy-5.0.ebuild | |
parent | Version bump for Cinnamon 2.2. (diff) | |
download | gentoo-2-e0ff4df146bd8737f786021c2c18e679a2fc37d1.tar.gz gentoo-2-e0ff4df146bd8737f786021c2c18e679a2fc37d1.tar.bz2 gentoo-2-e0ff4df146bd8737f786021c2c18e679a2fc37d1.zip |
Bump
(Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/imdbpy/imdbpy-5.0.ebuild')
-rw-r--r-- | dev-python/imdbpy/imdbpy-5.0.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/imdbpy/imdbpy-5.0.ebuild b/dev-python/imdbpy/imdbpy-5.0.ebuild new file mode 100644 index 000000000000..b071a7558591 --- /dev/null +++ b/dev-python/imdbpy/imdbpy-5.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/imdbpy/imdbpy-5.0.ebuild,v 1.1 2014/05/09 04:42:31 patrick Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7} pypy pypy2_0 ) + +inherit distutils-r1 + +MY_PN="IMDbPY" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Python package to access the IMDb movie database" +HOMEPAGE="http://imdbpy.sourceforge.net/ http://pypi.python.org/pypi/IMDbPY" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="" + +S="${WORKDIR}/${MY_PN}-${PV}" + +DISTUTILS_GLOBAL_OPTIONS=("*-jython --without-cutils") +DOCS=( docs/FAQS.txt docs/imdbpy48.dtd docs/imdbpy.cfg ) + +PATCHES=( "${FILESDIR}/${PN}-4.6-data_location.patch" ) + +src_configure() { + distutils-r1_src_configure --without-cutils +} + +python_install_all() { + local doc + for doc in docs/README* + do + DOCS=( "${DOCS[@]}" $doc ) + done + distutils-r1_python_install_all +} |