blob: 96d9ff41a76ec37e6adbfb3ef4a4b203945b910e (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/usb-pwcx/usb-pwcx-8.4.ebuild,v 1.1.1.1 2005/11/30 09:57:47 chriswhite Exp $
inherit linux-info
DESCRIPTION="Optional binary only drivers for phillips (and many other) webcams giving higher resolutions and framerates"
HOMEPAGE="http://www.smcc.demon.nl/webcam/"
SRC_URI="http://www.smcc.demon.nl/webcam/pwcx-${PV}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="~x86 -*"
IUSE=""
DEPEND=""
S=${WORKDIR}/pwcx-${PV}
src_install() {
if kernel_is 2 6; then
einfo "Kernel ${KV_FULL} detected!"
insinto "/lib/modules/${KV_FULL}/video/"
doins 2.6.0/gcc-3.2/pwcx.ko
echo "post-install pwc /sbin/modprobe --force pwcx >& /dev/null 2>&1 || :" > usb-pwcx
elif kernel_is 2 4; then
einfo "Kernel ${KV_FULL} detected!"
insinto "/lib/modules/usb"
doins 2.4.23/gcc-3.2/pwcx.o
echo "post-install pwc /sbin/insmod --force /lib/modules/usb/pwcx.o >& /dev/null 2>&1 || :" > usb-pwcx
else
eerror "No supported kernel version (2.4/2.6) detected."
fi
insinto /etc/modules.d
doins usb-pwcx
dodoc README
}
pkg_postinst() {
if [ "${ROOT}" = "/" ]
then
# Update module dependancy
[ -x /usr/sbin/update-modules ] && /usr/sbin/update-modules
depmod -a
fi
}
|