# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pygments/pygments-1.2.2.ebuild,v 1.1 2010/01/02 22:27:31 djc Exp $ EAPI="2" SUPPORT_PYTHON_ABIS="1" inherit distutils MY_PN="Pygments" MY_P="${MY_PN}-${PV}" DESCRIPTION="Pygments is a syntax highlighting package written in Python." HOMEPAGE="http://pygments.org/ http://pypi.python.org/pypi/Pygments" SRC_URI="http://pypi.python.org/packages/source/P/${MY_PN}/${MY_P}.tar.gz" LICENSE="BSD" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" SLOT="0" IUSE="doc test" DEPEND="test? ( media-fonts/ttf-bitstream-vera dev-python/nose )" RDEPEND="" S="${WORKDIR}/${MY_P}" DOCS="CHANGES" src_test() { testing() { # A future version of dev-python/nose will support Python 3. [[ "${PYTHON_ABI}" == 3.* ]] && return "$(PYTHON)" tests/run.py } python_execute_function testing } src_install(){ distutils_src_install use doc && dohtml -r docs/build/ }