# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/webpy/webpy-0.23.ebuild,v 1.1 2008/02/11 10:54:51 wrobel Exp $ inherit distutils bzr MY_PN="web.py" EBZR_REPO_URI="http://webpy.org/bzr/webpy.dev" EBZR_BRANCH="" DESCRIPTION="A small and simple web framework for python" HOMEPAGE="http://www.webpy.org" SRC_URI="" LICENSE="public-domain" SLOT="0" KEYWORDS="" IUSE="" DEPEND=">=dev-lang/python-2.3" RDEPEND="${DEPEND}" PYTHON_MODNAME="web" src_test() { TESTS="db template net http utils" cd "${S}" for TEST in ${TESTS} do ${python} web/${TEST}.py || die "Doctest in web/${TEST}.py failed!" done }