blob: 927895c27e922c8fc7ec1a950e5a20eb7923c658 (
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
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/cinelerra/cinelerra-1.0.0.ebuild,v 1.14 2005/03/21 07:29:04 mr_bones_ Exp $
inherit gcc
export WANT_GCC_3="yes"
DESCRIPTION="Cinelerra - Professional Video Editor"
HOMEPAGE="http://heroinewarrior.com/cinelerra.php3"
SRC_URI="mirror://sourceforge/heroines/hvirtual-${PV}-src.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/x11
virtual/libc
=sys-devel/gcc-3*"
S=${WORKDIR}/hvirtual-${PV}
src_compile() {
echo ${CFLAGS} > i686/c_flags
make || die "make failed"
}
src_install() {
cd ${S}/${PN}/i686
dobin ${PN}
cd ${S}/plugins
insinto /usr/lib/${PN}
doins i686/*.plugin
doins titler/fonts
cd ${S}/libmpeg3/i686
dobin mpeg3dump mpeg3cat mpeg3toc
cd ${S}/mix/i686
dobin mix2000
cd ${S}/xmovie/i686
dobin xmovie
cd ${S}/mplexhi/i686
dobin mplexhi
cd ${S}/mplexlo/i686
dobin mplexlo
cd ${S}
dodoc CVS COPYING
dohtml -a png,html,texi,sdw -r doc/*
}
|