* Allow for cohabitation with inguma

This commit is contained in:
grimmlin 2009-01-22 00:02:50 +00:00
parent 47bf97c2f5
commit b7fd73c58a
2 changed files with 45 additions and 0 deletions

View file

@ -1,2 +1,3 @@
DIST wifitap-0.4.0.tgz 110612 RMD160 808e709050a92cf88f73ca7c79700e9f8bf776fb SHA1 54d605c021192fb4b1b34f0b37b95b7c8fe4df71 SHA256 5029b4b80e66844e6109ee9840e70a90e453bd4e5169d9e903eaef599d15162e
EBUILD wifitap-0.4.0-r1.ebuild 984 RMD160 c202b44153eb1d71ca198b50f78ac95624349f27 SHA1 4c294cf9523c1ff518cf452e9975f364ab9c8317 SHA256 d106cf5a825ffe3efa218785b86677fdb3ae1798edc08bef6a2f8c3d28ef77e8
EBUILD wifitap-0.4.0.ebuild 983 RMD160 4f4daccb332eb662ef6c034b7ba9bd2926942421 SHA1 2ce9350f3aeb495c7feb7a7823a00b9304c76cc6 SHA256 1625b7188284fa503a277711331e41e83bae62d41bf2e00bf957ff7c7b085717

View file

@ -0,0 +1,44 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /root/portage/net-wireless/wifitap/wifitap-0.3.7.ebuild,v 1.1.1.1 2006/03/29 19:41:59 grimmlin Exp $
inherit python
DESCRIPTION="A wireless tool to do direct connection to client without passing through an AP"
HOMEPAGE="http://sid.rstack.org/index.php/Wifitap_EN"
SRC_URI="http://sid.rstack.org/code/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="speed"
DEPEND="virtual/python
speed? ( dev-python/psyco )
<net-analyzer/scapy-2.0"
S=${WORKDIR}/${PN}
src_install() {
exeinto /usr/bin
newexe wifitap.py wifitap
newexe wifidns.py wifidns
newexe wifiping.py wifiping
# also install scapy as a importable python module
python_version
insinto /usr/$(get_libdir)/python${PYVER}/site-packages
rm scapy.py
doins *.py
dodoc AUTHORS README Changelog BUGS TODO
}
pkg_postinst() {
python_mod_optimize
}
pkg_postrm() {
python_mod_cleanup
}