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/unclutter: ChangeLog unclutter-8-r2.ebuild
Date: Thu, 09 Sep 2010 09:33:50
Message-Id: 20100909093343.E3C2B20051@flycatcher.gentoo.org
1 xarthisius 10/09/09 09:33:43
2
3 Modified: ChangeLog
4 Added: unclutter-8-r2.ebuild
5 Log:
6 Respect LDFLAGS wrt bug 336546. Thanks to Diego for the report. Fix implicit function declarations.
7
8 (Portage version: 2.2_rc77/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.25 x11-misc/unclutter/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/unclutter/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/unclutter/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/unclutter/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/unclutter/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 22 Jul 2007 03:41:55 -0000 1.24
24 +++ ChangeLog 9 Sep 2010 09:33:43 -0000 1.25
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-misc/unclutter
27 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/unclutter/ChangeLog,v 1.24 2007/07/22 03:41:55 dberkholz Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/unclutter/ChangeLog,v 1.25 2010/09/09 09:33:43 xarthisius Exp $
31 +
32 +*unclutter-8-r2 (09 Sep 2010)
33 +
34 + 09 Sep 2010; Kacper Kowalik <xarthisius@g.o>
35 + +unclutter-8-r2.ebuild:
36 + Respect LDFLAGS wrt bug 336546. Thanks to Diego for the report. Fix
37 + implicit function declarations.
38
39 22 Jul 2007; Donnie Berkholz <dberkholz@g.o>;
40 unclutter-8-r1.ebuild:
41
42
43
44 1.1 x11-misc/unclutter/unclutter-8-r2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/unclutter/unclutter-8-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/unclutter/unclutter-8-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: unclutter-8-r2.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/x11-misc/unclutter/unclutter-8-r2.ebuild,v 1.1 2010/09/09 09:33:43 xarthisius Exp $
54
55 EAPI=2
56
57 inherit toolchain-funcs
58
59 DESCRIPTION="Hides mouse pointer while not in use."
60 HOMEPAGE="http://www.ibiblio.org/pub/X11/contrib/utilities/unclutter-8.README"
61 SRC_URI="ftp://ftp.x.org/contrib/utilities/${P}.tar.Z"
62
63 SLOT="0"
64 LICENSE="public-domain"
65 KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
66 IUSE=""
67
68 RDEPEND="x11-libs/libX11"
69 DEPEND="${RDEPEND}
70 x11-proto/xproto"
71
72 S=${WORKDIR}/${PN}
73
74 src_prepare() {
75 sed -i -e "/stdio/ a #include <stdlib.h>" unclutter.c || die #implictits
76 }
77
78 src_compile() {
79 emake CDEBUGFLAGS="${CFLAGS}" CC="$(tc-getCC)" \
80 LDOPTIONS="${LDFLAGS}" || die
81 }
82
83 src_install () {
84 dobin unclutter || die
85 newman unclutter.man unclutter.1x || die
86 dodoc README || die
87 }