Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/dnotify: dnotify-0.18.0.ebuild ChangeLog
Date: Fri, 10 Sep 2010 05:06:11
Message-Id: 20100910050607.0E55E20051@flycatcher.gentoo.org
1 ssuominen 10/09/10 05:06:07
2
3 Modified: dnotify-0.18.0.ebuild ChangeLog
4 Log:
5 Fix building with recent glibc wrt #336649 by Jochen Schlick.
6
7 (Portage version: 2.2_rc78/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 sys-apps/dnotify/dnotify-0.18.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dnotify/dnotify-0.18.0.ebuild?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dnotify/dnotify-0.18.0.ebuild?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dnotify/dnotify-0.18.0.ebuild?r1=1.9&r2=1.10
15
16 Index: dnotify-0.18.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/dnotify/dnotify-0.18.0.ebuild,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- dnotify-0.18.0.ebuild 10 Jan 2008 10:40:22 -0000 1.9
23 +++ dnotify-0.18.0.ebuild 10 Sep 2010 05:06:06 -0000 1.10
24 @@ -1,7 +1,8 @@
25 -# Copyright 1999-2008 Gentoo Foundation
26 +# Copyright 1999-2010 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/dnotify-0.18.0.ebuild,v 1.9 2008/01/10 10:40:22 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/dnotify-0.18.0.ebuild,v 1.10 2010/09/10 05:06:06 ssuominen Exp $
30
31 +EAPI=2
32 inherit eutils
33
34 DESCRIPTION="Execute a command when the contents of a directory change"
35 @@ -10,23 +11,23 @@
36
37 LICENSE="GPL-2"
38 SLOT="0"
39 -KEYWORDS="amd64 mips ppc -sparc x86"
40 +KEYWORDS="amd64 ~mips ppc -sparc x86"
41 IUSE="nls"
42
43 +RDEPEND=""
44 DEPEND="nls? ( sys-devel/gettext )"
45
46 -src_unpack() {
47 - unpack ${A}
48 - cd "${S}"
49 - epatch "${FILESDIR}"/${P}-nls.patch
50 +src_prepare() {
51 + epatch "${FILESDIR}"/${P}-nls.patch \
52 + "${FILESDIR}"/${P}-glibc-212.patch
53 }
54
55 -src_compile() {
56 - econf $(use_enable nls) || die "failed to configure"
57 - emake || die "failed to make"
58 +src_configure() {
59 + econf \
60 + $(use_enable nls)
61 }
62
63 src_install() {
64 - emake DESTDIR="${D}" install || die "make install failed"
65 + emake DESTDIR="${D}" install || die
66 dodoc AUTHORS TODO NEWS README
67 }
68
69
70
71 1.24 sys-apps/dnotify/ChangeLog
72
73 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dnotify/ChangeLog?rev=1.24&view=markup
74 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dnotify/ChangeLog?rev=1.24&content-type=text/plain
75 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dnotify/ChangeLog?r1=1.23&r2=1.24
76
77 Index: ChangeLog
78 ===================================================================
79 RCS file: /var/cvsroot/gentoo-x86/sys-apps/dnotify/ChangeLog,v
80 retrieving revision 1.23
81 retrieving revision 1.24
82 diff -u -r1.23 -r1.24
83 --- ChangeLog 10 Jan 2008 10:40:22 -0000 1.23
84 +++ ChangeLog 10 Sep 2010 05:06:06 -0000 1.24
85 @@ -1,6 +1,10 @@
86 # ChangeLog for sys-apps/dnotify
87 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
88 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/ChangeLog,v 1.23 2008/01/10 10:40:22 vapier Exp $
89 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
90 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/ChangeLog,v 1.24 2010/09/10 05:06:06 ssuominen Exp $
91 +
92 + 10 Sep 2010; Samuli Suominen <ssuominen@g.o> dnotify-0.18.0.ebuild,
93 + +files/dnotify-0.18.0-glibc-212.patch:
94 + Fix building with recent glibc wrt #336649 by Jochen Schlick.
95
96 10 Jan 2008; Mike Frysinger <vapier@g.o> dnotify-0.18.0.ebuild:
97 Update HOMEPAGE #205167 and touchup ebuild.