blob: d22f49382751ff4760159f67ff81daf70354ad44 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/twistedsnmp/twistedsnmp-0.3.13.ebuild,v 1.2 2009/11/28 18:14:10 arfrever Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
MY_PN="TwistedSNMP"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="SNMP protocols and APIs for use with the Twisted networking framework"
HOMEPAGE="http://twistedsnmp.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="=dev-python/pysnmp-3*
>=dev-python/twisted-1.3"
DEPEND="${RDEPEND}"
RESTRICT_PYTHON_ABIS="3.*"
S="${WORKDIR}/${MY_P}"
src_prepare() {
distutils_src_prepare
# Disable broken test.
sed -e "s/test_tableGetWithStart/_&/" -i test/test_get.py || die "sed failed"
}
src_test() {
testing() {
PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test/test.py
}
python_execute_function testing
}
src_install() {
distutils_src_install
dohtml doc/index.html
insinto /usr/share/doc/${PF}/html/style/
doins doc/style/sitestyle.css
}
|