blob: 764fe3ad477be65db8adc4d914f5a5e2b2f1524b (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2008 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.5.ebuild,v 1.1 2008/11/01 21:30:53 solar Exp $
# Based on xf86-input-synaptics ebuild
inherit toolchain-funcs eutils linux-info x-modular
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="http://www.pengutronix.de/software/${PN}/download/${P}.tar.bz2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
LICENSE="GPL-2"
IUSE=""
RDEPEND="x11-libs/tslib"
DEPEND="${RDEPEND}
x11-base/xorg-server
x11-proto/inputproto"
evdev-input_check() {
# Check kernel config for required event interface support (either
# built-in or as a module. Bug #134309.
ebegin "Checking kernel config for event device support"
linux_chkconfig_present INPUT_EVDEV
eend $?
if [[ $? -ne 0 ]] ; then
ewarn "tslib x11 input driver requires event interface support."
ewarn "Please enable the event interface in your kernel config."
ewarn "The option can be found at:"
ewarn
ewarn " Device Drivers"
ewarn " Input device support"
ewarn " -*- Generic input layer"
ewarn " <*> Event interface"
ewarn
ewarn "Then rebuild the kernel or install the module."
epause 5
fi
}
pkg_setup() {
linux-info_pkg_setup
evdev-input_check
}
src_unpack() {
x-modular_unpack_source
}
src_install() {
DOCS="COPYING ChangeLog"
x-modular_src_install
}
|