diff options
Diffstat (limited to 'dev-python/netzob/netzob-0.3.3-r1.ebuild')
-rw-r--r-- | dev-python/netzob/netzob-0.3.3-r1.ebuild | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/dev-python/netzob/netzob-0.3.3-r1.ebuild b/dev-python/netzob/netzob-0.3.3-r1.ebuild deleted file mode 100644 index 4473691..0000000 --- a/dev-python/netzob/netzob-0.3.3-r1.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=4 -PYTHON_DEPEND="2:2.6" -SUPPORT_PYTHON_ABIS="1" - -inherit distutils - -MY_PV=${PV/_/-} -MY_P="Netzob-${PV}" - -DESCRIPTION="Network protocol modelization by reverse engineering" -HOMEPAGE="http://www.netzob.org/" -SRC_URI="http://www.netzob.org/repository/${MY_PV}/${MY_P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~x86 ~amd64" -IUSE="doc" - -RDEPEND=" - dev-python/pcapy - dev-python/impacket - dev-python/pygtk - >=dev-python/python-ptrace-0.4.1 - dev-python/matplotlib - dev-util/strace - sys-process/lsof - >=dev-python/lxml-2.3 - dev-python/bitarray -" -DEPEND="${RDEPEND} - dev-python/setuptools - doc? ( dev-python/sphinx )" - -RESTRICT_PYTHON_ABIS="3.*" - -S="${WORKDIR}/${MY_P}" -DOCS="README.txt AUTHORS.txt NEWS.txt COPYING.txt" - -src_prepare() { - distutils_src_prepare -} - -src_compile() { - distutils_src_compile - - if use doc; then - einfo "Generation of documentation" - pushd doc/documentation >/dev/null - sphinx-build -b html source html || die "Generation of documentation failed" - popd >/dev/null - fi -} - -src_install() { - distutils_src_install - - doman doc/netzob.1 - if use doc; then - dohtml -r doc/documentation/html/* || die "dohtml failed" - fi -} |