diff options
author | Stefan Briesenick <sbriesen@gentoo.org> | 2006-02-06 19:47:37 +0000 |
---|---|---|
committer | Stefan Briesenick <sbriesen@gentoo.org> | 2006-02-06 19:47:37 +0000 |
commit | c70083297a223b4bd380d2068f3cb78226d58411 (patch) | |
tree | 9d6ea6356c2f460369d5665f23d37253ef00d4f9 /dev-python/tlslite/tlslite-0.3.8.ebuild | |
parent | Version bump from upstream (diff) | |
download | historical-c70083297a223b4bd380d2068f3cb78226d58411.tar.gz historical-c70083297a223b4bd380d2068f3cb78226d58411.tar.bz2 historical-c70083297a223b4bd380d2068f3cb78226d58411.zip |
initial commit.
Package-Manager: portage-2.1_pre4-r1
Diffstat (limited to 'dev-python/tlslite/tlslite-0.3.8.ebuild')
-rw-r--r-- | dev-python/tlslite/tlslite-0.3.8.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/tlslite/tlslite-0.3.8.ebuild b/dev-python/tlslite/tlslite-0.3.8.ebuild new file mode 100644 index 000000000000..d5964378984d --- /dev/null +++ b/dev-python/tlslite/tlslite-0.3.8.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/tlslite/tlslite-0.3.8.ebuild,v 1.1 2006/02/06 19:47:37 sbriesen Exp $ + +inherit eutils distutils portability + +DESCRIPTION="TLS Lite is a free python library that implements SSL 3.0 and TLS 1.0/1.1" +HOMEPAGE="http://trevp.net/tlslite/" +SRC_URI="http://trevp.net/tlslite/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="doc gmp" + +DEPEND="virtual/python" +RDEPEND="${DEPEND} + || ( + dev-python/cryptlib_py + dev-python/m2crypto + dev-python/pycrypto + ) + gmp? ( dev-python/gmpy )" + +PYTHON_MODNAME="tlslite" + +src_install(){ + DOCS="readme.txt" + distutils_src_install + if use doc; then + cd docs && treecopy . "${D}/usr/share/doc/${PF}/html" + fi +} |