blob: a0764829745935c29e21830f39f2b44d6634c684 (
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
37
38
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-tslib/xf86-input-tslib-0.0.6-r2.ebuild,v 1.10 2011/03/27 17:09:14 ssuominen Exp $
EAPI=2
# Based on xf86-input-synaptics ebuild
inherit toolchain-funcs eutils linux-info x-modular
PATCHLEVEL=3
DEBSOURCES="${PN}_${PV}-${PATCHLEVEL}.tar.gz"
DESCRIPTION="xorg input driver for use of tslib based touchscreen devices"
HOMEPAGE="http://www.pengutronix.de/software/xf86-input-tslib/index_en.html"
SRC_URI="ftp://cdn.debian.net/debian/pool/main/x/${PN}/${DEBSOURCES}"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 sh sparc x86"
IUSE=""
RDEPEND="x11-base/xorg-server
x11-libs/tslib"
DEPEND="${RDEPEND}
x11-proto/inputproto"
S=${WORKDIR}/${PN}-trunk
# Remove stupid evdev checks.
# Never die simply cuz kernel sources do not exist.
src_install() {
DOCS="COPYING ChangeLog"
x-modular_src_install
}
src_prepare() {
epatch "${FILESDIR}"/fix-overlapped-variable.patch
}
|