summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorgy Yakovlev <gyakovlev@gentoo.org>2020-11-03 01:06:20 -0800
committerGeorgy Yakovlev <gyakovlev@gentoo.org>2020-11-03 01:06:35 -0800
commitc5cc945a7a180303aa9a842f26019cf7274a9a32 (patch)
treea440024a983fd5bdf71c5d9258c2c57fb543b21f /media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild
parentnet-im/telegram-desktop: drop 2.4.5 (diff)
downloadgentoo-c5cc945a7a180303aa9a842f26019cf7274a9a32.tar.gz
gentoo-c5cc945a7a180303aa9a842f26019cf7274a9a32.tar.bz2
gentoo-c5cc945a7a180303aa9a842f26019cf7274a9a32.zip
media-libs/libtgvoip: drop old
Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild')
-rw-r--r--media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild b/media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild
deleted file mode 100644
index bfc2bb41347e..000000000000
--- a/media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-EGIT_COMMIT="b98a01ea44916444cb1b9192f80b46f974d296a6"
-
-DESCRIPTION="VoIP library for Telegram clients"
-HOMEPAGE="https://github.com/telegramdesktop/libtgvoip"
-SRC_URI="https://github.com/telegramdesktop/libtgvoip/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Unlicense"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64"
-IUSE="+alsa +dsp libressl pulseaudio"
-
-DEPEND="
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- media-libs/opus:=
- alsa? ( media-libs/alsa-lib )
- pulseaudio? ( media-sound/pulseaudio )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-REQUIRED_USE="|| ( alsa pulseaudio )"
-
-S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
-
-src_prepare() {
- default
- sed -i 's/-std=gnu++0x/-std=gnu++17/' Makefile.am || die
- # https://bugs.gentoo.org/717210
- echo 'libtgvoip_la_LIBTOOLFLAGS = --tag=CXX' >> Makefile.am || die
- eautoreconf
-}
-
-src_configure() {
- local myconf=(
- --disable-static
- $(use_enable dsp)
- $(use_with alsa)
- $(use_with pulseaudio pulse)
- )
-
- econf "${myconf[@]}"
-}
-
-src_install() {
- default
- find "${D}" -name '*.la' -delete || die
-}