Gentoo Archives: gentoo-commits

From: Alexandre Restovtsev <tetromino@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:gnome-next commit in: net-libs/farsight2/
Date: Tue, 30 Aug 2011 05:38:05
Message-Id: 374027b54555c9ba574f79cf844a9663c402a496.tetromino@gentoo
1 commit: 374027b54555c9ba574f79cf844a9663c402a496
2 Author: Alexandre Rostovtsev <tetromino <AT> gmail <DOT> com>
3 AuthorDate: Tue Aug 30 01:29:40 2011 +0000
4 Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
5 CommitDate: Tue Aug 30 01:29:40 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=374027b5
7
8 net-libs/farsight2: 0.0.29 is in gx86
9
10 ---
11 net-libs/farsight2/farsight2-0.0.29.ebuild | 70 ----------------------------
12 1 files changed, 0 insertions(+), 70 deletions(-)
13
14 diff --git a/net-libs/farsight2/farsight2-0.0.29.ebuild b/net-libs/farsight2/farsight2-0.0.29.ebuild
15 deleted file mode 100644
16 index 490f790..0000000
17 --- a/net-libs/farsight2/farsight2-0.0.29.ebuild
18 +++ /dev/null
19 @@ -1,70 +0,0 @@
20 -# Copyright 1999-2011 Gentoo Foundation
21 -# Distributed under the terms of the GNU General Public License v2
22 -# $Header: /var/cvsroot/gentoo-x86/net-libs/farsight2/farsight2-0.0.26.ebuild,v 1.4 2011/07/31 16:28:29 armin76 Exp $
23 -
24 -EAPI="3"
25 -PYTHON_DEPEND="2"
26 -
27 -inherit python
28 -
29 -DESCRIPTION="Farsight2 is an audio/video conferencing framework specifically designed for Instant Messengers."
30 -HOMEPAGE="http://farsight.freedesktop.org/"
31 -SRC_URI="http://farsight.freedesktop.org/releases/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="LGPL-2.1"
34 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
35 -IUSE="python test msn upnp"
36 -SLOT="0"
37 -
38 -# Tests often fail due to races
39 -RESTRICT="test"
40 -
41 -COMMONDEPEND=">=media-libs/gstreamer-0.10.33
42 - >=media-libs/gst-plugins-base-0.10.33
43 - >=dev-libs/glib-2.26:2
44 - >=net-libs/libnice-0.1.0[gstreamer]
45 - python? (
46 - >=dev-python/pygobject-2.16:2
47 - >=dev-python/gst-python-0.10.10 )
48 - upnp? ( net-libs/gupnp-igd )"
49 -
50 -RDEPEND="${COMMONDEPEND}
51 - >=media-libs/gst-plugins-good-0.10.17
52 - >=media-libs/gst-plugins-bad-0.10.17
53 - msn? ( >=media-plugins/gst-plugins-mimic-0.10.17 )"
54 -
55 -DEPEND="${COMMONDEPEND}
56 - test? ( media-plugins/gst-plugins-vorbis
57 - media-plugins/gst-plugins-speex )
58 - dev-util/pkgconfig"
59 -
60 -pkg_setup() {
61 - python_set_active_version 2
62 -}
63 -
64 -src_configure() {
65 - plugins="fsrtpconference,funnel,rtcpfilter,videoanyrate"
66 - use msn && plugins="${plugins},fsmsnconference"
67 - econf --disable-static \
68 - $(use_enable python) \
69 - $(use_enable upnp gupnp) \
70 - --with-plugins=${plugins}
71 -}
72 -
73 -src_install() {
74 - emake install DESTDIR="${D}" || die "emake install failed"
75 - dodoc AUTHORS README ChangeLog
76 -
77 - # Remove .la files since static libs are no longer being installed
78 - find "${D}" -name '*.la' -exec rm -f '{}' + || die
79 -}
80 -
81 -src_test() {
82 - # FIXME: do an out-of-tree build for tests if USE=-msn
83 - if ! use msn; then
84 - elog "Tests disabled without msn use flag"
85 - return
86 - fi
87 -
88 - emake -j1 check
89 -}