Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/farsight2: farsight2-0.0.31.ebuild ChangeLog farsight2-0.0.26.ebuild
Date: Sat, 30 Jun 2012 12:47:01
Message-Id: 20120630124646.6439E2004B@flycatcher.gentoo.org
1 pacho 12/06/30 12:46:46
2
3 Modified: ChangeLog
4 Added: farsight2-0.0.31.ebuild
5 Removed: farsight2-0.0.26.ebuild
6 Log:
7 Version bump, remove old.
8
9 (Portage version: 2.1.11.3/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.64 net-libs/farsight2/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farsight2/ChangeLog?rev=1.64&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farsight2/ChangeLog?rev=1.64&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farsight2/ChangeLog?r1=1.63&r2=1.64
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/farsight2/ChangeLog,v
21 retrieving revision 1.63
22 retrieving revision 1.64
23 diff -u -r1.63 -r1.64
24 --- ChangeLog 5 May 2012 02:54:28 -0000 1.63
25 +++ ChangeLog 30 Jun 2012 12:46:46 -0000 1.64
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-libs/farsight2
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/farsight2/ChangeLog,v 1.63 2012/05/05 02:54:28 jdhore Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/farsight2/ChangeLog,v 1.64 2012/06/30 12:46:46 pacho Exp $
31 +
32 +*farsight2-0.0.31 (30 Jun 2012)
33 +
34 + 30 Jun 2012; Pacho Ramos <pacho@g.o> +farsight2-0.0.31.ebuild,
35 + -farsight2-0.0.26.ebuild:
36 + Version bump, remove old.
37
38 05 May 2012; Jeff Horelick <jdhore@g.o> farsight2-0.0.26.ebuild,
39 farsight2-0.0.29.ebuild:
40 @@ -237,4 +243,3 @@
41 10 May 2009; Arun Raghavan <ford_prefect@g.o>
42 +farsight2-0.0.9.ebuild, +metadata.xml:
43 Initial commit
44 -
45
46
47
48 1.1 net-libs/farsight2/farsight2-0.0.31.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farsight2/farsight2-0.0.31.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farsight2/farsight2-0.0.31.ebuild?rev=1.1&content-type=text/plain
52
53 Index: farsight2-0.0.31.ebuild
54 ===================================================================
55 # Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/net-libs/farsight2/farsight2-0.0.31.ebuild,v 1.1 2012/06/30 12:46:46 pacho Exp $
58
59 EAPI="4"
60 PYTHON_DEPEND="2"
61
62 inherit python
63
64 DESCRIPTION="Farsight2 is an audio/video conferencing framework specifically designed for Instant Messengers."
65 HOMEPAGE="http://farsight.freedesktop.org/"
66 SRC_URI="http://farsight.freedesktop.org/releases/${PN}/${P}.tar.gz"
67
68 LICENSE="LGPL-2.1"
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
70 IUSE="python msn upnp"
71 # IUSE="python test msn upnp"
72
73 SLOT="0"
74
75 # Tests often fail due to races
76 RESTRICT="test"
77
78 COMMONDEPEND=">=media-libs/gstreamer-0.10.33
79 >=media-libs/gst-plugins-base-0.10.33
80 >=dev-libs/glib-2.26:2
81 >=net-libs/libnice-0.1.0[gstreamer]
82 python? (
83 >=dev-python/pygobject-2.16:2
84 >=dev-python/gst-python-0.10.10 )
85 upnp? ( net-libs/gupnp-igd )"
86
87 RDEPEND="${COMMONDEPEND}
88 >=media-libs/gst-plugins-good-0.10.17
89 >=media-libs/gst-plugins-bad-0.10.17
90 msn? ( >=media-plugins/gst-plugins-mimic-0.10.17 )"
91
92 DEPEND="${COMMONDEPEND}
93 virtual/pkgconfig"
94 # test? ( media-plugins/gst-plugins-vorbis
95 # media-plugins/gst-plugins-speex )
96
97 pkg_setup() {
98 python_set_active_version 2
99 }
100
101 src_configure() {
102 plugins="fsrtpconference,funnel,rtcpfilter,videoanyrate"
103 use msn && plugins="${plugins},fsmsnconference"
104 econf --disable-static \
105 $(use_enable python) \
106 $(use_enable upnp gupnp) \
107 --with-plugins=${plugins}
108 }
109
110 src_install() {
111 default
112
113 # Remove .la files since static libs are no longer being installed
114 find "${D}" -name '*.la' -exec rm -f '{}' + || die
115 }
116
117 src_test() {
118 # FIXME: do an out-of-tree build for tests if USE=-msn
119 if ! use msn; then
120 elog "Tests disabled without msn use flag"
121 return
122 fi
123
124 emake -j1 check
125 }