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/xbindkeys: ChangeLog xbindkeys-1.8.3.ebuild
Date: Mon, 08 Feb 2010 18:11:30
Message-Id: E1NeY52-0000i3-KZ@stork.gentoo.org
1 jer 10/02/08 18:11:28
2
3 Modified: ChangeLog
4 Added: xbindkeys-1.8.3.ebuild
5 Log:
6 Version bump thanks to Tim Harder (bug #246035).
7 (Portage version: 2.2_rc62/cvs/Linux i686)
8
9 Revision Changes Path
10 1.51 x11-misc/xbindkeys/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xbindkeys/ChangeLog?rev=1.51&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xbindkeys/ChangeLog?rev=1.51&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xbindkeys/ChangeLog?r1=1.50&r2=1.51
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xbindkeys/ChangeLog,v
19 retrieving revision 1.50
20 retrieving revision 1.51
21 diff -u -r1.50 -r1.51
22 --- ChangeLog 6 Aug 2007 19:36:39 -0000 1.50
23 +++ ChangeLog 8 Feb 2010 18:11:28 -0000 1.51
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-misc/xbindkeys
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xbindkeys/ChangeLog,v 1.50 2007/08/06 19:36:39 uberlord Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xbindkeys/ChangeLog,v 1.51 2010/02/08 18:11:28 jer Exp $
30 +
31 +*xbindkeys-1.8.3 (08 Feb 2010)
32 +
33 + 08 Feb 2010; Jeroen Roovers <jer@g.o> +xbindkeys-1.8.3.ebuild:
34 + Version bump thanks to Tim Harder (bug #246035).
35
36 06 Aug 2007; Roy Marples <uberlord@g.o> xbindkeys-1.8.0.ebuild:
37 Keyworded ~x86-fbsd, #141142 thanks to Robert Annessi
38
39
40
41 1.1 x11-misc/xbindkeys/xbindkeys-1.8.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xbindkeys/xbindkeys-1.8.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xbindkeys/xbindkeys-1.8.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xbindkeys-1.8.3.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xbindkeys/xbindkeys-1.8.3.ebuild,v 1.1 2010/02/08 18:11:28 jer Exp $
51
52 inherit eutils
53
54 IUSE="guile tk"
55
56 DESCRIPTION="Tool for launching commands on keystrokes"
57 SRC_URI="http://www.nongnu.org/${PN}/${P}.tar.gz"
58 HOMEPAGE="http://www.nongnu.org/xbindkeys/xbindkeys.html"
59
60 LICENSE="GPL-2"
61 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
62 SLOT="0"
63
64 RDEPEND="x11-libs/libX11
65 guile? ( dev-scheme/guile )
66 tk? ( dev-lang/tk )"
67 DEPEND="${RDEPEND}
68 x11-proto/xproto"
69
70 pkg_setup() {
71 if use guile && has_version ">=dev-scheme/guile-1.8" \
72 && ! built_with_use ">=dev-scheme/guile-1.8" deprecated
73 then
74 eerror "In order to compile xbindkeys with guile-1.8 or higher, you need"
75 eerror "to recompile dev-scheme/guile with the \"deprecated\" USE flag."
76 die "Please re-emerge dev-scheme/guile with USE=\"deprecated\"."
77 fi
78 }
79
80 src_compile() {
81 local myconf
82 use tk || myconf="${myconf} --disable-tk"
83 use guile || myconf="${myconf} --disable-guile"
84
85 econf ${myconf} || die "configure failed"
86 emake DESTDIR=${D} || die "make failed"
87 }
88
89 src_install() {
90 make DESTDIR=${D} BINDIR=/usr/bin install || die "make install failed"
91 }