2012-06-18 18:12:02 +04:00
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
2012-02-06 16:39:49 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2012-06-18 18:12:02 +04:00
|
|
|
|
|
|
|
EAPI=4
|
2012-02-06 16:39:49 +04:00
|
|
|
|
|
|
|
DESCRIPTION="A utility for finding, fingerprinting and testing IKE VPN servers"
|
|
|
|
HOMEPAGE="http://www.nta-monitor.com/ike-scan/"
|
|
|
|
SRC_URI="http://www.nta-monitor.com/ike-scan/download/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~ppc x86"
|
|
|
|
IUSE="ssl"
|
|
|
|
|
|
|
|
DEPEND="ssl? ( dev-libs/openssl )"
|
2012-06-18 18:12:02 +04:00
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
# Fix buffer overflow, bug #277556
|
|
|
|
sed \
|
|
|
|
-e "/MAXLINE/s:255:511:g" \
|
|
|
|
-i ike-scan.h || die
|
|
|
|
}
|
2012-02-06 16:39:49 +04:00
|
|
|
|
2012-06-18 18:12:02 +04:00
|
|
|
src_configure() {
|
2012-02-06 16:39:49 +04:00
|
|
|
# --disable-lookup prevents ike-scan from phoning home
|
|
|
|
# for more information, please see bug 157507
|
2012-06-18 18:12:02 +04:00
|
|
|
econf $(use_with ssl openssl) --disable-lookup
|
2012-02-06 16:39:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
2012-06-18 18:12:02 +04:00
|
|
|
default
|
2012-02-06 16:39:49 +04:00
|
|
|
dodoc udp-backoff-fingerprinting-paper.txt
|
|
|
|
}
|