summaryrefslogtreecommitdiff
path: root/net-analyzer/ike-scan/ike-scan-1.9.4.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer/ike-scan/ike-scan-1.9.4.ebuild')
-rw-r--r--net-analyzer/ike-scan/ike-scan-1.9.4.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/net-analyzer/ike-scan/ike-scan-1.9.4.ebuild b/net-analyzer/ike-scan/ike-scan-1.9.4.ebuild
deleted file mode 100644
index aa8522dc3d66..000000000000
--- a/net-analyzer/ike-scan/ike-scan-1.9.4.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit autotools
-
-DESCRIPTION="A utility for finding, fingerprinting and testing IKE VPN servers"
-HOMEPAGE="https://github.com/royhills/ike-scan/"
-SRC_URI="https://github.com/royhills/ike-scan/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE="ssl"
-
-DEPEND="
- ssl? (
- dev-libs/openssl:0=
- )
-"
-RDEPEND="
- ${DEPEND}
-"
-
-src_prepare() {
- # Fix buffer overflow, bug #277556
- sed \
- -e "/MAXLINE/s:255:511:g" \
- -i ike-scan.h || die
-
- default
-
- eautoreconf
-}
-
-src_configure() {
- econf $(use_with ssl openssl)
-}
-
-src_install() {
- default
- dodoc udp-backoff-fingerprinting-paper.txt
-}