blob: 7134de96a7f647a3ade1fa3aa40e5f1c5b7c20d4 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/kdenlive/kdenlive-0.7.7.ebuild,v 1.1 2010/02/21 22:32:11 ssuominen Exp $
EAPI=2
KDE_LINGUAS="ca cs da de el es fi fr gl he hr hu it nl pl pt pt_BR ru sl tr uk
zh"
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"
IUSE="debug semantic-desktop"
DEPEND=">=media-libs/mlt-0.4.6[ffmpeg,sdl,xml,melt,qt4,kde]
media-video/ffmpeg[X,sdl]
>=kde-base/kdelibs-${KDE_MINIMAL}[semantic-desktop?]
!${CATEGORY}/${PN}:0"
DOCS="AUTHORS README"
src_prepare() {
sed -i \
-e 's:find_package(Nepomuk):macro_optional_find_package(Nepomuk):' \
src/CMakeLists.txt || die
kde4-base_src_prepare
}
src_configure() {
mycmakeargs+=(
$(cmake-utils_use_with semantic-desktop Nepomuk)
)
kde4-base_src_configure
}
|