blob: 0707106c59bf36d21ca3b873e6ffbf3d194e9d85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic autotools
DESCRIPTION="VoIP library for Telegram clients"
HOMEPAGE="https://github.com/telegramdesktop/libtgvoip"
LIBTGVOIP_COMMIT="0c0a6e476df58ee441490da72ca7a32f83e68dbd"
SRC_URI="https://github.com/telegramdesktop/libtgvoip/archive/${LIBTGVOIP_COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${LIBTGVOIP_COMMIT}"
LICENSE="Unlicense"
SLOT="0"
KEYWORDS="amd64 ~ppc64"
IUSE="+dsp +alsa pulseaudio"
DEPEND="
dev-libs/openssl:=
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 )
"
src_prepare() {
# Will be controlled by us
sed -i -e '/^CFLAGS += -DTGVOIP_NO_DSP/d' Makefile.am || die
# https://bugs.gentoo.org/717210
echo 'libtgvoip_la_LIBTOOLFLAGS = --tag=CXX' >> Makefile.am || die
default
eautoreconf
}
src_configure() {
local myconf=(
# EAPI8: Remove --disable-static
--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
}
|