diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2002-07-12 08:04:53 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2002-07-12 08:04:53 +0000 |
commit | 2214cf8b2027f0ec1d2df1ac9af1136a37e6d6d5 (patch) | |
tree | 78e8f138bf58f7047651997cd5f7b6eff9548fe9 /sys-libs/libavc1394 | |
parent | updated to -r3 (diff) | |
download | historical-2214cf8b2027f0ec1d2df1ac9af1136a37e6d6d5.tar.gz historical-2214cf8b2027f0ec1d2df1ac9af1136a37e6d6d5.tar.bz2 historical-2214cf8b2027f0ec1d2df1ac9af1136a37e6d6d5.zip |
Added new packages:
-libraw1394 - raw FireWire port access library
-libavc1394 - A/V devices over FireWire ports
Diffstat (limited to 'sys-libs/libavc1394')
-rw-r--r-- | sys-libs/libavc1394/ChangeLog | 13 | ||||
-rw-r--r-- | sys-libs/libavc1394/files/digest-libavc1394-0.3.1 | 1 | ||||
-rw-r--r-- | sys-libs/libavc1394/libavc1394-0.3.1.ebuild | 28 |
3 files changed, 42 insertions, 0 deletions
diff --git a/sys-libs/libavc1394/ChangeLog b/sys-libs/libavc1394/ChangeLog new file mode 100644 index 000000000000..402e2d4f9e77 --- /dev/null +++ b/sys-libs/libavc1394/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for sys-libs/libavc1394 +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 + +*libavc1394-0.3.1 (12 Jul 2002) + + 12 Jul 2002; Doug Goldstein <cardoe@gentoo.org> libavc1394-0.3.1.ebuild + ChangeLog files/digest-libavc1394-0.3.1 : + + New package + libavc1394 is a programming interface for the 1394 Trade Association AV/C (Audio/Video Control) + Digital Interface Command Set. It is intended for use with GNU/Linux (quote from author's site). + Thanks to Hanno Beock hanno@gmx.de in bug #4167 for the ebuild. + Cleaned up the ebuild prior to adding to the tree. diff --git a/sys-libs/libavc1394/files/digest-libavc1394-0.3.1 b/sys-libs/libavc1394/files/digest-libavc1394-0.3.1 new file mode 100644 index 000000000000..d94746fd3b96 --- /dev/null +++ b/sys-libs/libavc1394/files/digest-libavc1394-0.3.1 @@ -0,0 +1 @@ +MD5 7e761f05b310392d6e07a7186b973cb5 libavc1394-0.3.1.tar.gz 137187 diff --git a/sys-libs/libavc1394/libavc1394-0.3.1.ebuild b/sys-libs/libavc1394/libavc1394-0.3.1.ebuild new file mode 100644 index 000000000000..5286e93068a0 --- /dev/null +++ b/sys-libs/libavc1394/libavc1394-0.3.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.8 2002/05/30 01:54:49 sandymac Exp + +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="http://telia.dl.sourceforge.net/sourceforge/libavc1394/${P}.tar.gz" +S=${WORKDIR}/${P} + +DEPEND=">=libraw1394-0.8" +RDEPEND="${DEPEND}" +SLOT="0" +KEYWORDS="x86" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + + emake || die +} + +src_install () { + make DESTDIR=${D} install || die +} |