diff options
author | 2012-05-08 17:33:13 +0000 | |
---|---|---|
committer | 2012-05-08 17:33:13 +0000 | |
commit | b0328b6b6583850c8f7543dee0bc88289673e9c4 (patch) | |
tree | 650fdc0fc58c58b12d791fe4fb1f507bf9b66ece /net-analyzer/sslscan/sslscan-1.8.2.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-b0328b6b6583850c8f7543dee0bc88289673e9c4.tar.gz gentoo-2-b0328b6b6583850c8f7543dee0bc88289673e9c4.tar.bz2 gentoo-2-b0328b6b6583850c8f7543dee0bc88289673e9c4.zip |
Initial import. Moved here from overlay graaff.
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/sslscan/sslscan-1.8.2.ebuild')
-rw-r--r-- | net-analyzer/sslscan/sslscan-1.8.2.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/net-analyzer/sslscan/sslscan-1.8.2.ebuild b/net-analyzer/sslscan/sslscan-1.8.2.ebuild new file mode 100644 index 000000000000..2f2bed853ceb --- /dev/null +++ b/net-analyzer/sslscan/sslscan-1.8.2.ebuild @@ -0,0 +1,32 @@ +# 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 +} |