net-libs/srt: Drop 1.4.1-r1, cmake-utils--

Bug: https://bugs.gentoo.org/770568
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2021-05-22 19:16:44 +02:00
parent 31de90a62b
commit aaea5f5898
2 changed files with 0 additions and 50 deletions

View File

@@ -1,2 +1 @@
DIST srt-1.4.1.tar.gz 1316195 BLAKE2B 1831494c9817d03b7f69e46344b41ace13c22e1817aced2fdeef715ecc7da9e3cf421c399951177ce052328e5baa56445b66769b7a9e4762efee3394c43568a4 SHA512 ff30b7e413c4b9f0b5076d9ebf5f0942b5d802773a27ed1f7b886a12eb01eec0148d1c305e933d4f54ee1b451a445a48cba582111eb2057326c0f61fab097f94
DIST srt-1.4.2.tar.gz 1538231 BLAKE2B 1b3f625bb5a6436d6c35f957796217ed8c7f9d2412e96cbb2b83b8372f0738b5c9219b218b644e74f6f16457d1b8606fedc238310e800cce84fe127f86b33be1 SHA512 4c978e3898737e566f47222a0095df1b49591d79927850cc94c838b7eaccf401faf1c5d038fa45b6fd30c85f980e7c212a79c07ed6f9008430e8a5a594a31ffe

View File

@@ -1,49 +0,0 @@
# Copyright 2018-2021 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"
fi
LICENSE="MPL-2.0"
SLOT="0"
IUSE="gnutls"
DEPEND="
gnutls? (
dev-libs/nettle:0=[${MULTILIB_USEDEP}]
net-libs/gnutls:0=[${MULTILIB_USEDEP}]
)
!gnutls? (
dev-libs/openssl: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
}