diff options
Diffstat (limited to 'net-analyzer/ncrack/ncrack-0.3_alpha.ebuild')
-rw-r--r-- | net-analyzer/ncrack/ncrack-0.3_alpha.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net-analyzer/ncrack/ncrack-0.3_alpha.ebuild b/net-analyzer/ncrack/ncrack-0.3_alpha.ebuild new file mode 100644 index 000000000000..dea8df1e2e08 --- /dev/null +++ b/net-analyzer/ncrack/ncrack-0.3_alpha.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ncrack/ncrack-0.3_alpha.ebuild,v 1.1 2010/11/01 21:22:14 hwoarang Exp $ + +EAPI=2 + +inherit base versionator + +MY_P="${PN}-$(get_version_component_range 1-2)ALPHA" + +DESCRIPTION="a high-speed network authentication cracking tool" +HOMEPAGE="http://nmap.org/ncrack/" +SRC_URI="http://nmap.org/${PN}/dist/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="ssl" + +RDEPEND="ssl? ( dev-libs/openssl )" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + sed -i -e '/STRIP =/s:= .*:= echo:' Makefile.in || die +} + +src_configure() { + econf --with-openssl=$(use ssl && echo yes || echo no) +} + +DOCS=( CHANGELOG docs/{AUTHORS,TODO,{engine,mirror_pool,openssh-library}.txt} ) |