diff options
author | Sam James <sam@gentoo.org> | 2022-10-01 01:26:04 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-10-01 01:26:04 +0100 |
commit | 22977abc5e69c5bc9e3c0b29de30d47bc6c05465 (patch) | |
tree | cd5cf223e18aed93c0de4c72ee35f293f38f9332 /net-analyzer/ike-scan | |
parent | net-analyzer/sniffit: fix build w/ Clang 16 (diff) | |
download | gentoo-22977abc5e69c5bc9e3c0b29de30d47bc6c05465.tar.gz gentoo-22977abc5e69c5bc9e3c0b29de30d47bc6c05465.tar.bz2 gentoo-22977abc5e69c5bc9e3c0b29de30d47bc6c05465.zip |
net-analyzer/ike-scan: drop 99999
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/ike-scan')
-rw-r--r-- | net-analyzer/ike-scan/ike-scan-99999.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/net-analyzer/ike-scan/ike-scan-99999.ebuild b/net-analyzer/ike-scan/ike-scan-99999.ebuild deleted file mode 100644 index 4e89ede7807a..000000000000 --- a/net-analyzer/ike-scan/ike-scan-99999.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 git-r3 - -DESCRIPTION="A utility for finding, fingerprinting and testing IKE VPN servers" -HOMEPAGE="https://github.com/royhills/ike-scan/" -EGIT_REPO_URI="https://github.com/royhills/ike-scan" - -LICENSE="GPL-2" -SLOT="0" -IUSE="ssl" -KEYWORDS="" - -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 -} |