Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/wmhdplop: ChangeLog wmhdplop-0.9.9-r1.ebuild
Date: Tue, 29 Jun 2010 09:54:01
Message-Id: 20100629095356.E90B62C621@corvid.gentoo.org
1 voyageur 10/06/29 09:53:56
2
3 Modified: ChangeLog
4 Added: wmhdplop-0.9.9-r1.ebuild
5 Log:
6 Fix dockapp neeeding a restart after a long time, patch by Mikael Magnusson <mikachu@×××××.com> in bug #325615
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 x11-plugins/wmhdplop/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmhdplop/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmhdplop/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmhdplop/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmhdplop/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 16 Aug 2009 08:47:55 -0000 1.16
23 +++ ChangeLog 29 Jun 2010 09:53:56 -0000 1.17
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-plugins/wmhdplop
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmhdplop/ChangeLog,v 1.16 2009/08/16 08:47:55 betelgeuse Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmhdplop/ChangeLog,v 1.17 2010/06/29 09:53:56 voyageur Exp $
30 +
31 +*wmhdplop-0.9.9-r1 (29 Jun 2010)
32 +
33 + 29 Jun 2010; Bernard Cafarelli <voyageur@g.o>
34 + +wmhdplop-0.9.9-r1.ebuild, +files/wmhdplop-0.9.9-64bit.patch:
35 + Fix dockapp neeeding a restart after a long time, patch by Mikael
36 + Magnusson <mikachu@×××××.com> in bug #325615
37
38 16 Aug 2009; Petteri Räty <betelgeuse@g.o> wmhdplop-0.9.9.ebuild:
39 Migrate to EAPI 2 in order to get rid of built_with_use for bug #261562.
40
41
42
43 1.1 x11-plugins/wmhdplop/wmhdplop-0.9.9-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmhdplop/wmhdplop-0.9.9-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmhdplop/wmhdplop-0.9.9-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: wmhdplop-0.9.9-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/wmhdplop/wmhdplop-0.9.9-r1.ebuild,v 1.1 2010/06/29 09:53:56 voyageur Exp $
53
54 EAPI="2"
55
56 inherit eutils multilib
57
58 DESCRIPTION="a dockapp for monitoring disk activities with fancy visuals."
59 HOMEPAGE="http://hules.free.fr/wmhdplop"
60 SRC_URI="http://hules.free.fr/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE="gkrellm"
66
67 RDEPEND="media-libs/imlib2[X]
68 x11-libs/libX11
69 x11-libs/libXext
70 media-fonts/corefonts
71 >=media-libs/freetype-2"
72 DEPEND="${RDEPEND}
73 x11-proto/xextproto
74 gkrellm? ( dev-util/pkgconfig
75 >=app-admin/gkrellm-2 )"
76
77 src_prepare() {
78 epatch "${FILESDIR}"/${P}-64bit.patch
79 sed -i -e "s:-O3 -fomit-frame-pointer -ffast-math:${CFLAGS}:" "${S}"/configure
80 }
81
82 src_configure() {
83 econf $(use_enable gkrellm)
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" install || die "emake install failed."
88 dodoc AUTHORS ChangeLog NEWS README || die
89
90 insinto /usr/$(get_libdir)/gkrellm2/plugins
91 use gkrellm && doins gkhdplop.so
92 }