diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2002-09-04 03:51:30 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2002-09-04 03:51:30 +0000 |
commit | e6e7572d17af7931a41971be2c67ab004ee3312d (patch) | |
tree | 0b84434083927b6a4beabd1469bd1b4e9ad54804 /dev-python/pycrypto/pycrypto-1.9_alpha4.ebuild | |
parent | Masked pycrypto pending freeze. (diff) | |
download | gentoo-2-e6e7572d17af7931a41971be2c67ab004ee3312d.tar.gz gentoo-2-e6e7572d17af7931a41971be2c67ab004ee3312d.tar.bz2 gentoo-2-e6e7572d17af7931a41971be2c67ab004ee3312d.zip |
New package.
Diffstat (limited to 'dev-python/pycrypto/pycrypto-1.9_alpha4.ebuild')
-rw-r--r-- | dev-python/pycrypto/pycrypto-1.9_alpha4.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-python/pycrypto/pycrypto-1.9_alpha4.ebuild b/dev-python/pycrypto/pycrypto-1.9_alpha4.ebuild new file mode 100644 index 000000000000..6244dbf07b1e --- /dev/null +++ b/dev-python/pycrypto/pycrypto-1.9_alpha4.ebuild @@ -0,0 +1,26 @@ +# Copyright 2002 Arcady Genkin <agenkin@thpoon.com> +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/pycrypto-1.9_alpha4.ebuild,v 1.1 2002/09/04 03:51:30 agenkin Exp $ + +DESCRIPTION="Python cryptography toolkit." +HOMEPAGE="http://www.amk.ca/python/code/crypto.html" +LICENSE="freedist" + +DEPEND="virtual/glibc + dev-lang/python" +RDEPEND="${DEPEND}" + +SLOT="0" +KEYWORDS="x86" +SRC_URI="http://www.amk.ca/files/python/${P/_alpha/a}.tar.gz" + +S="${WORKDIR}/${P/_alpha/a}" + +src_compile() { + python setup.py build || die +} + +src_install () { + python setup.py install --root=${D} --prefix=/usr || die + dodoc ACKS ChangeLog LICENSE MANIFEST PKG-INFO README TODO +} |