blob: d3b627a544b7289f9a7c27adccafae340a3ae59e (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/qc-usb/qc-usb-0.6.6.ebuild,v 1.7 2008/07/28 23:31:06 eva Exp $
inherit linux-mod eutils multilib
DESCRIPTION="Logitech USB Quickcam Express Linux Driver Modules"
HOMEPAGE="http://qce-ga.sourceforge.net/"
SRC_URI="mirror://sourceforge/qce-ga/${P}.tar.gz"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
CONFIG_CHECK="USB VIDEO_DEV VIDEO_V4L1_COMPAT"
MODULE_NAMES="quickcam(usb:)"
BUILD_TARGETS="all"
RDEPEND="!media-video/qc-usb-messenger"
DEPEND="${RDEPEND}"
pkg_setup() {
ABI=${KERNEL_ABI}
linux-mod_pkg_setup
BUILD_PARAMS="LINUX_DIR=${KV_DIR} OUTPUT_DIR=${KV_OUT_DIR}"
}
src_unpack() {
unpack ${A}
cd "${S}"
convert_to_m "${S}"/Makefile
epatch "${FILESDIR}/${P}-koutput.patch"
# Do not strip symbols
sed -i -e "s/-s qcset.c/qcset.c/" Makefile
# Fix compilation with 2.6.24
epatch "${FILESDIR}/${P}-kcompat-2.6.24.patch"
}
src_install() {
linux-mod_src_install
dobin qcset
dodoc README* APPLICATIONS CREDITS TODO FAQ
insinto /usr/share/doc/${PF}
doins quickcam.sh debug.sh freeshm.sh
}
|