blob: 29c376e433d2f24fb0873980ed806d45909c1d17 (
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
58
59
60
61
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/thinkpad/thinkpad-5.8.ebuild,v 1.2 2005/12/24 11:24:48 betelgeuse Exp $
inherit eutils linux-mod
MY_P=${PN}_${PV}
DESCRIPTION="Thinkpad system control kernel modules"
HOMEPAGE="http://tpctl.sourceforge.net"
SRC_URI="mirror://sourceforge/tpctl/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
BUILD_PARAMS="KSRC=${KV_DIR}"
MODULESD_THINKPAD_DOCS="README"
pkg_setup() {
linux-info_pkg_setup
case ${KV_MINOR} in
4)
BUILD_TARGETS="all"
;;
6)
BUILD_TARGETS="default"
;;
*)
die "Unsupported kernel version."
;;
esac
MODULE_NAMES="thinkpad(thinkpad:${S}/${KV_MAJOR}.${KV_MINOR}/drivers)
smapi(thinkpad:${S}/${KV_MAJOR}.${KV_MINOR}/drivers)
superio(thinkpad:${S}/${KV_MAJOR}.${KV_MINOR}/drivers)
rtcmosram(thinkpad:${S}/${KV_MAJOR}.${KV_MINOR}/drivers)
thinkpadpm(thinkpad:${S}/${KV_MAJOR}.${KV_MINOR}/drivers)"
linux-mod_pkg_setup
}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-cpu_ptr.patch
}
src_install() {
linux-mod_src_install
dodoc AUTHORS ChangeLog SUPPORTED-MODELS TECHNOTES
doman man/*
}
|