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: libnice-0.1.2.ebuild ChangeLog libnice-0.0.13.ebuild libnice-0.0.10.ebuild libnice-0.0.9.ebuild
Date: Sat, 30 Jun 2012 13:06:08
Message-Id: 20120630130553.7E4182004C@flycatcher.gentoo.org
1 pacho 12/06/30 13:05:53
2
3 Modified: ChangeLog
4 Added: libnice-0.1.2.ebuild
5 Removed: libnice-0.0.13.ebuild libnice-0.0.10.ebuild
6 libnice-0.0.9.ebuild
7 Log:
8 Version bump, remove old.
9
10 (Portage version: 2.1.11.3/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.33 net-libs/libnice/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/ChangeLog?rev=1.33&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/ChangeLog?rev=1.33&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/ChangeLog?r1=1.32&r2=1.33
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v
22 retrieving revision 1.32
23 retrieving revision 1.33
24 diff -u -r1.32 -r1.33
25 --- ChangeLog 5 May 2012 02:54:24 -0000 1.32
26 +++ ChangeLog 30 Jun 2012 13:05:52 -0000 1.33
27 @@ -1,6 +1,12 @@
28 # ChangeLog for net-libs/libnice
29 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v 1.32 2012/05/05 02:54:24 jdhore Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v 1.33 2012/06/30 13:05:52 pacho Exp $
32 +
33 +*libnice-0.1.2 (30 Jun 2012)
34 +
35 + 30 Jun 2012; Pacho Ramos <pacho@g.o> +libnice-0.1.2.ebuild,
36 + -libnice-0.0.10.ebuild, -libnice-0.0.13.ebuild, -libnice-0.0.9.ebuild:
37 + Version bump, remove old.
38
39 05 May 2012; Jeff Horelick <jdhore@g.o> libnice-0.0.9.ebuild,
40 libnice-0.0.10.ebuild, libnice-0.0.13.ebuild, libnice-0.1.0.ebuild:
41 @@ -119,4 +125,3 @@
42 10 May 2009; Arun Raghavan <ford_prefect@g.o>
43 +libnice-0.0.6.ebuild, +metadata.xml:
44 Initial commit
45 -
46
47
48
49 1.1 net-libs/libnice/libnice-0.1.2.ebuild
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/libnice-0.1.2.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/libnice-0.1.2.ebuild?rev=1.1&content-type=text/plain
53
54 Index: libnice-0.1.2.ebuild
55 ===================================================================
56 # Copyright 1999-2012 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/libnice-0.1.2.ebuild,v 1.1 2012/06/30 13:05:52 pacho Exp $
59
60 EAPI="4"
61
62 DESCRIPTION="An implementation of the Interactice Connectivity Establishment standard (ICE)"
63 HOMEPAGE="http://nice.freedesktop.org/wiki/"
64 SRC_URI="http://nice.freedesktop.org/releases/${P}.tar.gz"
65
66 LICENSE="LGPL-2.1 MPL-1.1"
67 SLOT="0"
68 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
69 IUSE="+gstreamer upnp"
70
71 RDEPEND=">=dev-libs/glib-2.13:2
72 gstreamer? (
73 media-libs/gstreamer:0.10
74 media-libs/gst-plugins-base:0.10 )
75 upnp? ( >=net-libs/gupnp-igd-0.1.3 )"
76 DEPEND="${RDEPEND}
77 virtual/pkgconfig"
78
79 src_configure() {
80 econf --disable-static \
81 $(use_with gstreamer) \
82 $(use_enable upnp gupnp)
83 }
84
85 src_install() {
86 default
87
88 # Remove .la files since static libs are no longer being installed
89 find "${D}" -name '*.la' -exec rm -f '{}' + || die
90 }