blob: 556ce2ed01d267498570507ee1697d5c8214a10a (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
# Must be before x-modular eclass is inherited
SNAPSHOT="yes"
XDPVER=4
EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/driver/${PN}"
inherit xorg-2
DESCRIPTION="DMC input driver"
SRC_URI=""
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
RDEPEND="x11-base/xorg-server"
DEPEND="${RDEPEND}
|| ( >=sys-kernel/linux-headers-2.6 >=sys-kernel/mips-headers-2.6 )
>=x11-proto/inputproto-1.4
x11-proto/randrproto
x11-proto/xproto"
src_unpack() {
x-modular_specs_check
x-modular_server_supports_drivers_check
x-modular_dri_check
git_src_unpack
cd ${S}
x-modular_patch_source
x-modular_reconf_source
}
|