net-analyzer/ssltest new tool for web ssl ciphers check and more

This commit is contained in:
Anton Bolshakov 2010-11-10 07:51:28 +00:00
parent cf83bac2e8
commit d1095eb360
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST ssltest-0.4.pl 20630 RMD160 572e120cbd445b01bc535797121b8dae343f16fb SHA1 cc08589121642053de14ae7f425b1ad1c8433d45 SHA256 81fb3b417143752a49bf4b3db15c078a4719376d30a2a145b354fe059f22e1d5
EBUILD ssltest-0.4.ebuild 617 RMD160 f975b7e64a4897911f0649f0394d15610de96b85 SHA1 6806f0c173e46caac77bf61e839f3870b2083f2f SHA256 8539952a73a7795b8d48d57598c29d455002677ac2969045f83060a7879feaaf

View file

@ -0,0 +1,32 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
DESCRIPTION="SSL testing tool written in perl"
HOMEPAGE="http://sites.google.com/site/lupingreycorner/"
SRC_URI="http://sites.google.com/site/lupingreycorner/${P}.pl"
LICENSE="AS IS"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-perl/IO-Socket-SSL"
S="${WORKDIR}"/${PN}
src_unpack() {
einfo "Nothing to unpack"
mkdir "${S}"
cp "${DISTDIR}"/"${P}".pl "${S}"/ssltest
}
src_compile() {
einfo "Nothing to compile"
}
src_install() {
dobin ssltest || die "install failed"
}