Gentoo Archives: gentoo-commits

From: "Santiago M. Mola (coldwind)" <coldwind@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/gkrellmms: gkrellmms-2.1.22-r1.ebuild ChangeLog
Date: Sat, 01 Mar 2008 23:10:01
Message-Id: E1JVaq6-00062B-4Q@stork.gentoo.org
1 coldwind 08/03/01 23:09:58
2
3 Modified: gkrellmms-2.1.22-r1.ebuild ChangeLog
4 Log:
5 audacious patch updated and eerror added to check if audacious is built with dbus support, fixes bugs #199620 (thanks to Sascha Hlusiak <bugs at saschahlusiak dot de>) and #212016 (thanks to Federico Moro <zayer at frikis dot org>).
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.6 x11-plugins/gkrellmms/gkrellmms-2.1.22-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/gkrellmms/gkrellmms-2.1.22-r1.ebuild?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/gkrellmms/gkrellmms-2.1.22-r1.ebuild?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/gkrellmms/gkrellmms-2.1.22-r1.ebuild?r1=1.5&r2=1.6
14
15 Index: gkrellmms-2.1.22-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/gkrellmms/gkrellmms-2.1.22-r1.ebuild,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- gkrellmms-2.1.22-r1.ebuild 5 Feb 2007 15:54:39 -0000 1.5
22 +++ gkrellmms-2.1.22-r1.ebuild 1 Mar 2008 23:09:57 -0000 1.6
23 @@ -1,27 +1,42 @@
24 -# Copyright 1999-2007 Gentoo Foundation
25 +# Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellmms/gkrellmms-2.1.22-r1.ebuild,v 1.5 2007/02/05 15:54:39 gustavoz Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellmms/gkrellmms-2.1.22-r1.ebuild,v 1.6 2008/03/01 23:09:57 coldwind Exp $
29
30 inherit eutils multilib toolchain-funcs
31
32 DESCRIPTION="A sweet plugin to control Audacious from GKrellM2"
33 -SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz"
34 +SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz
35 + mirror://gentoo/${P}-audacious.patch.gz"
36 HOMEPAGE="http://gkrellm.luon.net/gkrellmms.phtml"
37 -IUSE=""
38 +
39 DEPEND=">=app-admin/gkrellm-2
40 - media-sound/audacious"
41 + media-sound/audacious
42 + sys-apps/dbus"
43 +# dbus dependency is because of audacious patch
44 +
45 +RDEPEND="${DEPEND}"
46
47 +IUSE=""
48 SLOT="0"
49 LICENSE="GPL-2"
50 KEYWORDS="~alpha ~amd64 ~ppc sparc x86"
51
52 S="${WORKDIR}"/${PN}
53
54 +pkg_setup() {
55 + if ! built_with_use media-sound/audacious dbus ; then
56 + eerror "${PN} needs media-sound/audacious built with"
57 + eerror "USE='dbus'. Please, reinstall it with dbus enabled"
58 + eerror "and try again."
59 + die "media-sound/audacious built without dbus USE flag"
60 + fi
61 +}
62 +
63 src_unpack() {
64 unpack ${A}
65 cd "${S}"
66
67 - epatch "${FILESDIR}"/${P}-audacious.patch
68 + epatch "${WORKDIR}"/${P}-audacious.patch
69 epatch "${FILESDIR}"/${P}-ldflags.patch
70 }
71
72
73
74
75 1.54 x11-plugins/gkrellmms/ChangeLog
76
77 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/gkrellmms/ChangeLog?rev=1.54&view=markup
78 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/gkrellmms/ChangeLog?rev=1.54&content-type=text/plain
79 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/gkrellmms/ChangeLog?r1=1.53&r2=1.54
80
81 Index: ChangeLog
82 ===================================================================
83 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/gkrellmms/ChangeLog,v
84 retrieving revision 1.53
85 retrieving revision 1.54
86 diff -u -r1.53 -r1.54
87 --- ChangeLog 5 Feb 2007 15:54:39 -0000 1.53
88 +++ ChangeLog 1 Mar 2008 23:09:57 -0000 1.54
89 @@ -1,6 +1,13 @@
90 # ChangeLog for x11-plugins/gkrellmms
91 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
92 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellmms/ChangeLog,v 1.53 2007/02/05 15:54:39 gustavoz Exp $
93 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
94 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellmms/ChangeLog,v 1.54 2008/03/01 23:09:57 coldwind Exp $
95 +
96 + 01 Mar 2008; Santiago M. Mola <coldwind@g.o>
97 + -files/gkrellmms-2.1.22-audacious.patch, gkrellmms-2.1.22-r1.ebuild:
98 + audacious patch updated and eerror added to check if audacious is built with
99 + dbus support, fixes bugs #199620 (thanks to Sascha Hlusiak <bugs at
100 + saschahlusiak dot de>) and #212016 (thanks to Federico Moro <zayer at frikis
101 + dot org>).
102
103 05 Feb 2007; Gustavo Zacarias <gustavoz@g.o>
104 gkrellmms-2.1.22-r1.ebuild:
105
106
107
108 --
109 gentoo-commits@l.g.o mailing list