diff --git a/app-fuzz/smudge/ChangeLog b/app-fuzz/smudge/ChangeLog deleted file mode 100644 index 8c90daac0..000000000 --- a/app-fuzz/smudge/ChangeLog +++ /dev/null @@ -1,8 +0,0 @@ -# ChangeLog for net-analyzer/scapy -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /root/portage/app-fuzz/smudge/ChangeLog,v 1.1.1.1 2006/03/13 21:06:24 grimmlin Exp $ - -*scapy-1.0.3 (8 Mar 2006) - - Created a different ebuild to make it consistant across packages for app-fuzz - + custom tarball with pre-built fuzz diff --git a/app-fuzz/smudge/Manifest b/app-fuzz/smudge/Manifest deleted file mode 100644 index 7a6d68375..000000000 --- a/app-fuzz/smudge/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST smudge.tar.gz 31350 SHA256 07ad91a612c6a33b614002efa14632bf44d0b6986448c22dfed97fb2102dc23b SHA512 a0bd0192bf6e196e17a43fc2e8510051a11018fd0484d5a89d4eabeb5eab9a464d01947f7b77750d46d357d0259222bcb143dc5fd4508878c2f01c208c7cb983 WHIRLPOOL 80840b8494b6ab9488a0730b54ebf563d6c581245d634afa8a22a497d592e3ad94a6aac1a512f5109883a9a01b780f0e87776064524cbb96f8d9971e2ae9f689 diff --git a/app-fuzz/smudge/files/smudge b/app-fuzz/smudge/files/smudge deleted file mode 100644 index 6a66f22d1..000000000 --- a/app-fuzz/smudge/files/smudge +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -cd /opt/smudge/ -./SMUDGE.py "$@" diff --git a/app-fuzz/smudge/smudge-0.8-r2.ebuild b/app-fuzz/smudge/smudge-0.8-r2.ebuild deleted file mode 100644 index 4a67f95b7..000000000 --- a/app-fuzz/smudge/smudge-0.8-r2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 ) -inherit python-single-r1 python-utils-r1 - -DESCRIPTION="Smudge is basically a port of SPIKE into python scripts" -HOMEPAGE="http://www.pentoo.ch/" -SRC_URI="http://dev.pentoo.ch/~grimmlin/distfiles/${PN}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -#KEYWORDS="~x86 ~ppc ~amd64" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -S="${WORKDIR}"/${PN} - -src_install() { - python_moduleinto smudge - python_domodule *.py - - insinto /opt/smudge/ - dodir /opt/smudge/logs/ - insopts -m0755 - doins *.py - insopts -m0644 - insinto /opt/smudge/misc - doins -r misc/* - - dosbin "${FILESDIR}"/${PN} - dodoc COPYING.txt CHANGELOG.txt README.txt - - }