blob: 6e3004fa339ab0b04955a47c0cbea45c152a24ee (
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
57
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/kmplayer/kmplayer-0.11.3b.ebuild,v 1.1 2012/02/02 09:45:49 johu Exp $
EAPI=4
KDE_LINGUAS="bg bs ca ca@valencia cs da de el en_GB eo es et fr ga gl hr hu it
ja km ku lt lv mai nb nds nl nn pl pt pt_BR ro ru sk sr sr@latin sv th tr ug uk
zh_CN zh_TW"
KDE_HANDBOOK="optional"
inherit kde4-base
DESCRIPTION="KMPlayer is a Video player plugin for Konqueror and basic MPlayer/Xine/ffmpeg/ffserver/VDR frontend."
HOMEPAGE="http://kmplayer.kde.org/"
SRC_URI="http://kmplayer.kde.org/pkgs/${P}.tar.bz2"
LICENSE="GPL-2 FDL-1.2 LGPL-2.1"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="cairo debug expat handbook npp"
DEPEND="media-libs/phonon
expat? ( >=dev-libs/expat-2.0.1 )
cairo? (
x11-libs/cairo
x11-libs/pango
)
npp? (
dev-libs/dbus-glib
>=x11-libs/gtk+-2.10.14:2
)"
RDEPEND="${DEPEND}
media-video/mplayer"
DOCS="AUTHORS ChangeLog README TODO"
src_prepare() {
sed -i \
-e '/add_subdirectory(icons)/d' \
CMakeLists.txt || die
# upstream comments doc and po folders...
sed -i \
-e 's:^#::g' \
CMakeLists.txt || die
kde4-base_src_prepare
}
src_configure() {
local mycmakeargs+=(
$(cmake-utils_use cairo KMPLAYER_BUILT_WITH_CAIRO)
$(cmake-utils_use expat KMPLAYER_BUILT_WITH_EXPAT)
$(cmake-utils_use npp KMPLAYER_BUILT_WITH_NPP)
)
kde4-base_src_configure
}
|