blob: 68c87ba72597da1ca5b35412667db7b34e7d25cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header : $
DESCRIPTION="libavc1394 is a programming interface for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set."
HOMEPAGE="http://sourceforge.net/projects/libavc1394/"
LICENSE="LGPL"
SRC_URI="mirror://sourceforge/libavc1394/${P}.tar.gz"
S=${WORKDIR}/${P}
DEPEND=">=libraw1394-0.8"
SLOT="0"
KEYWORDS="~x86 ~ppc"
src_compile() {
econf || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
}
|