diff options
author | 2020-11-25 22:42:41 +0200 | |
---|---|---|
committer | 2020-11-25 22:43:05 +0200 | |
commit | 71a0639cd8dea9751177600017b4485d2abd4660 (patch) | |
tree | bec0986a4a048d8189d47c31a684250cb37fdfdf /net-libs/srt/srt-1.4.2.ebuild | |
parent | net-libs/srt: remove old (diff) | |
download | gentoo-71a0639cd8dea9751177600017b4485d2abd4660.tar.gz gentoo-71a0639cd8dea9751177600017b4485d2abd4660.tar.bz2 gentoo-71a0639cd8dea9751177600017b4485d2abd4660.zip |
net-libs/srt: bump to 1.4.2
Closes: https://bugs.gentoo.org/756163
Package-Manager: Portage-2.3.103, Repoman-2.3.20
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'net-libs/srt/srt-1.4.2.ebuild')
-rw-r--r-- | net-libs/srt/srt-1.4.2.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/net-libs/srt/srt-1.4.2.ebuild b/net-libs/srt/srt-1.4.2.ebuild new file mode 100644 index 000000000000..6ae97e60aff7 --- /dev/null +++ b/net-libs/srt/srt-1.4.2.ebuild @@ -0,0 +1,50 @@ +# Copyright 2018-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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 ~x86-macos" +fi + +LICENSE="MPL-2.0" +SLOT="0" +IUSE="gnutls libressl" + +DEPEND=" + gnutls? ( + dev-libs/nettle:0=[${MULTILIB_USEDEP}] + net-libs/gnutls:0=[${MULTILIB_USEDEP}] + ) + !gnutls? ( + !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] ) + libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] ) + ) +" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/${PN}-always-GNUInstallDirs.patch" +) + +src_prepare() { + cmake-utils_src_prepare + sed -i -e "s:hcrypt_ut.c::" "${S}"/haicrypt/*.maf || die +} + +src_configure() { + local mycmakeargs=( + -DENABLE_STATIC=OFF + -DUSE_GNUTLS=$(usex gnutls) + ) + cmake-multilib_src_configure +} |