blob: b8f740c9b85216c22a6e451853d58b64794797d3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/libdc1394/libdc1394-1.0.0.ebuild,v 1.9 2005/05/17 22:20:55 gustavoz Exp $
DESCRIPTION="libdc1394 is a library that is intended to provide a high level programming interface for application developers who wish to control IEEE 1394 based cameras that conform to the 1394-based Digital Camera Specification (found at http://www.1394ta.org/)"
HOMEPAGE="http://sourceforge.net/projects/libdc1394/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86 ppc sparc amd64 ~alpha ppc64 ~ia64"
IUSE=""
DEPEND=">=sys-libs/libraw1394-0.9.0
sys-devel/libtool
X? ( virtual/x11 )"
src_unpack() {
unpack ${A} || die
if ! use X; then
epatch ${FILESDIR}/nox11.patch
fi
}
src_compile() {
econf || die
emake || die
}
src_install() {
einstall || die
dodoc NEWS README AUTHORS
}
|