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: lxpanel-0.5.1.ebuild ChangeLog
Date: Tue, 04 Aug 2009 18:56:45
Message-Id: E1MYPBj-0008HG-1e@stork.gentoo.org
1 yngwin 09/08/04 18:56:43
2
3 Modified: ChangeLog
4 Added: lxpanel-0.5.1.ebuild
5 Log:
6 Version bump. New version no longer has wifi plugin.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.6 lxde-base/lxpanel/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/lxde-base/lxpanel/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/lxde-base/lxpanel/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/lxde-base/lxpanel/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 30 Jul 2009 18:32:38 -0000 1.5
23 +++ ChangeLog 4 Aug 2009 18:56:42 -0000 1.6
24 @@ -1,6 +1,12 @@
25 # ChangeLog for lxde-base/lxpanel
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/ChangeLog,v 1.5 2009/07/30 18:32:38 volkmar Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/ChangeLog,v 1.6 2009/08/04 18:56:42 yngwin Exp $
29 +
30 +*lxpanel-0.5.1 (04 Aug 2009)
31 +
32 + 04 Aug 2009; Ben de Groot <yngwin@g.o> +lxpanel-0.5.1.ebuild,
33 + +files/lxpanel-0.5.1-sandbox.patch:
34 + Version bump. New version no longer has wifi plugin.
35
36 30 Jul 2009; Mounir Lamouri <volkmar@g.o> lxpanel-0.4.1.ebuild:
37 Rekeywording for ppc. Bug 271148
38
39
40
41 1.1 lxde-base/lxpanel/lxpanel-0.5.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/lxde-base/lxpanel/lxpanel-0.5.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/lxde-base/lxpanel/lxpanel-0.5.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lxpanel-0.5.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/lxpanel-0.5.1.ebuild,v 1.1 2009/08/04 18:56:42 yngwin Exp $
51
52 EAPI="2"
53 inherit eutils autotools
54
55 DESCRIPTION="Lightweight X11 desktop panel for LXDE"
56 HOMEPAGE="http://lxde.sf.net/"
57 SRC_URI="mirror://sourceforge/lxde/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 KEYWORDS="~amd64 ~ppc ~x86"
61 SLOT="0"
62 IUSE="+X +alsa"
63 RESTRICT="test" # bug 249598
64
65 RDEPEND="x11-libs/gtk+:2
66 x11-libs/libXmu
67 x11-libs/libXpm
68 lxde-base/lxmenu-data
69 lxde-base/menu-cache
70 alsa? ( media-libs/alsa-lib )
71 X? ( x11-libs/libX11 )"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig
74 sys-devel/gettext"
75
76 src_prepare() {
77 epatch "${FILESDIR}"/${P}-sandbox.patch
78 eautoreconf
79 }
80
81 src_configure() {
82 econf $(use_enable alsa) \
83 $(use_with X x) \
84 --with-plugins=all
85 }
86
87 src_install () {
88 emake DESTDIR="${D}" install || die "emake install failed"
89 dodoc AUTHORS ChangeLog README || die "dodoc failed"
90 }