Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in lxde-base/lxpanel: ChangeLog lxpanel-0.3.8.1.ebuild
Date: Fri, 02 Jan 2009 00:36:53
Message-Id: E1LIY20-0008FV-4U@stork.gentoo.org
1 yngwin 09/01/02 00:36:52
2
3 Modified: ChangeLog lxpanel-0.3.8.1.ebuild
4 Log:
5 Adding patch to prevent sandbox failures, fixes bug 252774.
6 (Portage version: 2.2_rc20/cvs/Linux 2.6.27-hh7 i686)
7
8 Revision Changes Path
9 1.3 lxde-base/lxpanel/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/lxde-base/lxpanel/ChangeLog?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/lxde-base/lxpanel/ChangeLog?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/lxde-base/lxpanel/ChangeLog?r1=1.2&r2=1.3
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/ChangeLog,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- ChangeLog 7 Dec 2008 18:55:04 -0000 1.2
22 +++ ChangeLog 2 Jan 2009 00:36:52 -0000 1.3
23 @@ -1,6 +1,10 @@
24 # ChangeLog for lxde-base/lxpanel
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/ChangeLog,v 1.2 2008/12/07 18:55:04 yngwin Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/ChangeLog,v 1.3 2009/01/02 00:36:52 yngwin Exp $
29 +
30 + 02 Jan 2009; Ben de Groot <yngwin@g.o>
31 + +files/lxpanel-sandbox.patch, lxpanel-0.3.8.1.ebuild:
32 + Adding patch to prevent sandbox failures, fixes bug 252774.
33
34 07 Dec 2008; Ben de Groot <yngwin@g.o> lxpanel-0.3.8.1.ebuild:
35 Add test restriction, see bug 249598.
36
37
38
39 1.3 lxde-base/lxpanel/lxpanel-0.3.8.1.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/lxde-base/lxpanel/lxpanel-0.3.8.1.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/lxde-base/lxpanel/lxpanel-0.3.8.1.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/lxde-base/lxpanel/lxpanel-0.3.8.1.ebuild?r1=1.2&r2=1.3
44
45 Index: lxpanel-0.3.8.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/lxpanel-0.3.8.1.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- lxpanel-0.3.8.1.ebuild 7 Dec 2008 18:55:04 -0000 1.2
52 +++ lxpanel-0.3.8.1.ebuild 2 Jan 2009 00:36:52 -0000 1.3
53 @@ -1,8 +1,9 @@
54 -# Copyright 1999-2008 Gentoo Foundation
55 +# Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/lxpanel-0.3.8.1.ebuild,v 1.2 2008/12/07 18:55:04 yngwin Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/lxpanel-0.3.8.1.ebuild,v 1.3 2009/01/02 00:36:52 yngwin Exp $
59
60 EAPI="1"
61 +inherit eutils autotools
62
63 DESCRIPTION="Lightweight X11 desktop panel for LXDE"
64 HOMEPAGE="http://lxde.sf.net/"
65 @@ -24,6 +25,13 @@
66 dev-util/pkgconfig
67 sys-devel/gettext"
68
69 +src_unpack() {
70 + unpack ${A}
71 + cd "${S}"
72 + epatch "${FILESDIR}"/${PN}-sandbox.patch
73 + eautoreconf
74 +}
75 +
76 src_compile() {
77 econf $(use_enable alsa) \
78 $(use_enable wifi libiw) \