blob: 35cbf169de4cca1a52fdcb9116ac43aed4ee1131 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/camstream/camstream-20070315.ebuild,v 1.10 2009/08/21 16:05:07 ssuominen Exp $
inherit eutils libtool autotools
MY_PV=${PV:2}
DESCRIPTION="Collection of tools for webcams and other video devices"
HOMEPAGE="http://www.smcc.demon.nl/camstream/"
SRC_URI="http://www.smcc.demon.nl/camstream/download/camstream-snapshot-${MY_PV}.tar.gz"
LICENSE="GPL-2"
# amd64, please update the patch
KEYWORDS="amd64 -ppc x86"
SLOT="0"
IUSE="doc mmx"
RDEPEND="=x11-libs/qt-3*
media-libs/alsa-lib"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${PN}-${MY_PV}
src_unpack () {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PV}.patch
eautoreconf
}
src_compile () {
local myconf
# Need to fake out Qt or we'll get sandbox problems
REALHOME="$HOME"
mkdir -p "$T"/fakehome/.qt
export HOME="$T/fakehome"
addwrite "${QTDIR}/etc/settings"
if ! use mmx || use amd64; then
myconf="--disable-mmx"
fi
econf ${myconf} || die "configure failed"
emake || die "emake failed"
}
src_install () {
make DESTDIR="${D}" install
}
|