blob: 00efe6301180aa790514b200c78fad28b45fc28e (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/libdc1394-2.2.1.ebuild,v 1.3 2013/11/17 14:58:25 aballier Exp $
EAPI=5
inherit autotools eutils multilib-minimal
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="doc static-libs X"
RDEPEND=">=sys-libs/libraw1394-1.2.0[${MULTILIB_USEDEP}]
virtual/libusb:1[${MULTILIB_USEDEP}]"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )"
src_prepare() {
epatch "${FILESDIR}/${P}-includes.patch"
eautoreconf
}
multilib_src_configure() {
local myconf="$(use_enable doc doxygen-html)"
multilib_is_native_abi || myconf="--disable-doxygen-html --disable-examples"
# X is only useful for examples that are not installed.
ECONF_SOURCE="${S}" econf \
$(use_enable static-libs static) \
--program-suffix=2 \
--without-x \
${myconf}
}
multilib_src_compile() {
default
multilib_is_native_abi && use doc && emake doc
}
multilib_src_install() {
default
multilib_is_native_abi && use doc && dohtml doc/html/*
find "${ED}" -name '*.la' -exec rm -f {} +
}
|