You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/progressbar/progressbar-2.3.ebuild

32 lines
818 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/progressbar/progressbar-2.3.ebuild,v 1.6 2012/04/04 18:30:31 jdhore Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-jython"
inherit distutils
DESCRIPTION="Text progressbar library for python"
HOMEPAGE="http://code.google.com/p/python-progressbar/ http://pypi.python.org/pypi/progressbar"
SRC_URI="http://python-${PN}.googlecode.com/files/${P}.tar.gz"
LICENSE="|| ( LGPL-2.1 BSD )"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="examples"
DEPEND="dev-python/setuptools"
RDEPEND=""
src_install() {
distutils_src_install
dodoc README.txt || die "dodoc failed"
if use examples ; then
exeinto /usr/share/doc/${PF}/examples
doexe examples.py
fi
}