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.
gentoo-overlay/net-libs/srt/srt-9999.ebuild

56 lines
1.1 KiB

# Copyright 2018-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
CMAKE_ECLASS=cmake
inherit cmake-multilib
DESCRIPTION="Secure Reliable Transport (SRT) library and tools"
HOMEPAGE="https://github.com/Haivision/srt"
if [[ ${PV} == *9999 ]] ; then
EGIT_REPO_URI="https://github.com/Haivision/${PN}.git"
inherit git-r3
else
SRC_URI="https://github.com/Haivision/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 -sparc ~x86 ~ppc-macos ~x64-macos"
fi
LICENSE="MPL-2.0"
SLOT="0"
IUSE="gnutls test"
RDEPEND="
gnutls? (
dev-libs/nettle:0=[${MULTILIB_USEDEP}]
net-libs/gnutls:0=[${MULTILIB_USEDEP}]
)
!gnutls? (
dev-libs/openssl:0=[${MULTILIB_USEDEP}]
)
"
DEPEND="${RDEPEND}
test? ( dev-cpp/gtest )
"
RESTRICT="!test? ( test )"
PATCHES=(
"${FILESDIR}/${PN}-always-GNUInstallDirs.patch"
)
src_prepare() {
cmake_src_prepare
sed -i -e "s:hcrypt_ut.c::" haicrypt/*.maf || die
}
src_configure() {
local mycmakeargs=(
-DENABLE_STATIC=OFF
-DUSE_GNUTLS=$(usex gnutls)
-DENABLE_UNITTESTS=$(usex test)
)
cmake-multilib_src_configure
}