blob: a87c32fc192ae161c340239fca18dabca3e2c21c (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyopenssl/pyopenssl-0.8.ebuild,v 1.1 2009/02/04 13:26:23 patrick Exp $
inherit distutils eutils
MY_P=${P/openssl/OpenSSL}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Python interface to the OpenSSL library"
HOMEPAGE="http://pyopenssl.sourceforge.net/"
SRC_URI="mirror://sourceforge/pyopenssl/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc"
RDEPEND="dev-lang/python
>=dev-libs/openssl-0.9.6g"
DEPEND="${RDEPEND}
doc? ( >=dev-tex/latex2html-2002.2 )"
src_compile() {
distutils_src_compile
if use doc; then
addwrite /var/cache/fonts
# This one seems to be unnecessary with a recent tetex, but
# according to bugs it was definitely necessary in the past,
# so leaving it in.
addwrite /usr/share/texmf/fonts/pk
cd "${S}"/doc
make html ps dvi
fi
}
src_install() {
distutils_src_install
if use doc; then
dohtml "${S}"/doc/html/*
dodoc "${S}"/doc/pyOpenSSL.*
fi
# install examples
docinto examples
dodoc "${S}"/examples/*
docinto examples/simple
dodoc "${S}"/examples/simple/*
}
src_test() {
cd test
PYTHONPATH="$(ls -d ../build/lib.*)" "${python}" test_crypto.py ||\
die "tests failed."
PYTHONPATH="$(ls -d ../build/lib.*)" "${python}" test_ssl.py ||\
die "tests failed."
}
|