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.10.ebuild ChangeLog libnice-0.1.7.ebuild
Date: Tue, 03 Feb 2015 18:49:25
Message-Id: 20150203184920.DC7DE10FBB@oystercatcher.gentoo.org
1 pacho 15/02/03 18:49:20
2
3 Modified: ChangeLog
4 Added: libnice-0.1.10.ebuild
5 Removed: libnice-0.1.7.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.89 net-libs/libnice/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/ChangeLog?rev=1.89&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/ChangeLog?rev=1.89&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/ChangeLog?r1=1.88&r2=1.89
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v
21 retrieving revision 1.88
22 retrieving revision 1.89
23 diff -u -r1.88 -r1.89
24 --- ChangeLog 2 Jan 2015 12:10:32 -0000 1.88
25 +++ ChangeLog 3 Feb 2015 18:49:20 -0000 1.89
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-libs/libnice
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v 1.88 2015/01/02 12:10:32 ago Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v 1.89 2015/02/03 18:49:20 pacho Exp $
31 +
32 +*libnice-0.1.10 (03 Feb 2015)
33 +
34 + 03 Feb 2015; Pacho Ramos <pacho@g.o> +libnice-0.1.10.ebuild,
35 + -libnice-0.1.7.ebuild:
36 + Version bump, drop old
37
38 02 Jan 2015; Agostino Sarubbo <ago@g.o> libnice-0.1.8.ebuild:
39 Stable for alpha, wrt bug #529964
40
41
42
43 1.1 net-libs/libnice/libnice-0.1.10.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/libnice-0.1.10.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnice/libnice-0.1.10.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libnice-0.1.10.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/libnice-0.1.10.ebuild,v 1.1 2015/02/03 18:49:20 pacho Exp $
53
54 EAPI=5
55 inherit eutils multilib-minimal
56
57 DESCRIPTION="An implementation of the Interactice Connectivity Establishment standard (ICE)"
58 HOMEPAGE="http://nice.freedesktop.org/wiki/"
59 SRC_URI="http://nice.freedesktop.org/releases/${P}.tar.gz"
60
61 LICENSE="|| ( MPL-1.1 LGPL-2.1 )"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
64 IUSE="+introspection +upnp"
65
66 RDEPEND="
67 >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
68 introspection? ( >=dev-libs/gobject-introspection-1.30.0 )
69 upnp? ( >=net-libs/gupnp-igd-0.2.4:=[${MULTILIB_USEDEP}] )
70 "
71 DEPEND="${RDEPEND}
72 dev-util/gtk-doc-am
73 >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
74 "
75
76 # Many tests fail from time to time, for example:
77 # https://bugs.freedesktop.org/show_bug.cgi?id=81691
78 RESTRICT="test"
79
80 multilib_src_configure() {
81 # gstreamer plugin split off into media-plugins/gst-plugins-libnice
82 ECONF_SOURCE=${S} \
83 econf \
84 --disable-static \
85 --disable-static-plugins \
86 --without-gstreamer \
87 --without-gstreamer-0.10 \
88 $(multilib_native_use_enable introspection) \
89 $(use_enable upnp gupnp)
90
91 if multilib_is_native_abi; then
92 ln -s {"${S}"/,}docs/reference/libnice/html || die
93 fi
94 }
95
96 multilib_src_install_all() {
97 einstalldocs
98 prune_libtool_files --modules
99 }