blob: 782b86176bec83d4c47f06dc3f0f40f09e7b5fa1 (
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-2012 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.4 2012/08/06 06:22:09 ssuominen Exp $
EAPI=4
inherit eutils toolchain-funcs
DESCRIPTION="Fast SSL port scanner"
HOMEPAGE="https://www.titania-security.com/labs/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
}
|