diff options
author | Petr Vaněk <arkamar@atlas.cz> | 2022-10-04 17:17:23 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-10-07 12:28:29 +0100 |
commit | 21883e07f42779de7452128542c5fcbc81a1cbcb (patch) | |
tree | 220fe8f69330b325be107f7cd35b2fce372ea0b6 /net-analyzer | |
parent | net-analyzer/sslsplit: drop 0.5.4 (diff) | |
download | gentoo-21883e07f42779de7452128542c5fcbc81a1cbcb.tar.gz gentoo-21883e07f42779de7452128542c5fcbc81a1cbcb.tar.bz2 gentoo-21883e07f42779de7452128542c5fcbc81a1cbcb.zip |
net-analyzer/sslsplit: drop 9999
Signed-off-by: Petr Vaněk <arkamar@atlas.cz>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/sslsplit/sslsplit-9999.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/net-analyzer/sslsplit/sslsplit-9999.ebuild b/net-analyzer/sslsplit/sslsplit-9999.ebuild deleted file mode 100644 index 17ad8b68ff9c..000000000000 --- a/net-analyzer/sslsplit/sslsplit-9999.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic - -DESCRIPTION="Transparent SSL/TLS interception" -HOMEPAGE="https://www.roe.ch/SSLsplit" - -LICENSE="BSD-2" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( 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=" - dev-libs/libevent:=[ssl,threads] - dev-libs/openssl:0= - net-libs/libnet:1.1 - net-libs/libpcap - elibc_musl? ( sys-libs/fts-standalone )" -DEPEND="${RDEPEND} - test? ( dev-libs/check )" -BDEPEND="virtual/pkgconfig" - -src_prepare() { - default - - use elibc_musl && append-libs "-lfts" - - sed -i -e 's/-D_FORTIFY_SOURCE=2 //g' \ - -e 's/\<FEATURES\>/SSLSPLIT_FEATURES/g' GNUmakefile || die - sed -i '/opts_suite/d' main.t.c || die -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" SYSCONFDIR="${EPREFIX}/etc" install - dodoc AUTHORS.md NEWS.md README.md -} |