summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Elsner <open@mindrunner.de>2016-04-19 20:15:40 +0200
committerLukas Elsner <open@mindrunner.de>2016-04-19 20:15:40 +0200
commite4da4c264c534503d7044b81ff7f3560882c0133 (patch)
tree34a4330efda553144283be5047d287bf1e0d10aa /net-analyzer
parentadd missing files dir (diff)
downloadluman-e4da4c264c534503d7044b81ff7f3560882c0133.tar.gz
luman-e4da4c264c534503d7044b81ff7f3560882c0133.tar.bz2
luman-e4da4c264c534503d7044b81ff7f3560882c0133.zip
cleanup
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/sslstrip/Manifest3
-rw-r--r--net-analyzer/sslstrip/files/sslstrip3
-rw-r--r--net-analyzer/sslstrip/sslstrip-0.9.ebuild43
3 files changed, 0 insertions, 49 deletions
diff --git a/net-analyzer/sslstrip/Manifest b/net-analyzer/sslstrip/Manifest
deleted file mode 100644
index 453a0c3..0000000
--- a/net-analyzer/sslstrip/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-AUX sslstrip 53 SHA256 19a745e303542c58c270171feae1112dd24d2dd84155cdd42596a2d2403ccb42 SHA512 262f656a5e4853ee65c068152ac73d4760db544d655d9872487a74af6e82e650f85eb90e0d9cdc1455dc35dc28762f1208a064b81da03dbf3c3971f4a0130ecd WHIRLPOOL fc1c7737a839c8b819863d6450b49f4dc56c4aa3c729c0bc37fcd7fdb55d6adbc685ca3adedd02072282e79ed95a4b897d6f31a9ca41d85115debd3146c2982c
-DIST sslstrip-0.9.tar.gz 22198 SHA256 edf48d45b248dbd4eba94bfb0fbed7090f2ba2b262b16a155b1a0c15268cf4d3 SHA512 f6e24db0dcb0c4e137b5828d043db17f5d59e46181f51b1814cf66466b55d6a11a95e7ee8748e59faacfc6176689d030af5fa5c99dedce47e8f9ca6cc7316abc WHIRLPOOL 359ee4009d3dc898c02e4b0d8ba8a7eea697d1b2b7eb50bf7ced281db9e7df87d5c5a06e3b4df9f03fce964f096264d14e0f1e95acf5c7649d29786ac6e01fdd
-EBUILD sslstrip-0.9.ebuild 878 SHA256 15754184203f4ac32f006f7b1104969748294c37678ccd654649f4740fb85422 SHA512 06d8f6f20db7173009a94172e074e1086df645b5580ebfe1555d600994ef9ac3724560830176e491fd2e9361d868ea24fed8ea44fb39adba13e7e41497c6033f WHIRLPOOL e862e49812a29dd1e2e954e7989a8e3c9def42d421b502aefe136749233f3ca98cc3001883ddb0dd8facfe6b4cd7698eeff0033b2d0da516dfca628eb9a60346
diff --git a/net-analyzer/sslstrip/files/sslstrip b/net-analyzer/sslstrip/files/sslstrip
deleted file mode 100644
index 558cb63..0000000
--- a/net-analyzer/sslstrip/files/sslstrip
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/bash
-
-python /usr/lib/sslstrip/sslstrip.py $@
diff --git a/net-analyzer/sslstrip/sslstrip-0.9.ebuild b/net-analyzer/sslstrip/sslstrip-0.9.ebuild
deleted file mode 100644
index 372d6f2..0000000
--- a/net-analyzer/sslstrip/sslstrip-0.9.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# 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/
-}