mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-12 01:41:01 +02:00
sslstrip: version bump
This commit is contained in:
parent
ebd7f934bc
commit
ea2c4c47a2
2 changed files with 45 additions and 0 deletions
|
|
@ -1,3 +1,5 @@
|
|||
AUX sslstrip 53 RMD160 6048af5a8c685f6ddeacfe411e87aecae1ecff72 SHA1 0b66e9826b4f60cec22f6999a8dfefa9d7ae8374 SHA256 19a745e303542c58c270171feae1112dd24d2dd84155cdd42596a2d2403ccb42
|
||||
DIST sslstrip-0.7.tar.gz 21223 RMD160 328153487197f2f6dd082871589f78e749788b48 SHA1 7219328b4d43d96b7a0d629355fd818310d61c9b SHA256 6f009efc2733c932f76c6d69fc629ec23922eb579433c53349d303becfd9a296
|
||||
DIST sslstrip-0.9.tar.gz 22198 RMD160 a88c0bd0975bcf777e28b54eafa0979d30b1bc41 SHA1 b2610a018f8af7a7253632647145035299ce2538 SHA256 edf48d45b248dbd4eba94bfb0fbed7090f2ba2b262b16a155b1a0c15268cf4d3
|
||||
EBUILD sslstrip-0.7.ebuild 876 RMD160 dbf55c6e15f422e036390569233e350650719928 SHA1 4202260cf50b509a1459a25501f5df570a3b28da SHA256 a542e12b0aacb20cdf2c9091b47aab3c7b836cebca77954ae6b6e6f956c7c946
|
||||
EBUILD sslstrip-0.9.ebuild 878 RMD160 2197042f64330fb46a7cd57851c06c3e1fb562d0 SHA1 f8816b14ec084501375d291d09648c4938867868 SHA256 15754184203f4ac32f006f7b1104969748294c37678ccd654649f4740fb85422
|
||||
|
|
|
|||
43
net-analyzer/sslstrip/sslstrip-0.9.ebuild
Normal file
43
net-analyzer/sslstrip/sslstrip-0.9.ebuild
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=3
|
||||
|
||||
inherit python distutils
|
||||
|
||||
DESCRIPTION="sslstrip remove https and forwards http"
|
||||
HOMEPAGE="http://www.thoughtcrime.org/software/sslstrip/"
|
||||
SRC_URI="http://www.thoughtcrime.org/software/sslstrip/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND=">=dev-lang/python-2.5
|
||||
>=dev-python/twisted-web-8.1.0"
|
||||
|
||||
src_compile() {
|
||||
einfo "Nothing to compile"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodir /usr/lib/"${PN}"
|
||||
insinto /usr/lib/"${PN}"
|
||||
doins sslstrip.py lock.ico
|
||||
dodir /usr/lib/${PN}/sslstrip
|
||||
insinto /usr/lib/${PN}/sslstrip
|
||||
doins sslstrip/*.py
|
||||
dosbin "${FILESDIR}"/sslstrip
|
||||
dodoc README
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
python_mod_optimize /usr/lib/sslstrip/sslstrip/
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
python_mod_cleanup /usr/lib/sslstrip/sslstrip/
|
||||
}
|
||||
Loading…
Reference in a new issue