ike-scan: remove in Gentoo's favour

This commit is contained in:
Anton Bolshakov 2025-02-28 09:01:14 +08:00
parent 0bcdcb40ae
commit 4b5c220883
No known key found for this signature in database
GPG key ID: 32BDCED870788F04
3 changed files with 0 additions and 91 deletions

View file

@ -1,2 +0,0 @@
DIST ike-scan-1.9.4_p20201223.zip 1575048 BLAKE2B c81cbc332df98e53435a9e6c8730660fc7ea4348d26609b9553edf1b0f206a38912956d1199a8fcc1ff4748d7780b75140552b80b6426dd65714f8d59a6f5df8 SHA512 41c3ef3bc91d585f7b002bb34aa9081fac79adf1f60d7f8a7f327cc79e8a53e2f9aeb80d453a05c6d4d5c40e828b3245d7a185fb57f10c6f824b3d899385ddab
DIST ike-scan-1.9.5.tar.gz 1542264 BLAKE2B 3095c2929c7f24da43852402a3e5cfe73dd65100773283ef08b791784be2e2f04bba24843469e407695a027e76e1e0aa18effabc210643414677a35df7f2614c SHA512 5eb98e41c639bc30996041f4e759a6ada7f4baa5b8102992ac2313ed8ff51032d877b116bc24972e0ecd652290849aa67a63523d92ee63af6577112350ee5590

View file

@ -1,46 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="A utility for finding, fingerprinting and testing IKE VPN servers"
HOMEPAGE="http://www.nta-monitor.com/wiki/index.php/Ike-scan_Documentation"
HASH_COMMIT="b85ea4cf0f0b850ca2eba4397ae985e0ab0a874b"
SRC_URI="https://github.com/royhills/ike-scan/archive/${HASH_COMMIT}.zip -> ${P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="ssl"
DEPEND="
ssl? (
dev-libs/openssl:0=
)
"
RDEPEND="
${DEPEND}
"
S=${WORKDIR}/${PN}-${HASH_COMMIT}
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
}

View file

@ -1,43 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
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
}