diff --git a/net-analyzer/ssltest/Manifest b/net-analyzer/ssltest/Manifest new file mode 100644 index 000000000..16b085c0b --- /dev/null +++ b/net-analyzer/ssltest/Manifest @@ -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 diff --git a/net-analyzer/ssltest/ssltest-0.4.ebuild b/net-analyzer/ssltest/ssltest-0.4.ebuild new file mode 100644 index 000000000..f6886f6f1 --- /dev/null +++ b/net-analyzer/ssltest/ssltest-0.4.ebuild @@ -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" +}