You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/sslscan/sslscan-1.8.2.ebuild

33 lines
557 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit toolchain-funcs
DESCRIPTION="Fast SSL port scanner"
HOMEPAGE="http://www.titania.co.uk/sslscan.php"
SRC_URI="mirror://sourceforge/sslscan/${P}.tgz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/openssl"
RDEPEND="${DEPEND}"
src_prepare() {
sed -i -e 's/gcc -g/$(CC)/' Makefile || die
}
src_compile() {
emake CC=$(tc-getCC) || die
}
src_install() {
dobin sslscan
doman sslscan.1
dodoc Changelog
}