diff options
Diffstat (limited to 'dev-python/polygon/polygon-2.0.6.ebuild')
-rw-r--r-- | dev-python/polygon/polygon-2.0.6.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-python/polygon/polygon-2.0.6.ebuild b/dev-python/polygon/polygon-2.0.6.ebuild new file mode 100644 index 000000000000..b84f17892841 --- /dev/null +++ b/dev-python/polygon/polygon-2.0.6.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Python package to handle polygonal shapes in 2D" +HOMEPAGE="http://www.j-raedler.de/projects/polygon/" +SRC_URI="https://www.bitbucket.org/jraedler/${PN}2/downloads/Polygon2-${PV}.zip" + +LICENSE="LGPL-2" +SLOT="2" +KEYWORDS="~amd64 ~ppc ~x86" + +DEPEND="app-arch/unzip" + +S=${WORKDIR}/Polygon2-${PV} + +DOCS=( HISTORY doc/Polygon.txt ) + +python_test() { + ${PYTHON} test/Test.py || die "Tests failed" +} |