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/libnice: ChangeLog libnice-0.1.0.ebuild
Date: Mon, 21 Feb 2011 07:25:15
Message-Id: 20110221072504.9086320054@flycatcher.gentoo.org
1 nirbheek 11/02/21 07:25:04
2
3 Modified: ChangeLog
4 Added: libnice-0.1.0.ebuild
5 Log:
6 Bump to 0.1.0, EAPI is now 3, passes all tests
7
8 (Portage version: 2.1.9.40/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.20 net-libs/libnice/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 13 Feb 2011 11:31:05 -0000 1.19
24 +++ ChangeLog 21 Feb 2011 07:25:04 -0000 1.20
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-libs/libnice
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v 1.19 2011/02/13 11:31:05 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v 1.20 2011/02/21 07:25:04 nirbheek Exp $
30 +
31 +*libnice-0.1.0 (21 Feb 2011)
32 +
33 + 21 Feb 2011; Nirbheek Chauhan <nirbheek@g.o> +libnice-0.1.0.ebuild:
34 + Bump to 0.1.0, EAPI is now 3, passes all tests
35
36 13 Feb 2011; Pacho Ramos <pacho@g.o> metadata.xml:
37 Add gnome to metadata as talked between us since empathy relies on this.
38
39
40
41 1.1 net-libs/libnice/libnice-0.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/libnice-0.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/libnice-0.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libnice-0.1.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 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.1.0.ebuild,v 1.1 2011/02/21 07:25:04 nirbheek Exp $
51
52 EAPI="3"
53
54 inherit eutils libtool
55
56 DESCRIPTION="An implementation of the Interactice Connectivity Establishment standard (ICE)"
57 HOMEPAGE="http://nice.freedesktop.org/wiki/"
58 SRC_URI="http://nice.freedesktop.org/releases/${P}.tar.gz"
59
60 LICENSE="LGPL-2.1 MPL-1.1"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
63 IUSE="+gstreamer upnp"
64
65 RDEPEND=">=dev-libs/glib-2.10
66 gstreamer? (
67 media-libs/gstreamer:0.10
68 media-libs/gst-plugins-base:0.10 )
69 upnp? ( >=net-libs/gupnp-igd-0.1.3 )"
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig"
72
73 src_prepare() {
74 epatch "${FILESDIR}"/${PN}-0.0.13-darwin.patch
75 elibtoolize # for .bundle on Darwin
76 }
77
78 src_configure() {
79 econf --disable-static \
80 $(use_with gstreamer) \
81 $(use_enable upnp gupnp)
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die "emake install failed."
86 dodoc AUTHORS COPYING* README NEWS || die "dodoc failed."
87
88 # Remove .la files since static libs are no longer being installed
89 find "${D}" -name '*.la' -exec rm -f '{}' + || die
90 }