Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/nm-applet/
Date: Sat, 12 Oct 2019 21:38:07
Message-Id: 1570916273.d2d1b63a6f17f792323eeae327abd3fec830fd56.leio@gentoo
1 commit: d2d1b63a6f17f792323eeae327abd3fec830fd56
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 12 21:36:27 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 12 21:37:53 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2d1b63a
7
8 gnome-extra/nm-applet: bump to 1.8.24
9
10 Closes: https://bugs.gentoo.org/695190
11 Package-Manager: Portage-2.3.69, Repoman-2.3.12
12 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
13
14 gnome-extra/nm-applet/Manifest | 1 +
15 gnome-extra/nm-applet/nm-applet-1.8.24.ebuild | 67 +++++++++++++++++++++++++++
16 2 files changed, 68 insertions(+)
17
18 diff --git a/gnome-extra/nm-applet/Manifest b/gnome-extra/nm-applet/Manifest
19 index 71f58ae741b..35d9cc5d4cb 100644
20 --- a/gnome-extra/nm-applet/Manifest
21 +++ b/gnome-extra/nm-applet/Manifest
22 @@ -1 +1,2 @@
23 DIST network-manager-applet-1.8.22.tar.xz 2058500 BLAKE2B e4b31ea3dfe91f07a61b7dd4c34521bc4fc2d7a1b7e5649690336cce0c425d57128ff8011b18a6505893982bfd81170eb8239b9e83de6f91afa11190cfac3b4d SHA512 d2f679a67b79b011762f9249798c5a4ccad3d0fdd01d8d45956a65ab75398ccc07167fc5452748a12294315f729b10115edcb9f11e05475bb0b15b2ade638dd3
24 +DIST network-manager-applet-1.8.24.tar.xz 2062132 BLAKE2B fed75ab78e05b59a4f20c7570b84ac6fe3dd2cf6f8ad060f6c65bc9e2a32e29d295fc919de1037ba30c2609d35079dccb3f625ffc019150c9c69cfa94388e2c8 SHA512 76e914ec4f2e6eadd21ccc3e1f613fb97cb72d9551730a1dc09454177365dcaa2cdeea4b855c53732ad6a22cfa5e62e03f09fc8b04a277ce213dcf8c3beaf77c
25
26 diff --git a/gnome-extra/nm-applet/nm-applet-1.8.24.ebuild b/gnome-extra/nm-applet/nm-applet-1.8.24.ebuild
27 new file mode 100644
28 index 00000000000..d0eddf11a2d
29 --- /dev/null
30 +++ b/gnome-extra/nm-applet/nm-applet-1.8.24.ebuild
31 @@ -0,0 +1,67 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +GNOME2_LA_PUNT="yes"
37 +GNOME_ORG_MODULE="network-manager-applet"
38 +
39 +inherit gnome2
40 +
41 +DESCRIPTION="GNOME applet for NetworkManager"
42 +HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager"
43 +
44 +LICENSE="GPL-2+"
45 +SLOT="0"
46 +IUSE="ayatana +introspection +gcr +modemmanager selinux teamd"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
48 +
49 +RDEPEND="
50 + >=app-crypt/libsecret-0.18
51 + >=dev-libs/glib-2.38:2[dbus]
52 + >=dev-libs/dbus-glib-0.88
53 + >=sys-apps/dbus-1.4.1
54 + >=sys-auth/polkit-0.96-r1
55 + >=x11-libs/gtk+-3.10:3[introspection?]
56 + >=x11-libs/libnotify-0.7.0
57 +
58 + app-text/iso-codes
59 + >=net-misc/networkmanager-1.7:=[introspection?,modemmanager?,teamd?]
60 + net-misc/mobile-broadband-provider-info
61 +
62 + ayatana? (
63 + dev-libs/libappindicator:3
64 + >=dev-libs/libdbusmenu-16.04.0 )
65 + introspection? ( >=dev-libs/gobject-introspection-0.9.6:= )
66 + virtual/freedesktop-icon-theme
67 + virtual/libgudev:=
68 + gcr? ( >=app-crypt/gcr-3.14:=[gtk] )
69 + modemmanager? ( net-misc/modemmanager )
70 + selinux? ( sys-libs/libselinux )
71 + teamd? ( >=dev-libs/jansson-2.7 )
72 +"
73 +DEPEND="${RDEPEND}
74 + >=dev-util/gtk-doc-am-1.0
75 + >=sys-devel/gettext-0.18
76 + virtual/pkgconfig
77 +"
78 +
79 +PDEPEND="virtual/notification-daemon" #546134
80 +
81 +src_configure() {
82 + local myconf=(
83 + --with-appindicator=$(usex ayatana ubuntu no)
84 + --with-libnm-gtk
85 + --without-libnma-gtk4
86 + --disable-lto
87 + --disable-ld-gc
88 + --disable-more-warnings
89 + --disable-static
90 + --localstatedir=/var
91 + $(use_enable introspection)
92 + $(use_with gcr)
93 + $(use_with modemmanager wwan)
94 + $(use_with selinux)
95 + $(use_with teamd team)
96 + )
97 + gnome2_src_configure "${myconf[@]}"
98 +}