summaryrefslogtreecommitdiff
blob: 9c3c5bf0256a75bd78016360c1f86742ffde857a (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/libdc1394-2.0.0_pre4.ebuild,v 1.10 2006/02/07 20:42:51 dsd Exp $

inherit eutils

MY_P=${P/_/-}
S=${WORKDIR}/${MY_P}

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}/${MY_P}.tar.gz
	mirror://gentoo/${P}-svn-fixes.patch.bz2"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha ~amd64 ~arm ~hppa ia64 ~ppc ppc64 ~sparc ~x86"
IUSE="X"

DEPEND=">=sys-libs/libraw1394-0.9.0
	sys-devel/libtool
	X? ( || ( ( x11-libs/libSM x11-libs/libXv )
			  virtual/x11 ) )"

src_unpack() {
	unpack ${A} ; cd ${S}
	epatch ${DISTDIR}/${P}-svn-fixes.patch.bz2

	if ! use X; then
		epatch ${FILESDIR}/nox11-2.patch
	fi

}

src_compile() {
	econf || die
	emake || die
}

src_install() {
	make DESTDIR=${D} install || die
	dodoc NEWS README AUTHORS ChangeLog
}