From: Petr Vaněk Date: Fri, 17 Nov 2017 11:45:09 +0000 (+0100) Subject: net-analyzer/sslsplit: New ebuild X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=7646dc9903e447c9d6177a13a58f34e626eea8a7;p=gentoo.git net-analyzer/sslsplit: New ebuild Introduce a new ebuild for sslsplit, the tool for transparent SSL/TLS interception. Closes: https://bugs.gentoo.org/637926 Closes: https://github.com/gentoo/gentoo/pull/6210 --- diff --git a/net-analyzer/sslsplit/Manifest b/net-analyzer/sslsplit/Manifest new file mode 100644 index 000000000000..c214847d798f --- /dev/null +++ b/net-analyzer/sslsplit/Manifest @@ -0,0 +1 @@ +DIST sslsplit-0.5.2.tar.gz 1526606 BLAKE2B 2eb9e1525072626cfdfdfe344a61d92cf340a87dbbabfd06c5a7b46ce6dd0305b27949f91260fe192ecf97484676600e39f79a74995b45fb5b59138726cfbffe SHA512 5f0560dbf89355ad0ef443df2fb0358046efd8c35be6c45f27b04495fd6194c826ef1c7b261683e7f22eb14436293d00395329284d9e709e1188c3c885251935 diff --git a/net-analyzer/sslsplit/metadata.xml b/net-analyzer/sslsplit/metadata.xml new file mode 100644 index 000000000000..614c7c40e2e1 --- /dev/null +++ b/net-analyzer/sslsplit/metadata.xml @@ -0,0 +1,25 @@ + + + + + arkamar@atlas.cz + Petr Vaněk + + + proxy-maint@gentoo.org + Proxy Maintainers + + + SSLsplit is a tool for man-in-the-middle attacks against SSL/TLS + encrypted network connections. It is intended to be useful for network + forensics, application security analysis and penetration testing. + + + + daniel@roe.ch + Daniel Roethlisberger + + https://github.com/droe/sslsplit/issues + droe/sslsplit + + diff --git a/net-analyzer/sslsplit/sslsplit-0.5.2.ebuild b/net-analyzer/sslsplit/sslsplit-0.5.2.ebuild new file mode 100644 index 000000000000..2684df318c10 --- /dev/null +++ b/net-analyzer/sslsplit/sslsplit-0.5.2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit flag-o-matic + +DESCRIPTION="Transparent SSL/TLS interception" +HOMEPAGE="http://www.roe.ch/SSLsplit" + +LICENSE="BSD-2" +SLOT="0" +IUSE="test" + +if [[ ${PV} == *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/droe/${PN}" + EGIT_BRANCH="develop" +else + SRC_URI="https://github.com/droe/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +RDEPEND=" + elibc_musl? ( sys-libs/fts-standalone ) + dev-libs/libevent[ssl,threads] + dev-libs/openssl:0=" +DEPEND="${RDEPEND} + test? ( dev-libs/check )" + +src_prepare() { + default + + use elibc_musl && append-libs "-lfts" + + sed -i 's/-D_FORTIFY_SOURCE=2 //g' GNUmakefile || die + sed -i 's/\/SSLSPLIT_FEATURES/g' GNUmakefile version.c || die +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install + dodoc AUTHORS.md NEWS.md README.md +} diff --git a/net-analyzer/sslsplit/sslsplit-9999.ebuild b/net-analyzer/sslsplit/sslsplit-9999.ebuild new file mode 100644 index 000000000000..76b1b4f09086 --- /dev/null +++ b/net-analyzer/sslsplit/sslsplit-9999.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit flag-o-matic + +DESCRIPTION="Transparent SSL/TLS interception" +HOMEPAGE="http://www.roe.ch/SSLsplit" + +LICENSE="BSD-2" +SLOT="0" +IUSE="test" + +if [[ ${PV} == *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/droe/${PN}" + EGIT_BRANCH="develop" +else + SRC_URI="https://github.com/droe/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +RDEPEND=" + elibc_musl? ( sys-libs/fts-standalone ) + dev-libs/libevent[ssl,threads] + dev-libs/openssl:0=" +DEPEND="${RDEPEND} + test? ( dev-libs/check )" + +src_prepare() { + default + + use elibc_musl && append-libs "-lfts" + + sed -i 's/-D_FORTIFY_SOURCE=2 //g' GNUmakefile || die + sed -i 's/\/SSLSPLIT_FEATURES/g' GNUmakefile build.c || die +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install + dodoc AUTHORS.md NEWS.md README.md +}