Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in lxde-base/lxpanel: lxpanel-0.5.6.ebuild ChangeLog
Date: Thu, 29 Jul 2010 14:44:18
Message-Id: 20100729144413.0CE682CE15@corvid.gentoo.org
1 vostorga 10/07/29 14:44:12
2
3 Modified: ChangeLog
4 Added: lxpanel-0.5.6.ebuild
5 Log:
6 Version bump to 0.5.6 , includes bugfixes and translations
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.21 lxde-base/lxpanel/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxpanel/ChangeLog?rev=1.21&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxpanel/ChangeLog?rev=1.21&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxpanel/ChangeLog?r1=1.20&r2=1.21
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/ChangeLog,v
19 retrieving revision 1.20
20 retrieving revision 1.21
21 diff -u -r1.20 -r1.21
22 --- ChangeLog 28 Feb 2010 18:35:47 -0000 1.20
23 +++ ChangeLog 29 Jul 2010 14:44:12 -0000 1.21
24 @@ -1,6 +1,11 @@
25 # ChangeLog for lxde-base/lxpanel
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/ChangeLog,v 1.20 2010/02/28 18:35:47 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/ChangeLog,v 1.21 2010/07/29 14:44:12 vostorga Exp $
29 +
30 +*lxpanel-0.5.6 (29 Jul 2010)
31 +
32 + 29 Jul 2010; VĂ­ctor Ostorga <vostorga@g.o> +lxpanel-0.5.6.ebuild:
33 + Version bump to 0.5.6 , includes bugfixes and translations
34
35 28 Feb 2010; nixnut <nixnut@g.o> lxpanel-0.5.5.ebuild:
36 ppc stable #306433
37
38
39
40 1.1 lxde-base/lxpanel/lxpanel-0.5.6.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxpanel/lxpanel-0.5.6.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxpanel/lxpanel-0.5.6.ebuild?rev=1.1&content-type=text/plain
44
45 Index: lxpanel-0.5.6.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/lxde-base/lxpanel/lxpanel-0.5.6.ebuild,v 1.1 2010/07/29 14:44:12 vostorga Exp $
50
51 EAPI="2"
52 inherit eutils autotools
53
54 DESCRIPTION="Lightweight X11 desktop panel for LXDE"
55 HOMEPAGE="http://lxde.org/"
56 SRC_URI="mirror://sourceforge/lxde/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux"
60 SLOT="0"
61 IUSE="+alsa"
62 RESTRICT="test" # bug 249598
63
64 RDEPEND="x11-libs/gtk+:2
65 x11-libs/libXmu
66 x11-libs/libXpm
67 lxde-base/lxmenu-data
68 lxde-base/menu-cache
69 alsa? ( media-libs/alsa-lib )"
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig
72 sys-devel/gettext"
73
74 src_prepare() {
75 epatch "${FILESDIR}"/${PN}-0.5.1-sandbox.patch
76 eautoreconf
77 }
78
79 src_configure() {
80 local plugins=all
81 [[ ${CHOST} == *-interix* ]] && plugins=deskno,kbled,xkb
82
83 econf $(use_enable alsa) --with-x --with-plugins=${plugins}
84 # the gtk+ dep already pulls in libX11, so we might as well hardcode with-x
85 }
86
87 src_install () {
88 emake DESTDIR="${D}" install || die "emake install failed"
89 dodoc AUTHORS ChangeLog README || die "dodoc failed"
90 }