blob: 242f4895747629cd91da80627f426498f1964db0 (
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
62
63
64
65
66
67
68
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/usbirboy/usbirboy-0.2.1-r1.ebuild,v 1.8 2006/09/12 09:17:11 blubb Exp $
inherit linux-mod eutils
DESCRIPTION="Use home made infrared receiver connected via USB"
HOMEPAGE="http://usbirboy.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ppc64 x86"
IUSE=""
DEPEND=""
RDEPEND=""
S="${WORKDIR}/${P}/usbirboykmod"
pkg_setup() {
linux-mod_pkg_setup
if ! kernel_is 2 6; then
die "This package works only with 2.6 kernel!"
fi
if ! linux_chkconfig_present USB; then
die "You need a kernel with enabled USB support!"
fi
MODULE_NAMES="usbirboy(misc:${S})"
BUILD_PARAMS="INCLUDE=${KV_DIR}"
BUILD_TARGETS="default"
}
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-kernel-2.6.16.diff
epatch ${FILESDIR}/${P}-module_param.diff
epatch ${FILESDIR}/${P}-nice-kernel-msgs.diff
}
src_install() {
linux-mod_src_install
dodoc README
newdoc ../usbirboymcu/README README.mcu
insinto /usr/share/${PN}
doins ../mcubin/usbirboy.s19
# Add configuration for udev
if [ -e ${ROOT}dev/.udev ]; then
dodir /etc/udev/rules.d
echo 'KERNEL=="usbirboy", NAME="%k", SYMLINK="lirc"' \
> "${D}etc/udev/rules.d/55-${PN}.rules"
fi
}
pkg_postinst() {
linux-mod_pkg_postinst
einfo
einfo "Firmware file has been installed to /usr/share/${PN}"
einfo
}
|