blob: cd9e8c34852e74b110d7e1ddf422d5a69b0d70cd (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/kdenlive/kdenlive-0.3.0.ebuild,v 1.2 2006/08/02 13:25:37 zypher Exp $
inherit eutils kde
DESCRIPTION="Kdenlive! (pronounced Kay-den-live) is a Non Linear Video Editing Suite for KDE."
HOMEPAGE="http://kdenlive.sourceforge.net/"
SRC_URI="mirror://sourceforge/kdenlive/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="theora quicktime"
RDEPEND=">=media-libs/libsdl-1.2.8-r1
>=media-libs/sdl-image-1.2.3-r1
>=media-libs/libsamplerate-0.1.1-r1
>=media-libs/libogg-1.1.2
>=media-libs/libvorbis-1.1.0
>=media-sound/lame-3.96.1
>=media-libs/libdv-0.104-r1
theora? ( >=media-libs/libtheora-1.0_alpha6 )
quicktime? ( >=media-libs/libquicktime-0.9.7-r1 )
>=media-video/ffmpeg-0.4.9_p20060302
>=media-libs/mlt-0.2.2
>=media-libs/mlt++-20060601"
DEPEND="${RDEPEND}
|| ( (
x11-base/xorg-server
x11-libs/libXt
x11-proto/xextproto
) virtual/x11 )
dev-util/pkgconfig
>=sys-devel/autoconf-2.58
>=sys-devel/automake-1.8.3"
need-kde 3
S="${WORKDIR}/${P/.0/}"
src_unpack() {
unpack ${A}
cd ${S}
sh bootstrap
}
|