Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/farstream/
Date: Wed, 12 Feb 2020 11:46:14
Message-Id: 1581507930.3602220c1350839dde5676275c118686a0708619.leio@gentoo
1 commit: 3602220c1350839dde5676275c118686a0708619
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 12 11:01:35 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 12 11:45:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3602220c
7
8 net-libs/farstream: remove old
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 net-libs/farstream/farstream-0.2.8-r1.ebuild | 65 ----------------------------
14 1 file changed, 65 deletions(-)
15
16 diff --git a/net-libs/farstream/farstream-0.2.8-r1.ebuild b/net-libs/farstream/farstream-0.2.8-r1.ebuild
17 deleted file mode 100644
18 index 20a915a51b3..00000000000
19 --- a/net-libs/farstream/farstream-0.2.8-r1.ebuild
20 +++ /dev/null
21 @@ -1,65 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -GNOME2_LA_PUNT="yes"
27 -PYTHON_COMPAT=( python2_7 )
28 -
29 -inherit gnome2 python-any-r1
30 -
31 -DESCRIPTION="Audio/video conferencing framework specifically designed for instant messengers"
32 -HOMEPAGE="https://www.freedesktop.org/wiki/Software/Farstream"
33 -SRC_URI="https://freedesktop.org/software/farstream/releases/${PN}/${P}.tar.gz"
34 -
35 -LICENSE="LGPL-2.1+"
36 -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
37 -IUSE="+introspection test upnp"
38 -SLOT="0.2/5" # .so version
39 -
40 -# Tests need shmsink from gst-plugins-bad, which isn't packaged
41 -# FIXME: do an out-of-tree build for tests if USE=-msn
42 -RESTRICT="test"
43 -
44 -COMMONDEPEND="
45 - >=media-libs/gstreamer-1.4:1.0
46 - >=media-libs/gst-plugins-base-1.4:1.0
47 - >=dev-libs/glib-2.32:2
48 - >=net-libs/libnice-0.1.8
49 - introspection? ( >=dev-libs/gobject-introspection-0.10.11:= )
50 - upnp? ( >=net-libs/gupnp-igd-0.2:= )
51 -"
52 -RDEPEND="${COMMONDEPEND}
53 - >=media-libs/gst-plugins-good-1.4:1.0
54 - >=media-libs/gst-plugins-bad-1.4:1.0
55 - media-plugins/gst-plugins-libnice:1.0
56 -"
57 -DEPEND="${COMMONDEPEND}
58 - ${PYTHON_DEPS}
59 - dev-util/glib-utils
60 - >=dev-util/gtk-doc-am-1.18
61 - virtual/pkgconfig
62 - test? (
63 - media-libs/gst-plugins-base:1.0[vorbis]
64 - media-libs/gst-plugins-good:1.0 )
65 -"
66 -
67 -pkg_setup() {
68 - python-any-r1_pkg_setup
69 -}
70 -
71 -src_configure() {
72 - plugins="fsrawconference,fsrtpconference,fsmsnconference,fsrtpxdata,fsfunnel,fsrtcpfilter,fsvideoanyrate"
73 - gnome2_src_configure \
74 - --disable-static \
75 - $(use_enable introspection) \
76 - $(use_enable upnp gupnp) \
77 - --with-plugins=${plugins}
78 -}
79 -
80 -src_compile() {
81 - # Prevent sandbox violations, bug #539224
82 - # https://bugzilla.gnome.org/show_bug.cgi?id=744135
83 - # https://bugzilla.gnome.org/show_bug.cgi?id=744134
84 - addpredict /dev
85 - gnome2_src_compile
86 -}