Gentoo Archives: gentoo-commits

From: "Robert Piasek (dagger)" <dagger@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/nm-applet: nm-applet-0.7.1-r3.ebuild ChangeLog nm-applet-0.7.1-r2.ebuild
Date: Thu, 02 Jul 2009 15:45:55
Message-Id: E1MMOTw-0003YJ-Oc@stork.gentoo.org
1 dagger 09/07/02 15:45:52
2
3 Modified: ChangeLog
4 Added: nm-applet-0.7.1-r3.ebuild
5 Removed: nm-applet-0.7.1-r2.ebuild
6 Log:
7 Backported patch. That fixes Gentoo bug #274990
8 (Portage version: 2.1.6.13/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.29 gnome-extra/nm-applet/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/nm-applet/ChangeLog?rev=1.29&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/nm-applet/ChangeLog?rev=1.29&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/nm-applet/ChangeLog?r1=1.28&r2=1.29
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/ChangeLog,v
20 retrieving revision 1.28
21 retrieving revision 1.29
22 diff -u -r1.28 -r1.29
23 --- ChangeLog 14 Jun 2009 19:32:38 -0000 1.28
24 +++ ChangeLog 2 Jul 2009 15:45:52 -0000 1.29
25 @@ -1,6 +1,12 @@
26 # ChangeLog for gnome-extra/nm-applet
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/ChangeLog,v 1.28 2009/06/14 19:32:38 dagger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/ChangeLog,v 1.29 2009/07/02 15:45:52 dagger Exp $
30 +
31 +*nm-applet-0.7.1-r3 (02 Jul 2009)
32 +
33 + 02 Jul 2009; Robert Piasek <dagger@g.o> -nm-applet-0.7.1-r2.ebuild,
34 + +nm-applet-0.7.1-r3.ebuild:
35 + Backported upstream patch. That fixes bug 274990.
36
37 14 Jun 2009; Robert Piasek <dagger@g.o> +nm-applet-0.7.1-r1.ebuild,
38 nm-applet-0.7.1-r2.ebuild:
39
40
41
42 1.1 gnome-extra/nm-applet/nm-applet-0.7.1-r3.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/nm-applet/nm-applet-0.7.1-r3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/nm-applet/nm-applet-0.7.1-r3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: nm-applet-0.7.1-r3.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/nm-applet-0.7.1-r3.ebuild,v 1.1 2009/07/02 15:45:52 dagger Exp $
52
53 EAPI=2
54 inherit gnome2 eutils versionator autotools
55
56 PATCH_VERSION="1a"
57
58 MY_P="${P/nm-applet/network-manager-applet}"
59 MYPV_MINOR=$(get_version_component_range)
60 PATCHNAME="${P}-gentoo-patches-${PATCH_VERSION}"
61
62 DESCRIPTION="Gnome applet for NetworkManager."
63 HOMEPAGE="http://projects.gnome.org/NetworkManager/"
64 SRC_URI="mirror://gnome/sources/network-manager-applet/0.7/${MY_P}.tar.bz2
65 http://dev.gentoo.org/~dagger/files/${PATCHNAME}.tar.bz2"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~amd64 ~arm ~ppc ~x86"
70 IUSE=""
71
72 RDEPEND=">=sys-apps/dbus-1.2
73 >=sys-apps/hal-0.5.9
74 >=dev-libs/libnl-1.1
75 >=net-misc/networkmanager-${MYPV_MINOR}-r4
76 >=net-wireless/wireless-tools-28_pre9
77 >=net-wireless/wpa_supplicant-0.5.7
78 >=dev-libs/glib-2.16
79 >=x11-libs/libnotify-0.4.3
80 >=x11-libs/gtk+-2.10
81 >=gnome-base/libglade-2
82 >=gnome-base/gnome-keyring-2.20
83 || ( >=gnome-base/gnome-panel-2 xfce-base/xfce4-panel x11-misc/trayer )
84 >=gnome-base/gconf-2.20
85 >=gnome-extra/policykit-gnome-0.8"
86 DEPEND="${RDEPEND}
87 dev-util/pkgconfig
88 >=dev-util/intltool-0.35"
89
90 DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README"
91 # USE_DESTDIR="1"
92
93 S=${WORKDIR}/${MY_P}
94
95 pkg_setup () {
96 G2CONF="${G2CONF} \
97 --disable-more-warnings \
98 --localstatedir=/var \
99 --with-dbus-sys=/etc/dbus-1/system.d"
100 }
101
102 src_prepare() {
103
104 EPATCH_SOURCE="${WORKDIR}/${PATCHNAME}"
105 EPATCH_SUFFIX="patch"
106 epatch && eautoreconf
107 }