blob: 56749b84ac6d980564ca912950ab2551a92fc93f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit base versionator git-r3
EGIT_REPO_URI="https://github.com/nmap/ncrack"
DESCRIPTION="a high-speed network authentication cracking tool"
HOMEPAGE="http://nmap.org/ncrack/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="libressl ssh ssl"
RDEPEND="ssl? (
!libressl? ( dev-libs/openssl:0[static-libs(+)?] )
libressl? ( dev-libs/libressl[static-libs(+)?] )
)
ssh? ( net-misc/openssh )"
DEPEND="${RDEPEND}"
DOCS=( CHANGELOG docs/{AUTHORS,TODO,{devguide,mirror_pool,ncrack\.usage,openssh-library}.txt} )
src_configure() {
econf --with-openssl=$(use ssl && echo yes || echo no) \
--with-openssh=$(use ssh && echo yes || echo no)
}
src_install() {
base_src_install
doman docs/${PN}.1 || die "doman failed"
}
|