diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-11-15 22:59:31 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-11-15 22:59:31 +0000 |
commit | 7fa6443d404a36d48b536eba9d30a1c5bf299774 (patch) | |
tree | 7cca7d8c0403343f1a47dea0acf075b83b9b9214 /media-video | |
parent | Glibc-2.2 updates (diff) | |
download | gentoo-2-7fa6443d404a36d48b536eba9d30a1c5bf299774.tar.gz gentoo-2-7fa6443d404a36d48b536eba9d30a1c5bf299774.tar.bz2 gentoo-2-7fa6443d404a36d48b536eba9d30a1c5bf299774.zip |
Updates
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/bcast-2000/bcast-2000b-r1.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/media-video/bcast-2000/bcast-2000b-r1.ebuild b/media-video/bcast-2000/bcast-2000b-r1.ebuild new file mode 100644 index 000000000000..33dbcecfb919 --- /dev/null +++ b/media-video/bcast-2000/bcast-2000b-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-video/bcast-2000/bcast-2000b-r1.ebuild,v 1.1 2000/11/15 22:59:31 achim Exp $ + +A=${P}-src.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Realtime audio and video editor" +SRC_URI="http://heroine.linuxave.net/${A}" +HOMEPAGE="http://heroine.linuxave.net/bcast2000.html" + +DEPEND=">=sys-libs/glibc-2.1.3 + >=sys-devel/gcc-2.95.2 + >=media-sound/esound-0.2.19 + >=media-libs/jpeg-6b + >=media-libs/tiff-3.5.5 + >=media-libs/libpng-1.0.7 + >=x11-base/xfree-4.0.1" + +src_unpack() { + unpack ${A} + cd ${S}/esound + cp esd.h esd.h.orig + sed -e "s:<audiofile\.h>:\"\.\./audiofile/audiofile\.h\":" esd.h.orig > esd.h + cd ${S}/quicktime/libdv + cp dvprivate.h dvprivate.h.orig + sed -e "s:<libraw1394/raw1394\.h>:\"\.\./\.\./libraw1394/raw1394\.h\":" dvprivate.h.orig > dvprivate.h +} +src_compile() { + + cd ${S} + try ./configure + try make + +} + +src_install () { + + cd ${S} + into /usr + dobin bcast/bcast2000 + dolib.so bcbase/libbcbase.so + insopts -m 755 + insinto /usr/X11R6/lib/bcast2000a/plugins + doins plugins/*.plugin + dodoc COPYING + docinto html + dodoc docs/*.html docs/*.png docs/*.jpg + + +} + + + |