Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/idesk: ChangeLog idesk-0.7.5-r2.ebuild
Date: Fri, 20 Aug 2010 07:31:05
Message-Id: 20100820073059.A44A52004C@flycatcher.gentoo.org
1 xarthisius 10/08/20 07:30:59
2
3 Modified: ChangeLog
4 Added: idesk-0.7.5-r2.ebuild
5 Log:
6 Fix building with GLIBC 2.12 wrt bug 333151. Thanks to Charlie Gehlin <charlie@××××××.com> for report and scavenging patch.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.52 x11-misc/idesk/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/idesk/ChangeLog?rev=1.52&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/idesk/ChangeLog?rev=1.52&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/idesk/ChangeLog?r1=1.51&r2=1.52
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/idesk/ChangeLog,v
19 retrieving revision 1.51
20 retrieving revision 1.52
21 diff -u -r1.51 -r1.52
22 --- ChangeLog 6 May 2008 13:39:18 -0000 1.51
23 +++ ChangeLog 20 Aug 2010 07:30:57 -0000 1.52
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-misc/idesk
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/idesk/ChangeLog,v 1.51 2008/05/06 13:39:18 drac Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/idesk/ChangeLog,v 1.52 2010/08/20 07:30:57 xarthisius Exp $
30 +
31 +*idesk-0.7.5-r2 (20 Aug 2010)
32 +
33 + 20 Aug 2010; Kacper Kowalik <xarthisius@g.o>
34 + +idesk-0.7.5-r2.ebuild, +files/idesk-0.7.5-glibc-2.12.patch:
35 + Fix building with GLIBC 2.12 wrt bug 333151. Thanks to Charlie Gehlin
36 + <charlie@××××××.com> for report and scavenging patch.
37
38 06 May 2008; Samuli Suominen <drac@g.o> idesk-0.7.5-r1.ebuild:
39 Move pkgconfig to DEPEND wrt #217278.
40
41
42
43 1.1 x11-misc/idesk/idesk-0.7.5-r2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/idesk/idesk-0.7.5-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/idesk/idesk-0.7.5-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: idesk-0.7.5-r2.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-misc/idesk/idesk-0.7.5-r2.ebuild,v 1.1 2010/08/20 07:30:57 xarthisius Exp $
53
54 EAPI=2
55
56 inherit eutils
57
58 DESCRIPTION="Utility to place icons on the root window"
59 HOMEPAGE="http://idesk.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
65 IUSE=""
66
67 RDEPEND=">=media-libs/imlib2-1.4[X]
68 media-libs/freetype
69 dev-libs/libxml2
70 dev-libs/glib:2
71 gnome-extra/libgsf
72 x11-libs/pango
73 x11-libs/gtk+:2
74 media-libs/libart_lgpl
75 x11-libs/startup-notification"
76 DEPEND="${RDEPEND}
77 dev-util/pkgconfig"
78
79 src_prepare() {
80 sed -i \
81 -e 's,/usr/local/,/usr/,' \
82 examples/default.lnk || die
83 epatch "${FILESDIR}"/${P}-glibc-2.12.patch #333515
84 }
85
86 src_configure() {
87 econf \
88 --enable-libsn
89 }
90
91 src_install() {
92 emake DESTDIR="${D}" install || die
93 dodoc README AUTHORS NEWS TODO || die
94 }