blob: ccf1fc4f265a7ea493be60d5be47bfab732b026c (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/libdc1394-2.1.3.ebuild,v 1.1 2011/04/30 17:22:48 jlec Exp $
EAPI="4"
inherit autotools eutils
DESCRIPTION="Library to interface with IEEE 1394 cameras following the IIDC specification"
HOMEPAGE="http://sourceforge.net/projects/libdc1394/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="X doc"
RDEPEND="
>=sys-libs/libraw1394-1.2.0
X? ( x11-libs/libSM x11-libs/libXv )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
src_prepare() {
epatch "${FILESDIR}"/${PN}-videodev.h.patch
eautoreconf
}
src_compile() {
econf \
--program-suffix=2 \
$(use_with X x) \
$(use_enable doc doxygen-html)
}
src_compile() {
default
if use doc ; then
emake doc
fi
}
src_install() {
default
use doc && dohtml doc/html/*
}
|