Gentoo Archives: gentoo-commits

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