# 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 libressl pulseaudio" DEPEND=" !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) media-libs/opus:= media-libs/alsa-lib !pulseaudio? ( media-sound/apulse[sdk] ) pulseaudio? ( media-sound/pulseaudio ) dsp? ( media-libs/tg_owt ) " RDEPEND="${DEPEND}" BDEPEND="virtual/pkgconfig" 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 --with-alsa --with-pulse --disable-dsp # WebRTC is linked from tg_owt ) append-cppflags '-DNDEBUG' 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 }