summaryrefslogtreecommitdiff
blob: fcda0c7068a6a5ea22e3c18b35ee5e10e06699de (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
EAPI=4
PYTHON_DEPEND="2:2.6"
SUPPORT_PYTHON_ABIS="1"

inherit distutils

MY_P="Netzob-${PV}"

DESCRIPTION="Network protocol modelization by reverse engineering"
HOMEPAGE="http://www.netzob.org/"
SRC_URI="http://www.netzob.org/repository/${PV}/${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORD="~x86"
IUSE="doc"

RDEPEND=">=dev-python/python-ptrace-0.4.1
	app-misc/hachoir-subfile
	dev-python/matplotlib
	dev-util/strace
	sys-process/lsof
	>=dev-python/lxml-2.3
	dev-python/bitarray
	dev-python/impacket
	net-libs/nfqueue-bindings[python]"
# python-pcapy
DEPEND="${RDEPEND}
	doc? ( dev-python/sphinx )"

RESTRICT_PYTHON_ABIS="3.*"

S="${WORKDIR}/${MY_P}"
DOCS="README.txt AUTHORS.txt NEWS.txt COPYING.txt"

src_compile() {
	distutils_src_compile

	if use doc; then
		einfo "Generation of documentation"
		pushd docs >/dev/null
		#emake html || die "Generation of documentation failed"
		popd >/dev/null
	fi
}