Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ike-scan/
Date: Sat, 01 Oct 2022 00:30:31
Message-Id: 1664583964.22977abc5e69c5bc9e3c0b29de30d47bc6c05465.sam@gentoo
1 commit: 22977abc5e69c5bc9e3c0b29de30d47bc6c05465
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 1 00:26:04 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 1 00:26:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22977abc
7
8 net-analyzer/ike-scan: drop 99999
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-analyzer/ike-scan/ike-scan-99999.ebuild | 43 -----------------------------
13 1 file changed, 43 deletions(-)
14
15 diff --git a/net-analyzer/ike-scan/ike-scan-99999.ebuild b/net-analyzer/ike-scan/ike-scan-99999.ebuild
16 deleted file mode 100644
17 index 4e89ede7807a..000000000000
18 --- a/net-analyzer/ike-scan/ike-scan-99999.ebuild
19 +++ /dev/null
20 @@ -1,43 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -inherit autotools git-r3
26 -
27 -DESCRIPTION="A utility for finding, fingerprinting and testing IKE VPN servers"
28 -HOMEPAGE="https://github.com/royhills/ike-scan/"
29 -EGIT_REPO_URI="https://github.com/royhills/ike-scan"
30 -
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -IUSE="ssl"
34 -KEYWORDS=""
35 -
36 -DEPEND="
37 - ssl? (
38 - dev-libs/openssl:0=
39 - )
40 -"
41 -RDEPEND="
42 - ${DEPEND}
43 -"
44 -
45 -src_prepare() {
46 - # Fix buffer overflow, bug #277556
47 - sed \
48 - -e "/MAXLINE/s:255:511:g" \
49 - -i ike-scan.h || die
50 -
51 - default
52 -
53 - eautoreconf
54 -}
55 -
56 -src_configure() {
57 - econf $(use_with ssl openssl)
58 -}
59 -
60 -src_install() {
61 - default
62 - dodoc udp-backoff-fingerprinting-paper.txt
63 -}