Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnice/
Date: Sun, 08 May 2022 19:02:28
Message-Id: 1652036522.6634f38170c89f5f3a2a3edbe6c667074371616c.mattst88@gentoo
1 commit: 6634f38170c89f5f3a2a3edbe6c667074371616c
2 Author: Igor V. Kovalenko <igor.v.kovalenko <AT> gmail <DOT> com>
3 AuthorDate: Sun May 8 09:53:20 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun May 8 19:02:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6634f381
7
8 net-libs/libnice: bump to 0.1.19
9
10 Signed-off-by: Igor V. Kovalenko <igor.v.kovalenko <AT> gmail.com>
11 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
12
13 net-libs/libnice/Manifest | 1 +
14 net-libs/libnice/libnice-0.1.19.ebuild | 48 ++++++++++++++++++++++++++++++++++
15 2 files changed, 49 insertions(+)
16
17 diff --git a/net-libs/libnice/Manifest b/net-libs/libnice/Manifest
18 index 9de362f71b3d..29fa9063962b 100644
19 --- a/net-libs/libnice/Manifest
20 +++ b/net-libs/libnice/Manifest
21 @@ -1,2 +1,3 @@
22 DIST libnice-0.1.15.tar.gz 1064100 BLAKE2B 81f06ba599b01084586a8d904b9ae513d6bc3531ec42674648fda320eea6cd9348acf423571922bab4e338bf135f85b292046352ed6f5e4fefba736d787b1ff1 SHA512 60a8bcca06c0ab300dfabbf13e45aeac2085d553c420c5cc4d2fdeb46b449b2b9c9aee8015b0662c16bd1cecf5a49824b7e24951a8a0b66a87074cb00a619c0c
23 DIST libnice-0.1.18.tar.gz 439791 BLAKE2B 6bb68bb1484b4a622a580bc9c66b8be260d2615b211cf7991cb50a9f692df525cd0c3c9fc54ef86534426f396f8d2201966cdacfd3f69ff27193971f95886540 SHA512 08bac05874708f7e7a669d28727d8951a10c464b22dd6fada1a4644850bcf5c4cc022cce46bb24c806086a7869b274c4c7d3d6ddaa9ed0ce0bc2c47f72933227
24 +DIST libnice-0.1.19.tar.gz 453407 BLAKE2B 7bffde82a3e55d9aeeaadd159d944346a5192871e7f574e278dc43e8171e5fde472cd28186777a0b6cddd8bde34e035794b1c6b8f152c7fb4fae5202025bfdac SHA512 1c63cc0b7655186fd6f83da4dd607183d6ccfab9b7ad7189c1bea2ba7413183f24076aba5d6c7231d2ab3fbd471827256729a8a0c0d1bda48803586e68b3778b
25
26 diff --git a/net-libs/libnice/libnice-0.1.19.ebuild b/net-libs/libnice/libnice-0.1.19.ebuild
27 new file mode 100644
28 index 000000000000..331cc388a3b3
29 --- /dev/null
30 +++ b/net-libs/libnice/libnice-0.1.19.ebuild
31 @@ -0,0 +1,48 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit meson-multilib xdg
37 +
38 +DESCRIPTION="An implementation of the Interactice Connectivity Establishment standard (ICE)"
39 +HOMEPAGE="https://nice.freedesktop.org/wiki/"
40 +SRC_URI="https://nice.freedesktop.org/releases/${P}.tar.gz"
41 +
42 +LICENSE="|| ( MPL-1.1 LGPL-2.1 )"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
45 +IUSE="+gnutls +introspection +upnp"
46 +
47 +RDEPEND="
48 + >=dev-libs/glib-2.54:2[${MULTILIB_USEDEP}]
49 + introspection? ( >=dev-libs/gobject-introspection-1.30.0:= )
50 + gnutls? ( >=net-libs/gnutls-2.12.0:0=[${MULTILIB_USEDEP}] )
51 + !gnutls? (
52 + dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
53 + upnp? ( >=net-libs/gupnp-igd-0.2.4:=[${MULTILIB_USEDEP}] )
54 +"
55 +DEPEND="${RDEPEND}"
56 +BDEPEND="
57 + dev-util/glib-utils
58 + virtual/pkgconfig
59 +"
60 +
61 +multilib_src_configure() {
62 + # gstreamer plugin split off into media-plugins/gst-plugins-libnice
63 + local emesonargs=(
64 + -Dgstreamer=disabled
65 + -Dcrypto-library=$(usex gnutls gnutls openssl)
66 + $(meson_native_use_feature introspection)
67 + $(meson_feature upnp gupnp)
68 + )
69 +
70 + meson_src_configure
71 +
72 + #if multilib_is_native_abi; then
73 + # ln -s {"${S}"/,}docs/reference/libnice/html || die
74 + #fi
75 +}
76 +
77 +multilib_src_install_all() {
78 + einstalldocs
79 +}