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/gkrellsun: gkrellsun-1.0.0-r2.ebuild ChangeLog
Date: Wed, 28 Jul 2010 14:52:01
Message-Id: 20100728144155.DA9202CE15@corvid.gentoo.org
1 lack 10/07/28 14:41:55
2
3 Modified: ChangeLog
4 Added: gkrellsun-1.0.0-r2.ebuild
5 Log:
6 Patch double-free of PangoFontDescription (Bug #284504)
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.28 x11-plugins/gkrellsun/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/gkrellsun/ChangeLog?rev=1.28&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/gkrellsun/ChangeLog?rev=1.28&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/gkrellsun/ChangeLog?r1=1.27&r2=1.28
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/gkrellsun/ChangeLog,v
19 retrieving revision 1.27
20 retrieving revision 1.28
21 diff -u -r1.27 -r1.28
22 --- ChangeLog 12 Mar 2007 17:52:07 -0000 1.27
23 +++ ChangeLog 28 Jul 2010 14:41:54 -0000 1.28
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-plugins/gkrellsun
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellsun/ChangeLog,v 1.27 2007/03/12 17:52:07 lack Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellsun/ChangeLog,v 1.28 2010/07/28 14:41:54 lack Exp $
30 +
31 +*gkrellsun-1.0.0-r2 (28 Jul 2010)
32 +
33 + 28 Jul 2010; Jim Ramsay <lack@g.o> +gkrellsun-1.0.0-r2.ebuild,
34 + +files/gkrellsun-1.0.0-reenable.patch:
35 + Patch double-free of PangoFontDescription (Bug #284504)
36
37 12 Mar 2007; Jim Ramsay <lack@g.o> gkrellsun-1.0.0-r1.ebuild:
38 Updated to use new gkrellm-plugin eclass
39
40
41
42 1.1 x11-plugins/gkrellsun/gkrellsun-1.0.0-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/gkrellsun/gkrellsun-1.0.0-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/gkrellsun/gkrellsun-1.0.0-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gkrellsun-1.0.0-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellsun/gkrellsun-1.0.0-r2.ebuild,v 1.1 2010/07/28 14:41:54 lack Exp $
52
53 EAPI="3"
54 inherit gkrellm-plugin eutils
55
56 IUSE="nls"
57 DESCRIPTION="A GKrellM plugin that shows sunrise and sunset times."
58 HOMEPAGE="http://gkrellsun.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/gkrellsun/${P}.tar.gz"
60
61 SLOT="1"
62 LICENSE="GPL-2"
63 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
64
65 DEPEND="nls? ( sys-devel/gettext )"
66
67 PLUGIN_SO=src20/gkrellsun.so
68
69 src_prepare() {
70 epatch "${FILESDIR}/${P}-reenable.patch"
71 }
72
73 src_compile() {
74 use nls && myconf="$myconf enable_nls=1"
75 emake ${myconf}
76 }