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.8.0
Package-Manager: Portage-2.3.6_p1, Repoman-2.3.2_p69
- Loading branch information
Showing
3 changed files
with
64 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.2.4.tar.xz 1321740 SHA256 dff72956c939743e899954c9d32f0ebff4f213f1307a8157adc548584a0da37a SHA512 0cf9dd2db3289b29e550f96212c425c807b4a425d6a98cf00981e44d2bd5d1eb41c482072b5b030f32ae744c27f49a7757d762f7eda17cbba90560f0b3af1a30 WHIRLPOOL e2157108be89cbfab2327ded1bbee101c2332a5b8f85d3ad4bd490b4e4bcfb07f751d87ade9ef9538c2a1004abd6c146c6741eacd5c8825ad8392d40ae9b2277 | ||
DIST network-manager-applet-1.4.6.tar.xz 1388916 SHA256 10a6fcfe8c6206cf18ec78a522a716b5ec9d0b7ca1e7d234c638725b316fec76 SHA512 f0eab5c50739c2309fa19336e23ead6603dc953b62fff0600a91988df8d41c2f300c22ebd4d5be8654a3fd7bac38dacc23be149f1a7085f10bb55e1830d9472f WHIRLPOOL f04c5bcf0796539b37fc1b83f81151be2fa68bb078209555196840617332ac8e624cc5911c9932b1768764c2bd696c613c760681d543f8e8e28d0f7f0bc7e221 | ||
DIST network-manager-applet-1.8.0.tar.xz 1446328 SHA256 d4de2457d27dc8bc236ece54d79e6b5ab24611b9ce7cbdd514671ebcb772d576 SHA512 5f86806cd60d740ddd7773d6f006b1fd2cefdaecdf617c97dba48732a872f0cb1d4ac0785e87f989f13cd626cdbe017b6f99ce0079aecc6031d3cc52d8d2a36d WHIRLPOOL 06e0fad89a9190e0f83ddd92cff43a8be4db658fbbb3cfaa754026e50e6c60e3f9ec0d38cf00d7dae907bbfb514f342498eeff9db1a880e502ce6ad8ccb555af |
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
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,62 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
GNOME2_LA_PUNT="yes" | ||
GNOME_ORG_MODULE="network-manager-applet" | ||
|
||
inherit gnome2 | ||
|
||
DESCRIPTION="GNOME applet for NetworkManager" | ||
HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="0" | ||
IUSE="+introspection gcr modemmanager selinux teamd" | ||
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86" | ||
|
||
RDEPEND=" | ||
app-crypt/libsecret | ||
>=dev-libs/glib-2.32:2[dbus] | ||
>=dev-libs/dbus-glib-0.88 | ||
>=sys-apps/dbus-1.4.1 | ||
>=sys-auth/polkit-0.96-r1 | ||
>=x11-libs/gtk+-3.4:3[introspection?] | ||
>=x11-libs/libnotify-0.7.0 | ||
app-text/iso-codes | ||
>=net-misc/networkmanager-1.7:=[introspection?,modemmanager?,teamd?] | ||
net-misc/mobile-broadband-provider-info | ||
introspection? ( >=dev-libs/gobject-introspection-0.9.6:= ) | ||
virtual/freedesktop-icon-theme | ||
virtual/libgudev:= | ||
gcr? ( >=app-crypt/gcr-3.14:= ) | ||
modemmanager? ( net-misc/modemmanager ) | ||
selinux? ( dev-libs/libselinux ) | ||
teamd? ( >=dev-libs/jansson-2.3 ) | ||
" | ||
DEPEND="${RDEPEND} | ||
>=dev-util/gtk-doc-am-1.0 | ||
>=dev-util/intltool-0.50.1 | ||
virtual/pkgconfig | ||
" | ||
|
||
PDEPEND="virtual/notification-daemon" #546134 | ||
|
||
src_configure() { | ||
local myconf=( | ||
--without-appindicator | ||
--disable-lto | ||
--disable-ld-gc | ||
--disable-more-warnings | ||
--disable-static | ||
--localstatedir=/var | ||
$(use_enable introspection) | ||
$(use_with gcr) | ||
$(use_with modemmanager wwan) | ||
$(use_with selinux) | ||
$(use_with teamd team) | ||
) | ||
gnome2_src_configure "${myconf[@]}" | ||
} |