forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kmplayer-0.11.5.ebuild
67 lines (54 loc) · 1.53 KB
/
kmplayer-0.11.5.ebuild
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
58
59
60
61
62
63
64
65
66
67
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit kde4-base
DESCRIPTION="Video player plugin for Konqueror and basic MPlayer frontend"
HOMEPAGE="https://kmplayer.kde.org"
COMMIT_ID="a28ff105e76a227b799c2bbf6e732791de5fb84e"
SRC_URI="https://quickgit.kde.org/?p=kmplayer.git&a=snapshot&h=${COMMIT_ID}&fmt=tbz2 -> ${P}.tar.bz2"
LICENSE="GPL-2 FDL-1.2 LGPL-2.1"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="cairo debug expat npp"
DEPEND="
media-libs/phonon[qt4]
x11-libs/libX11
cairo? (
x11-libs/cairo
x11-libs/pango
)
expat? ( >=dev-libs/expat-2.0.1 )
npp? (
$(add_kdeapps_dep kreadconfig)
dev-libs/dbus-glib
www-plugins/adobe-flash
>=x11-libs/gtk+-2.10.14:2
)
"
RDEPEND="${DEPEND}
media-video/mplayer
"
PATCHES=( "${FILESDIR}/${PN}-0.11.3d-cmake34.patch" )
S="${WORKDIR}/${PN}"
src_prepare() {
use npp && epatch "${FILESDIR}/${PN}-flash.patch"
sed -e '/add_subdirectory(icons)/d' \
-i CMakeLists.txt || die
kde4-base_src_prepare
}
src_configure() {
local mycmakeargs=(
-DKMPLAYER_BUILT_WITH_CAIRO=$(usex cairo)
-DKMPLAYER_BUILT_WITH_EXPAT=$(usex expat)
-DKMPLAYER_BUILT_WITH_NPP=$(usex npp)
)
kde4-base_src_configure
}
src_install() {
kde4-base_src_install
if use npp; then
kwriteconfig --file "${ED}/usr/share/config/kmplayerrc" --group "application/x-shockwave-flash" --key player npp
kwriteconfig --file "${ED}/usr/share/config/kmplayerrc" --group "application/x-shockwave-flash" --key plugin /usr/lib/nsbrowser/plugins/libflashplayer.so
fi
}