commit:     2a8fe601bd8edca219a319602da3b73da92e5dd9
Author:     Esteve Varela Colominas <esteve.varela <AT> gmail <DOT> com>
AuthorDate: Tue Apr 27 22:11:34 2021 +0000
Commit:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Mon May  3 17:01:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a8fe601

media-libs/libtgvoip: Make pulseaudio optional again

Also drop libressl, tg_owt requires openssl, and nobody's complained...
That said, does anyone use USE=-dsp? Does it even work?

Signed-off-by: Esteve Varela Colominas <esteve.varela <AT> gmail.com>
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>

 .../libtgvoip/libtgvoip-2.4.4_p20210302-r1.ebuild  | 62 ++++++++++++++++++++++
 1 file changed, 62 insertions(+)

diff --git a/media-libs/libtgvoip/libtgvoip-2.4.4_p20210302-r1.ebuild 
b/media-libs/libtgvoip/libtgvoip-2.4.4_p20210302-r1.ebuild
new file mode 100644
index 00000000000..61e1244e5dd
--- /dev/null
+++ b/media-libs/libtgvoip/libtgvoip-2.4.4_p20210302-r1.ebuild
@@ -0,0 +1,62 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic autotools
+
+LIBTGVOIP_COMMIT="0c0a6e476df58ee441490da72ca7a32f83e68dbd"
+
+DESCRIPTION="VoIP library for Telegram clients"
+HOMEPAGE="https://github.com/telegramdesktop/libtgvoip";
+SRC_URI="https://github.com/telegramdesktop/libtgvoip/archive/${LIBTGVOIP_COMMIT}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64"
+IUSE="+dsp +alsa pulseaudio"
+
+DEPEND="
+       media-libs/opus:=
+       alsa? ( media-libs/alsa-lib )
+       dsp? ( media-libs/tg_owt )
+       pulseaudio? ( media-sound/pulseaudio )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+REQUIRED_USE="
+       || ( alsa pulseaudio )
+"
+
+S="${WORKDIR}/${PN}-${LIBTGVOIP_COMMIT}"
+
+src_prepare() {
+       # Will be controlled by us
+       sed -i -e '/^CFLAGS += -DTGVOIP_NO_DSP/d' Makefile.am || die
+       default
+       # https://bugs.gentoo.org/717210
+       echo 'libtgvoip_la_LIBTOOLFLAGS = --tag=CXX' >> Makefile.am || die
+       eautoreconf
+}
+
+src_configure() {
+       local myconf=(
+               --disable-static
+               --disable-dsp  # WebRTC is linked from tg_owt
+               $(use_with alsa)
+               $(use_with pulseaudio pulse)
+       )
+       if use dsp; then
+               append-cppflags '-I/usr/include/tg_owt'
+               append-cppflags '-I/usr/include/tg_owt/third_party/abseil-cpp'
+               append-libs '-ltg_owt'
+       else
+               append-cppflags '-DTGVOIP_NO_DSP'
+       fi
+       econf "${myconf[@]}"
+}
+
+src_install() {
+       default
+       find "${D}" -name '*.la' -delete || die
+}

Reply via email to