blob: 20a55e7b66b16402ee2202752d88527374a935f5 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit x-modular autotools eutils
DESCRIPTION="X.Org driver for Wiimote input devices"
HOMEPAGE="http://people.freedesktop.org/~whot/wiimote/"
SRC_URI="http://people.freedesktop.org/~whot/wiimote/${P}.tar.bz2"
KEYWORDS="~amd64"
LICENSE="MIT"
RDEPEND=">=x11-base/xorg-server-1.0.99"
DEPEND="${RDEPEND}
dev-libs/libwiimote
x11-proto/inputproto"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-libwiimote.patch"
eautoreconf || die "eautoreconf failed"
}
|