mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 05:41:12 +02:00
wifite: version and dependencies fixes
This commit is contained in:
parent
2be0c7e9af
commit
b09287df36
4 changed files with 25 additions and 14 deletions
|
|
@ -1,4 +1,4 @@
|
|||
AUX wifite-noupgrade.patch 558 RMD160 c73b235312f84d10628f0c6ab265007f7643592f SHA1 6b964b9f1738816f4b9ec3dc0c9202d1aee4d84f SHA256 0cb4ad0ff3908b0f306cc266dd59a317922c481af809b4b1db210c03f3921023
|
||||
AUX wifite-noupgrade.patch 1087 RMD160 9378e26f0ef9f7e2af0ed7b643ec0a1542c6fb44 SHA1 b4a02e0f2861d87d6bb6f3f6e1f7201c1f9cc158 SHA256 7f304ff8dc7f7ab9e6dcf366f457d7ea15c58db2e5e398ea9297ba440a6b0a66
|
||||
DIST wifite.py 116616 RMD160 1a0140c4ee8fcd7f7c3fe060e9ed3efc15634ea7 SHA1 ec431eb9b868a9bc756c66790580c6ab34262bf4 SHA256 78087daf8346cfb71a13a49ff93f7d312d82889f180f5d750f7e27ba3a30621a
|
||||
EBUILD wifite-0.64-r1.ebuild 870 RMD160 637d9592bf5365bebc69764c1eaec152958c43bd SHA1 855e900371ca992f265974ca6adbc820690f0d1f SHA256 a620d20ec98ebb529f294f45807d67842cc016da86f6154200f49ea1caa155e4
|
||||
MISC metadata.xml 460 RMD160 d2d6e86335e00c10f20f309d33da6482d3982954 SHA1 ae39d230149052dcd911c032d0c8ca1b4bf7ca8e SHA256 020d8edbde3fff6903270590d30e3230bfff509ea4deac49498c30d5132eef8b
|
||||
EBUILD wifite-0.68.ebuild 950 RMD160 6eb49b52c07d4c7a34369920da2a37c73613c1e8 SHA1 a3c118966526272fdb47b727284b4f5629cef7a6 SHA256 f918f96dd47032bcd9df93c537c4ed5a743c67afcf782efa51219c5a011958db
|
||||
MISC metadata.xml 459 RMD160 49d2ee145b93e7a161d4dfe1e074284633a8985a SHA1 bf9168039474074086b376eface12a169931ec0e SHA256 37f7bed856328ff87c08e4aa096bf5118363eac80dc97e58ef1a795c94f3bf49
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
--- wifite.orig 2011-04-05 14:12:52.000000000 +0800
|
||||
+++ wifite 2011-04-05 14:17:12.990000001 +0800
|
||||
@@ -1051,7 +1051,7 @@
|
||||
print G+".;' ,;' ,;' `;, `;, `;, "
|
||||
print G+":: :: : "+GR+"( )"+G+" : :: :: "+GR+"mass WEP/WPA cracker"
|
||||
print G+"':. ':. ':. "+GR+"/_\\"+G+" ,:' ,:' ,:' "
|
||||
- print G+" ':. ':. "+GR+"/___\\"+G+" ,:' ,:' "+GR+"designed for backtrack4"
|
||||
+ print G+" ':. ':. "+GR+"/___\\"+G+" ,:' ,:' "+GR+"designed for backtrack4, but we like Pentoo"
|
||||
print G+" ':. "+GR+"/_____\\"+G+" ,:' "
|
||||
print G+" "+GR+"/ \\"+G+" "
|
||||
print W
|
||||
@@ -1104,8 +1104,7 @@
|
||||
|
||||
elif a == '-update' or a == '--update' or a == '-upgrade' or a == '--upgrade':
|
||||
|
|
|
|||
|
|
@ -6,14 +6,14 @@
|
|||
<email>antonspam@pentoo.org</email>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="dict">
|
||||
installes an extra dictionary
|
||||
</flag>
|
||||
<flag name="extra">
|
||||
Enables use of extra functions
|
||||
</flag>
|
||||
<flag name="tk">
|
||||
Enables use of the TK gui
|
||||
</flag>
|
||||
<flag name="wep">
|
||||
Enables use of the wep cracking
|
||||
</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
|
|
|||
|
|
@ -7,25 +7,27 @@ PYTHON_DEPEND="2:2.6"
|
|||
PYTHON_USE_WITH="tk"
|
||||
PYTHON_USE_WITH_OPT="tk"
|
||||
|
||||
inherit python eutils
|
||||
inherit python eutils versionator
|
||||
|
||||
AVC=( $(get_version_components) )
|
||||
|
||||
DESCRIPTION="Mass WEP/WPA cracker"
|
||||
HOMEPAGE="http://code.google.com/p/wifite/"
|
||||
SRC_URI="http://wifite.googlecode.com/svn-history/r68/trunk/wifite.py"
|
||||
SRC_URI="http://wifite.googlecode.com/svn-history/r${AVC[1]}/trunk/wifite.py"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="extra tk wep"
|
||||
IUSE="dict extra tk"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="net-wireless/aircrack-ng
|
||||
dev-python/pexpect
|
||||
dict? ( sys-apps/cracklib-words )
|
||||
extra? ( app-crypt/pyrit
|
||||
dev-python/pexpect
|
||||
net-wireless/cowpatty )
|
||||
wep? ( net-analyzer/macchanger )"
|
||||
|
||||
#sys-apps/cracklib-words
|
||||
net-wireless/cowpatty
|
||||
net-analyzer/macchanger )
|
||||
tk? ( x11-terms/xterm )"
|
||||
|
||||
S=${WORKDIR}/${PN}
|
||||
|
||||
Loading…
Reference in a new issue