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/libnice: ChangeLog libnice-0.0.13.ebuild
Date: Wed, 29 Sep 2010 11:48:44
Message-Id: 20100929114836.1A0A120051@flycatcher.gentoo.org
1 pacho 10/09/29 11:48:36
2
3 Modified: ChangeLog
4 Added: libnice-0.0.13.ebuild
5 Log:
6 Version bump with bugfixes and pass proper configure upnp option (bug #292076 by Niko Böckerman).
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 net-libs/libnice/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 19 Feb 2010 19:08:09 -0000 1.15
23 +++ ChangeLog 29 Sep 2010 11:48:35 -0000 1.16
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-libs/libnice
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v 1.15 2010/02/19 19:08:09 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v 1.16 2010/09/29 11:48:35 pacho Exp $
29 +
30 +*libnice-0.0.13 (29 Sep 2010)
31 +
32 + 29 Sep 2010; Pacho Ramos <pacho@g.o> +libnice-0.0.13.ebuild:
33 + Version bump with bugfixes and pass proper configure upnp option (bug
34 + #292076 by Niko Böckerman).
35
36 19 Feb 2010; Raúl Porcel <armin76@g.o> libnice-0.0.10.ebuild:
37 ia64/sparc stable
38
39
40
41 1.1 net-libs/libnice/libnice-0.0.13.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/libnice-0.0.13.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/libnice-0.0.13.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libnice-0.0.13.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/libnice-0.0.13.ebuild,v 1.1 2010/09/29 11:48:35 pacho Exp $
51
52 EAPI="2"
53
54 DESCRIPTION="An implementation of the Interactice Connectivity Establishment standard (ICE)"
55 HOMEPAGE="http://nice.freedesktop.org/wiki/"
56 SRC_URI="http://nice.freedesktop.org/releases/${P}.tar.gz"
57
58 LICENSE="LGPL-2.1 MPL-1.1"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
61 IUSE="+gstreamer upnp"
62
63 RDEPEND=">=dev-libs/glib-2.10
64 gstreamer? (
65 media-libs/gstreamer:0.10
66 media-libs/gst-plugins-base:0.10 )
67 upnp? ( >=net-libs/gupnp-igd-0.1.3 )"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig"
70
71 src_configure() {
72 econf $(use_with gstreamer) $(use_enable upnp gupnp)
73 }
74
75 src_install() {
76 emake DESTDIR="${D}" install || die "emake install failed."
77 dodoc AUTHORS COPYING* README NEWS || die "dodoc failed."
78 }