blob: d1f9adc4daf9e36bfd876027b5d0149e2f04bc08 (
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
|
# Copyright 1999-2006 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.2.2.ebuild,v 1.14 2006/06/13 10:31:53 uberlord Exp $
inherit linux-info
DESCRIPTION="Optional closed source drivers for phillips webcams to allow for higher resolutions and framerates "
HOMEPAGE="http://www.smcc.demon.nl/webcam/"
SRC_URI="http://www.smcc.demon.nl/webcam/usb-pwcx-8.2.2.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="x86 -*"
IUSE=""
DEPEND=""
pkg_setup() {
if ! kernel_is 2 4; then
eerror "You need a newer version (or usb-pwc-re) for 2.6 kernels!"
die "This works only for 2.4 kernels"
fi
}
src_install() {
insinto "/lib/modules/usb"
doins pwcx-i386.o
insinto /etc/modules.d
doins "${FILESDIR}"/usb-pwcx
dodoc install.html readme.html webcam.css
}
pkg_postinst() {
if [ "${ROOT}" = "/" ]
then
# Update module dependancy
/sbin/modules-update
fi
}
|