# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/paramiko/paramiko-1.6.3.ebuild,v 1.8 2007/07/11 06:19:47 mr_bones_ Exp $ inherit distutils eutils DESCRIPTION="SSH2 implementation for Python" HOMEPAGE="http://www.lag.net/paramiko/" SRC_URI="http://www.lag.net/paramiko/download/${P}.zip" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 ~hppa ia64 ~ppc sparc x86 ~x86-fbsd" IUSE="" RDEPEND=">=dev-python/pycrypto-1.9_alpha6" DEPEND="${RDEPEND} app-arch/unzip" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}/${P}-no-setuptools.patch" } src_install() { distutils_src_install dohtml -r docs/* insinto /usr/share/doc/${PF} doins -r demos } src_test() { "${python}" test.py || die "tests failed" }