blob: 9c15832b622bfec2e3e7a69bbd809880f1ade21b (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
DISTUTILS_SINGLE_IMPL=1
inherit distutils-r1
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="examples test"
RDEPEND="=dev-python/pysnmp-3*[${PYTHON_USEDEP}]
>=dev-python/twisted-core-1.3[${PYTHON_USEDEP}]"
DEPEND="test? ( ${RDEPEND} )"
S="${WORKDIR}/${MY_P}"
pkg_setup() {
python-single-r1_pkg_setup
}
python_prepare_all() {
# Disable broken test.
sed -e "s/test_tableGetWithStart/_&/" -i test/test_get.py || die "sed failed"
distutils-r1_python_prepare_all
}
python_test() {
"${PYTHON}" test/test.py || die "tests failed"
}
src_install() {
local HTML_DOCS=( doc/index.html )
use examples && local EXAMPLES=( doc/examples/. )
distutils-r1_src_install
insinto /usr/share/doc/${PF}/html/style/
doins doc/style/sitestyle.css
}
|