add local overlay
This commit is contained in:
commit
4883c62e9a
68 changed files with 2719 additions and 0 deletions
2
dev-python/netzob/Manifest
Normal file
2
dev-python/netzob/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST Netzob-0.4.1.tar.gz 1102566 SHA256 f3b03410fdb11d74fbf08ce3e8bbe50d66ab4885564a4d1e3038648079df1e71 SHA512 315d651072b984520949a161169108503969c32db118f292e6a6c09d68e354add37201a9fb783f11141e7f70ba90ab00b30f5a014f4935d08da96e02d2ece29e WHIRLPOOL 44f96ecc1e4d9b4f180cc21e1103d788cd0b83a8e341f75767fc0a2c42ae25d3ae18a55f0a5dae6821f22e1dae34c67fd96531a617490bfd61e0d6753c505bd2
|
||||
EBUILD netzob-0.4.1.ebuild 1360 SHA256 89d68ee0845b2ce60cb9fa904f2ed16a6171e434cffe24f701e4140980fc2659 SHA512 c7bb0fec9c55e13ef95109c95a46bab322337bbc31a018354ca12e78c10fdcf92de5d97261664dc7a8c2ced30989c56d65529edad3bb187581bae49346915d25 WHIRLPOOL 580ead856b7269458c8177bedcbc3bd5f4c546c7406eb08f7837f8bc487bf32cda1ee2b7406c071de9fb961fec7ee1d06dad37f76988f4d2df1234e612036364
|
||||
59
dev-python/netzob/netzob-0.4.1.ebuild
Normal file
59
dev-python/netzob/netzob-0.4.1.ebuild
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=( python{2_6,2_7} )
|
||||
|
||||
inherit eutils distutils-r1 python-r1
|
||||
|
||||
MY_PN="Netzob"
|
||||
MY_P="${MY_PN}-${PV}"
|
||||
|
||||
DESCRIPTION="Network protocol modelization by reverse engineering"
|
||||
HOMEPAGE="http://www.netzob.org/"
|
||||
SRC_URI="http://www.netzob.org/repository/${PV}/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE="doc debug"
|
||||
|
||||
RDEPEND="
|
||||
x11-libs/gtk+:3
|
||||
dev-python/impacket
|
||||
dev-util/strace
|
||||
sys-process/lsof
|
||||
>=dev-python/lxml-2.3
|
||||
dev-python/bitarray
|
||||
dev-python/Babel
|
||||
dev-python/pygobject:3
|
||||
dev-python/pcapy
|
||||
dev-python/python-ptrace
|
||||
>=dev-python/httplib2-0.7.0
|
||||
media-gfx/graphviz"
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-python/setuptools-0.6.30-r1
|
||||
doc? ( >=dev-python/sphinx-1.1.3 )"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
DOCS=( README.rst AUTHORS.txt NEWS.rst COPYING.txt )
|
||||
|
||||
src_compile() {
|
||||
use debug && NETZOB_COMPILE_PROFILE="debug ${NETZOB_COMPILE_PROFILE}"
|
||||
export NETZOB_COMPILE_PROFILE
|
||||
distutils-r1_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-r1_src_install
|
||||
use doc && HTML_DOCS=( doc/documentation/html/ )
|
||||
doman doc/netzob.1
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue