blob: e53b84b29d4929a789f88c3674203d3221ca42a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
inherit toolchain-funcs
DESCRIPTION="Make pointer-driven interfaces easier and faster for users to operate"
HOMEPAGE="http://www.semicomplete.com/projects/keynav/"
SRC_URI="http://semicomplete.googlecode.com/files/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="x11-libs/libX11
x11-libs/libXinerama
x11-libs/libXext
x11-libs/libXtst
x11-misc/xdotool"
DEPEND="x11-proto/xproto
${RDEPEND}"
src_compile() {
tc-export CC LD
default
}
src_install() {
dodoc README CHANGELIST || die "Unable to install documentation"
dobin keynav || die "Unable to install keynav binary"
insinto /etc
doins keynavrc || die "Unable to install keynavrc"
}
|