blob: 72b852664358f0545c921ac72f69b8224a8f8d61 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/kdenlive/kdenlive-0.8.ebuild,v 1.2 2011/05/22 18:32:29 dilfridge Exp $
EAPI=4
KDE_LINGUAS="ca cs da de el es et fi fr gl he hr hu it nl pl pt pt_BR ru sl tr
uk zh zh_CN zh_TW"
inherit kde4-base
DESCRIPTION="Kdenlive! (pronounced Kay-den-live) is a Non Linear Video Editing Suite for KDE."
HOMEPAGE="http://www.kdenlive.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-linux"
IUSE="debug semantic-desktop"
RDEPEND="
dev-libs/qjson
>=media-libs/mlt-0.7.2[ffmpeg,sdl,xml,melt,qt4,kde]
virtual/ffmpeg[encode,sdl,X]
$(add_kdebase_dep kdelibs 'semantic-desktop?')
"
DEPEND="${RDEPEND}"
DOCS=( AUTHORS README )
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with semantic-desktop Nepomuk)
)
kde4-base_src_configure
}
|