Gentoo Archives: gentoo-commits

From: "Jim Ramsay (lack)" <lack@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/gkrellm-volume: ChangeLog gkrellm-volume-2.1.13-r1.ebuild
Date: Thu, 29 Jul 2010 14:17:51
Message-Id: 20100729141745.F02B22CE15@corvid.gentoo.org
1 lack 10/07/29 14:17:45
2
3 Modified: ChangeLog
4 Added: gkrellm-volume-2.1.13-r1.ebuild
5 Log:
6 Patch to not crash gkrellm when disabling/reenabling this plugin (Bug #284504)
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.31 x11-plugins/gkrellm-volume/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/gkrellm-volume/ChangeLog?rev=1.31&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/gkrellm-volume/ChangeLog?rev=1.31&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/gkrellm-volume/ChangeLog?r1=1.30&r2=1.31
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-volume/ChangeLog,v
19 retrieving revision 1.30
20 retrieving revision 1.31
21 diff -u -r1.30 -r1.31
22 --- ChangeLog 12 Mar 2010 00:41:48 -0000 1.30
23 +++ ChangeLog 29 Jul 2010 14:17:44 -0000 1.31
24 @@ -1,6 +1,14 @@
25 # ChangeLog for x11-plugins/gkrellm-volume
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-volume/ChangeLog,v 1.30 2010/03/12 00:41:48 sping Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-volume/ChangeLog,v 1.31 2010/07/29 14:17:44 lack Exp $
29 +
30 +*gkrellm-volume-2.1.13-r1 (29 Jul 2010)
31 +
32 + 29 Jul 2010; Jim Ramsay <lack@g.o>
33 + +gkrellm-volume-2.1.13-r1.ebuild,
34 + +files/gkrellm-volume-2.1.13-reenable.patch:
35 + Patch to not crash gkrellm when disabling/reenabling this plugin (Bug
36 + #284504)
37
38 12 Mar 2010; Sebastian Pipping <sping@g.o>
39 gkrellm-volume-2.1.13.ebuild:
40
41
42
43 1.1 x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gkrellm-volume-2.1.13-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r1.ebuild,v 1.1 2010/07/29 14:17:44 lack Exp $
53
54 EAPI="3"
55 inherit gkrellm-plugin eutils
56
57 IUSE="alsa"
58 DESCRIPTION="A mixer control plugin for gkrellm"
59 HOMEPAGE="http://gkrellm.luon.net/volume.php"
60 SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="2"
64 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
65
66 DEPEND="alsa? ( media-libs/alsa-lib )"
67
68 S=${WORKDIR}/${PN}
69
70 PLUGIN_SO=volume.so
71
72 src_prepare() {
73 epatch "${FILESDIR}/${P}-reenable.patch"
74 }
75
76 src_compile() {
77 local myconf=""
78 use alsa && myconf="${myconf} enable_alsa=1"
79 make ${myconf} || die "make failed"
80 }