forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gnome-extra/nm-applet: bump to 1.18.0
Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Mart Raudsepp <[email protected]>
- Loading branch information
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST network-manager-applet-1.16.0.tar.xz 1944244 BLAKE2B b5181474da55d9b320d217638a960a9bba1c103d8ff69f171aea57458d425ee8347e8a525b051f1b72888cf33d9b20a850b9e10fb0a487998a5502d2acb92105 SHA512 0ad8ac1d05cf76b9a82602c6f8f7034ae52fc11bae0b5ee17cf5bd89c6c91ba3ef7b07f770397b22484d54fd69e7a9a73f8c08a4d3d9f492f11d09d0b0379ff5 | ||
DIST network-manager-applet-1.18.0.tar.xz 1950696 BLAKE2B d89f4d3c94af2c6bf514fc388fc445415b50508bf7e26f7888d8e212a63879abb24bf860002372bcae71eee94c3b8e9f2bfa9f16814a3537b0f81c486f82e396 SHA512 adca7c723600ec1cb2eed0110e369cf707fde1d64a81489440a167516d178a501fe883c08db06371b8aac896188eb2037a7577ecca721d764be33f4025a386d4 | ||
DIST network-manager-applet-1.8.24.tar.xz 2062132 BLAKE2B fed75ab78e05b59a4f20c7570b84ac6fe3dd2cf6f8ad060f6c65bc9e2a32e29d295fc919de1037ba30c2609d35079dccb3f625ffc019150c9c69cfa94388e2c8 SHA512 76e914ec4f2e6eadd21ccc3e1f613fb97cb72d9551730a1dc09454177365dcaa2cdeea4b855c53732ad6a22cfa5e62e03f09fc8b04a277ce213dcf8c3beaf77c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
GNOME_ORG_MODULE="network-manager-applet" | ||
|
||
inherit gnome.org meson xdg | ||
|
||
DESCRIPTION="NetworkManager connection editor and applet" | ||
HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="0" | ||
IUSE="appindicator modemmanager selinux teamd" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" | ||
|
||
RDEPEND=" | ||
>=dev-libs/glib-2.38:2 | ||
>=app-crypt/libsecret-0.18 | ||
>=net-libs/libnma-1.8.27 | ||
>=x11-libs/gtk+-3.10:3 | ||
>=dev-libs/libgudev-147:= | ||
>=x11-libs/libnotify-0.7.0 | ||
>=net-misc/networkmanager-1.16:=[modemmanager?,teamd?] | ||
appindicator? ( | ||
dev-libs/libappindicator:3 | ||
>=dev-libs/libdbusmenu-16.04.0 | ||
) | ||
modemmanager? ( net-misc/modemmanager ) | ||
selinux? ( sys-libs/libselinux ) | ||
teamd? ( >=dev-libs/jansson-2.7 ) | ||
virtual/freedesktop-icon-theme | ||
" | ||
DEPEND="${RDEPEND}" | ||
BDEPEND=" | ||
dev-libs/libxml2 | ||
>=sys-devel/gettext-0.19.8 | ||
virtual/pkgconfig | ||
" | ||
|
||
src_configure() { | ||
local emesonargs=( | ||
-Dappindicator=$(usex appindicator ubuntu no) | ||
$(meson_use modemmanager wwan) | ||
$(meson_use selinux) | ||
$(meson_use teamd team) | ||
-Dmore_asserts=0 | ||
-Dld_gc=false | ||
) | ||
meson_src_configure | ||
} |