blob: acde36c6180a411459e23ffc72e988b5d26bc4b7 (
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
56
57
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/acerhk/acerhk-0.5.18.ebuild,v 1.3 2005/01/01 14:44:47 eradicator Exp $
inherit kernel-mod eutils
DESCRIPTION="Hotkey driver for some Acer and Acer-like laptops"
HOMEPAGE="http://www.informatik.hu-berlin.de/~tauber/acerhk/"
SRC_URI="http://www.informatik.hu-berlin.de/~tauber/acerhk/archives/acerhk-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/kernel"
RDEPEND=""
src_compile() {
unset ARCH
emake || die
}
src_install() {
kernel-mod_getversion
if [ ${KV_MINOR} -gt 4 ]
then
KV_OBJ="ko"
else
KV_OBJ="o"
fi
insinto /lib/modules/${KV}/extra
doins acerhk.${KV_OBJ}
dodoc README COPYING NEWS doc/*
}
pkg_postinst() {
kernel-mod_getversion
if [ ${KV_MINOR} -gt 4 ]
then
KV_OBJ="ko"
else
KV_OBJ="o"
fi
echo
einfo "Checking kernel module dependancies"
test -r "${ROOT}/usr/src/linux/System.map" && \
depmod -ae -F "${ROOT}/usr/src/linux/System.map" -b "${ROOT}" -r ${KV}
einfo "You can load the module:"
einfo "% modprobe acerhk poll=1"
echo
einfo "If you need more info about this driver you can read the README file"
einfo "% zmore /usr/share/doc/${PN}-${PV}/README.gz"
}
|