Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/grabc: grabc-1.1-r1.ebuild ChangeLog
Date: Mon, 08 Feb 2010 11:25:36
Message-Id: E1NeRkE-0001gy-9O@stork.gentoo.org
1 jer 10/02/08 11:25:34
2
3 Modified: ChangeLog
4 Added: grabc-1.1-r1.ebuild
5 Log:
6 Respect CC, LDFLAGS, CFLAGS (bug #241544). Use pkg-config.
7 (Portage version: 2.2_rc62/cvs/Linux i686)
8
9 Revision Changes Path
10 1.12 x11-misc/grabc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/grabc/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/grabc/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/grabc/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/grabc/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 21 Feb 2007 23:39:05 -0000 1.11
23 +++ ChangeLog 8 Feb 2010 11:25:33 -0000 1.12
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-misc/grabc
26 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/grabc/ChangeLog,v 1.11 2007/02/21 23:39:05 jokey Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/grabc/ChangeLog,v 1.12 2010/02/08 11:25:33 jer Exp $
30 +
31 +*grabc-1.1-r1 (08 Feb 2010)
32 +
33 + 08 Feb 2010; Jeroen Roovers <jer@g.o> +grabc-1.1-r1.ebuild,
34 + +files/grabc-1.1-makefile.patch:
35 + Respect CC, LDFLAGS, CFLAGS (bug #241544). Use pkg-config.
36
37 21 Feb 2007; Markus Ullmann <jokey@g.o> ChangeLog:
38 Redigest for Manifest2
39
40
41
42 1.1 x11-misc/grabc/grabc-1.1-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/grabc/grabc-1.1-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/grabc/grabc-1.1-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: grabc-1.1-r1.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-misc/grabc/grabc-1.1-r1.ebuild,v 1.1 2010/02/08 11:25:33 jer Exp $
52
53 inherit eutils toolchain-funcs
54
55 S="${WORKDIR}/${PN}${PV}"
56 DESCRIPTION="A simple but useful program to determine the color string in hex (or RGB components) by clicking on a pixel on the screen"
57 HOMEPAGE="http://www.muquit.com/muquit/software/grabc/grabc.html"
58 SRC_URI="http://www.muquit.com/muquit/software/${PN}/${PN}${PV}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
63 IUSE=""
64
65 RDEPEND="x11-libs/libX11"
66 DEPEND="${RDEPEND}
67 x11-proto/xproto"
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72
73 epatch "${FILESDIR}"/${P}-makefile.patch
74 }
75
76 src_compile() {
77 tc-export CC
78 emake || die "emake failed"
79 }
80
81 src_install() {
82 dobin grabc || die "dobin failed"
83 dodoc README || die "dodoc failed"
84 }