mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-02-09 17:02:29 +01:00
sslscan: SSLScan determines what ciphers are supported on SSL-based services.
This commit is contained in:
parent
f72416d355
commit
084fbd780c
2 changed files with 33 additions and 0 deletions
1
net-analyzer/sslscan/Manifest
Normal file
1
net-analyzer/sslscan/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
EBUILD sslscan-9999.ebuild 616 RMD160 1d696b12508bb33be7c49a1316e63dac8a015798 SHA1 6d30bb1f89f32850089a93330e61bd0f5753b783 SHA256 e731d7d339dacf04f87da463fee1fd1db266fcf828e48c6e3c84b9b340503b6c
|
||||
32
net-analyzer/sslscan/sslscan-9999.ebuild
Normal file
32
net-analyzer/sslscan/sslscan-9999.ebuild
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=3
|
||||
|
||||
inherit toolchain-funcs git
|
||||
|
||||
DESCRIPTION="SSLScan determines what ciphers are supported on SSL-based services."
|
||||
HOMEPAGE="https://github.com/ioerror/sslscan"
|
||||
EGIT_REPO_URI="git://github.com/ioerror/{$PN}.git"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="dev-libs/openssl"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
sed -i s/'gcc'/'$(CC)'/ Makefile || die "sed Makefile"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake CC=$(tc-getCC) || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin sslscan
|
||||
doman sslscan.1
|
||||
}
|
||||
Loading…
Reference in a new issue