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