Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/lxmusic: ChangeLog lxmusic-0.4.4.ebuild
Date: Sat, 29 Jan 2011 20:19:49
Message-Id: 20110129201940.998B420054@flycatcher.gentoo.org
1 ssuominen 11/01/29 20:19:40
2
3 Modified: ChangeLog lxmusic-0.4.4.ebuild
4 Log:
5 Fix building with x11-libs/libnotify >= 0.7.
6
7 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 media-sound/lxmusic/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lxmusic/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lxmusic/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lxmusic/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/lxmusic/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 7 Aug 2010 17:30:24 -0000 1.2
23 +++ ChangeLog 29 Jan 2011 20:19:40 -0000 1.3
24 @@ -1,6 +1,10 @@
25 # ChangeLog for media-sound/lxmusic
26 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lxmusic/ChangeLog,v 1.2 2010/08/07 17:30:24 vostorga Exp $
28 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/lxmusic/ChangeLog,v 1.3 2011/01/29 20:19:40 ssuominen Exp $
30 +
31 + 29 Jan 2011; Samuli Suominen <ssuominen@g.o> lxmusic-0.4.4.ebuild,
32 + +files/lxmusic-0.4.4-libnotify-0.7.patch:
33 + Fix building with x11-libs/libnotify >= 0.7.
34
35 07 Aug 2010; VĂ­ctor Ostorga <vostorga@g.o> lxmusic-0.4.4.ebuild:
36 Adding x11-libs/libnotify as RDEPEND and fixing typo
37
38
39
40 1.3 media-sound/lxmusic/lxmusic-0.4.4.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lxmusic/lxmusic-0.4.4.ebuild?rev=1.3&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lxmusic/lxmusic-0.4.4.ebuild?rev=1.3&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lxmusic/lxmusic-0.4.4.ebuild?r1=1.2&r2=1.3
45
46 Index: lxmusic-0.4.4.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/media-sound/lxmusic/lxmusic-0.4.4.ebuild,v
49 retrieving revision 1.2
50 retrieving revision 1.3
51 diff -u -r1.2 -r1.3
52 --- lxmusic-0.4.4.ebuild 7 Aug 2010 17:30:24 -0000 1.2
53 +++ lxmusic-0.4.4.ebuild 29 Jan 2011 20:19:40 -0000 1.3
54 @@ -1,8 +1,9 @@
55 -# Copyright 1999-2010 Gentoo Foundation
56 +# Copyright 1999-2011 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lxmusic/lxmusic-0.4.4.ebuild,v 1.2 2010/08/07 17:30:24 vostorga Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/media-sound/lxmusic/lxmusic-0.4.4.ebuild,v 1.3 2011/01/29 20:19:40 ssuominen Exp $
60
61 EAPI=2
62 +inherit eutils
63
64 DESCRIPTION="A simple GUI XMMS2 client with minimal functionality"
65 HOMEPAGE="http://lxde.sourceforge.net/"
66 @@ -19,7 +20,11 @@
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig"
69
70 +src_prepare() {
71 + epatch "${FILESDIR}"/${P}-libnotify-0.7.patch
72 +}
73 +
74 src_install() {
75 - emake DESTDIR="${D}" install || die "emake install failed"
76 - dodoc AUTHORS README || die "dodoc failed"
77 + emake DESTDIR="${D}" install || die
78 + dodoc AUTHORS README
79 }