blob: 60f8d0f1d85b0fb27e868fafe61d450a77e775b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
inherit distutils eutils python
DESCRIPTION="A python wrapper for OpenSSL"
HOMEPAGE="http://tachyon.in/ncrypt/"
SRC_URI="http://fs.tachyon.in.s3.amazonaws.com/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="dev-libs/openssl
dev-python/pyrex"
RDEPEND="${DEPEND}"
RESTRICT_PYTHON_ABIS="3.*"
DOCS="website/usage.txt"
src_prepare() {
epatch "${FILESDIR}/cinit.patch"
}
|