You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
# Copyright 1999-2020 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="elibc_musl 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"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-install.patch"
|
|
)
|
|
|
|
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" install
|
|
dodoc AUTHORS.md NEWS.md README.md sslsplit.conf
|
|
}
|