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/lxlauncher: ChangeLog lxlauncher-0.2.1-r1.ebuild
Date: Wed, 27 Oct 2010 19:42:10
Message-Id: 20101027194204.0F31D20051@flycatcher.gentoo.org
1 vostorga 10/10/27 19:42:04
2
3 Modified: ChangeLog
4 Added: lxlauncher-0.2.1-r1.ebuild
5 Log:
6 Fixing segmentation fault, bug #341561
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.9 lxde-base/lxlauncher/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxlauncher/ChangeLog?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxlauncher/ChangeLog?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxlauncher/ChangeLog?r1=1.8&r2=1.9
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/lxde-base/lxlauncher/ChangeLog,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- ChangeLog 10 Jan 2010 15:30:40 -0000 1.8
23 +++ ChangeLog 27 Oct 2010 19:42:03 -0000 1.9
24 @@ -1,6 +1,12 @@
25 # ChangeLog for lxde-base/lxlauncher
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxlauncher/ChangeLog,v 1.8 2010/01/10 15:30:40 volkmar Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxlauncher/ChangeLog,v 1.9 2010/10/27 19:42:03 vostorga Exp $
29 +
30 +*lxlauncher-0.2.1-r1 (27 Oct 2010)
31 +
32 + 27 Oct 2010; VĂ­ctor Ostorga <vostorga@g.o>
33 + +lxlauncher-0.2.1-r1.ebuild, +files/lxlauncher-0.2.1-fix-segfault.patch:
34 + Fixing segmentation fault, bug #341561
35
36 10 Jan 2010; Mounir Lamouri <volkmar@g.o> lxlauncher-0.2.1.ebuild:
37 Stable for ppc, bug 292698
38
39
40
41 1.1 lxde-base/lxlauncher/lxlauncher-0.2.1-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxlauncher/lxlauncher-0.2.1-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxlauncher/lxlauncher-0.2.1-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lxlauncher-0.2.1-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/lxde-base/lxlauncher/lxlauncher-0.2.1-r1.ebuild,v 1.1 2010/10/27 19:42:03 vostorga Exp $
51
52 EAPI="1"
53
54 inherit autotools eutils
55
56 DESCRIPTION="An open source clone of the Asus launcher for EeePC"
57 HOMEPAGE="http://lxde.sf.net/"
58 SRC_URI="mirror://sourceforge/lxde/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux"
63 IUSE=""
64
65 RDEPEND="dev-libs/glib:2
66 x11-libs/gtk+:2
67 gnome-base/gnome-menus
68 x11-libs/startup-notification"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig
71 dev-util/intltool
72 sys-devel/gettext
73 lxde-base/menu-cache
74 !lxde-base/lxlauncher-gmenu"
75
76 src_unpack() {
77 unpack ${A}
78 cd "${S}"
79
80 epatch "${FILESDIR}"/${P}-intltool.patch
81 epatch "${FILESDIR}"/${P}-fix-segfault.patch
82
83 # Rerun autotools
84 einfo "Regenerating autotools files..."
85 eautoreconf
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die "emake install failed"
90 dodoc AUTHORS ChangeLog README
91 }