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/oroborus-keylaunch: metadata.xml ChangeLog oroborus-keylaunch-1.3.9.ebuild
Date: Mon, 31 May 2010 15:52:54
Message-Id: 20100531155248.C00382CF37@corvid.gentoo.org
1 xarthisius 10/05/31 15:52:48
2
3 Added: metadata.xml ChangeLog
4 oroborus-keylaunch-1.3.9.ebuild
5 Log:
6 New ebuild for oroborus-keylaunch, formerly part of x11-wm/oroborus-extras
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 x11-misc/oroborus-keylaunch/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/oroborus-keylaunch/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/oroborus-keylaunch/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>desktop-wm</herd>
21 <longdescription>
22 KeyLaunch is a small utility for binding commands to a hot key. It reads a configuration
23 file in ~/.keylaunchrc. KeyLaunch uses Ctrl, Alt and Shift as modifier keys,
24 the hotkey is up to the user.
25 </longdescription>
26 </pkgmetadata>
27
28
29
30 1.1 x11-misc/oroborus-keylaunch/ChangeLog
31
32 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/oroborus-keylaunch/ChangeLog?rev=1.1&view=markup
33 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/oroborus-keylaunch/ChangeLog?rev=1.1&content-type=text/plain
34
35 Index: ChangeLog
36 ===================================================================
37 # ChangeLog for x11-misc/oroborus-keylaunch
38 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
39 # $Header: /var/cvsroot/gentoo-x86/x11-misc/oroborus-keylaunch/ChangeLog,v 1.1 2010/05/31 15:52:47 xarthisius Exp $
40
41 *oroborus-keylaunch-1.3.9 (31 May 2010)
42
43 31 May 2010; Kacper Kowalik <xarthisius@g.o>
44 +oroborus-keylaunch-1.3.9.ebuild, +metadata.xml:
45 New ebuild for oroborus-keylaunch, formerly part of x11-wm/oroborus-extras
46
47
48
49
50 1.1 x11-misc/oroborus-keylaunch/oroborus-keylaunch-1.3.9.ebuild
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/oroborus-keylaunch/oroborus-keylaunch-1.3.9.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/oroborus-keylaunch/oroborus-keylaunch-1.3.9.ebuild?rev=1.1&content-type=text/plain
54
55 Index: oroborus-keylaunch-1.3.9.ebuild
56 ===================================================================
57 # Copyright 1999-2010 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/x11-misc/oroborus-keylaunch/oroborus-keylaunch-1.3.9.ebuild,v 1.1 2010/05/31 15:52:47 xarthisius Exp $
60
61 EAPI=2
62
63 MY_PN=${PN/oroborus-//}
64
65 DESCRIPTION="utility for binding keys in Oroborus"
66 HOMEPAGE="http://www.oroborus.org"
67 SRC_URI="http://ftp.debian.org/debian/pool/main/k/${MY_PN}/${MY_PN}_${PV}.tar.gz"
68
69 LICENSE="GPL-2"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE=""
73
74 DEPEND="x11-libs/libX11
75 !x11-wm/oroborus-extras"
76 RDEPEND="${DEPEND}"
77
78 S=${WORKDIR}/${MY_PN}-${PV}
79
80 src_prepare() {
81 sed -i -e "s: -g -O2 -Wall::" \
82 -e "/^install:/s/install-docs//" Makefile.in || die
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die
87 dodoc README docs/example_rc debian/changelog || die
88 }