diff options
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/nm-applet/ChangeLog | 9 | ||||
-rw-r--r-- | gnome-extra/nm-applet/files/nm-applet-0.7.0-confchanges.patch | 13 | ||||
-rw-r--r-- | gnome-extra/nm-applet/metadata.xml | 8 | ||||
-rw-r--r-- | gnome-extra/nm-applet/nm-applet-0.7.0.ebuild | 61 |
4 files changed, 90 insertions, 1 deletions
diff --git a/gnome-extra/nm-applet/ChangeLog b/gnome-extra/nm-applet/ChangeLog index 24792a126bd5..ed066dba9afa 100644 --- a/gnome-extra/nm-applet/ChangeLog +++ b/gnome-extra/nm-applet/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for gnome-extra/nm-applet # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/ChangeLog,v 1.20 2008/08/17 16:15:22 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/ChangeLog,v 1.21 2008/12/05 13:27:03 rbu Exp $ + +*nm-applet-0.7.0 (05 Dec 2008) + + 05 Dec 2008; Robert Buchholz <rbu@gentoo.org> + +files/nm-applet-0.7.0-confchanges.patch, metadata.xml, + +nm-applet-0.7.0.ebuild: + Version bump, bug #235330 17 Aug 2008; Markus Meier <maekke@gentoo.org> nm-applet-0.6.6.ebuild: x86 stable, bug #228837 diff --git a/gnome-extra/nm-applet/files/nm-applet-0.7.0-confchanges.patch b/gnome-extra/nm-applet/files/nm-applet-0.7.0-confchanges.patch new file mode 100644 index 000000000000..c0b8ab8e7729 --- /dev/null +++ b/gnome-extra/nm-applet/files/nm-applet-0.7.0-confchanges.patch @@ -0,0 +1,13 @@ +Index: trunk/nm-applet.conf +=================================================================== +--- trunk.orig/nm-applet.conf ++++ trunk/nm-applet.conf +@@ -11,7 +11,7 @@ + <!-- Only root can get secrets --> + <allow send_interface="org.freedesktop.NetworkManagerSettings.Secrets"/> + </policy> +- <policy at_console="true"> ++ <policy group="plugdev"> + <allow own="org.freedesktop.NetworkManagerUserSettings"/> + + <allow send_destination="org.freedesktop.NetworkManagerUserSettings"/> diff --git a/gnome-extra/nm-applet/metadata.xml b/gnome-extra/nm-applet/metadata.xml index 725b14025601..3987409e8aa8 100644 --- a/gnome-extra/nm-applet/metadata.xml +++ b/gnome-extra/nm-applet/metadata.xml @@ -6,4 +6,12 @@ <email>steev@gentoo.org</email> <name>Stephen Klimaszewski</name> </maintainer> + <maintainer> + <email>rbu@gentoo.org</email> + <name>Robert Buchholz</name> + </maintainer> + <maintainer> + <email>robert.piasek@member.fsf.org</email> + <name>Robert Piasek</name> + </maintainer> </pkgmetadata> diff --git a/gnome-extra/nm-applet/nm-applet-0.7.0.ebuild b/gnome-extra/nm-applet/nm-applet-0.7.0.ebuild new file mode 100644 index 000000000000..7e15bffd3363 --- /dev/null +++ b/gnome-extra/nm-applet/nm-applet-0.7.0.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/nm-applet-0.7.0.ebuild,v 1.1 2008/12/05 13:27:03 rbu Exp $ + +inherit gnome2 eutils + +MY_P="${P/nm-applet/network-manager-applet}" + +DESCRIPTION="Gnome applet for NetworkManager." +HOMEPAGE="http://projects.gnome.org/NetworkManager/" +SRC_URI="mirror://gnome/sources/network-manager-applet/0.7/${MY_P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~arm ~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=">=sys-apps/dbus-1.2 + >=sys-apps/hal-0.5.9 + >=dev-libs/libnl-1.1 + >=net-misc/networkmanager-0.7.0 + >=net-wireless/wireless-tools-28_pre9 + >=net-wireless/wpa_supplicant-0.5.7 + >=dev-libs/glib-2.16 + >=x11-libs/libnotify-0.4.3 + >=x11-libs/gtk+-2.10 + >=gnome-base/libglade-2 + >=gnome-base/gnome-keyring-2.20 + >=gnome-base/gnome-panel-2.20 + >=gnome-base/gconf-2.20 + >=gnome-base/libgnomeui-2.20 + >=gnome-extra/policykit-gnome-0.8" +DEPEND="${RDEPEND} + dev-util/pkgconfig + >=dev-util/intltool-0.35" + +DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README" +# USE_DESTDIR="1" + +S=${WORKDIR}/${P/_rc2/} + +pkg_setup () { + G2CONF="${G2CONF} \ + --disable-more-warnings \ + --localstatedir=/var \ + --with-dbus-sys=/etc/dbus-1/system.d" +} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-0.7.0-confchanges.patch" +} + +pkg_postinst() { + gnome2_pkg_postinst + elog "Your user needs to be in the plugdev group in order to use this" + elog "package. If it doesn't start in Gnome for you automatically after" + elog 'you log back in, simply run "nm-applet --sm-disable"' + elog "You also need the notification area applet on your panel for" + elog "this to show up." +} |