blob: dc0744389331b435e47571cf4172ac02f66a1f8d (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sslscan/sslscan-1.8.2.ebuild,v 1.5 2013/11/07 10:22:55 polynomial-c Exp $
EAPI=4
inherit eutils toolchain-funcs
DESCRIPTION="Fast SSL port scanner"
HOMEPAGE="http://sourceforge.net/projects/sslscan/"
SRC_URI="mirror://sourceforge/sslscan/${P}.tgz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/openssl:0"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-makefile.patch
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
dobin sslscan
doman sslscan.1
dodoc Changelog
}
|