blob: 4ada1d2f9bae6042eb190dcc5c48b10834f6d7bd (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/kdenlive/kdenlive-0.2.4.ebuild,v 1.3 2004/03/20 01:51:14 weeve Exp $
DESCRIPTION="Kdenlive! (pronounced Kay-den-live) is a Non Linear Video Editing Suite for KDE."
HOMEPAGE="http://www.uchian.pwp.blueyonder.co.uk/kdenlive.html"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
IUSE="debug"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc ~sparc"
S="${WORKDIR}/${P}"
DEPEND="virtual/x11
>=x11-libs/qt-3
>=media-video/piave-0.2.4
>=kde-base/kdesdk-3.2"
src_compile() {
myconf="--with-gnu-ld --prefix=${KDEDIR}"
use debug && myconf="${myconf} --enable-debug=yes"
econf ${myconf} || die "configure failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog README TODO
}
|