summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2017-04-27 22:08:42 +1000
committerMichael Palimaka <kensington@gentoo.org>2017-04-27 22:17:02 +1000
commitc680234acfa2707699d594d5460c75088051afaf (patch)
tree1ebad66ce1a184ce1e95eeef1c6a2e09482b922d /media-video/kmplayer/kmplayer-0.12.0a.ebuild
parentmedia-video/kaffeine: remove 2.0.6 (diff)
downloadgentoo-c680234acfa2707699d594d5460c75088051afaf.tar.gz
gentoo-c680234acfa2707699d594d5460c75088051afaf.tar.bz2
gentoo-c680234acfa2707699d594d5460c75088051afaf.zip
media-video/kmplayer: remove 0.12.0a
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'media-video/kmplayer/kmplayer-0.12.0a.ebuild')
-rw-r--r--media-video/kmplayer/kmplayer-0.12.0a.ebuild85
1 files changed, 0 insertions, 85 deletions
diff --git a/media-video/kmplayer/kmplayer-0.12.0a.ebuild b/media-video/kmplayer/kmplayer-0.12.0a.ebuild
deleted file mode 100644
index 66cd6f0b4e7e..000000000000
--- a/media-video/kmplayer/kmplayer-0.12.0a.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_BRANCH="0.12"
-KDE_HANDBOOK="true"
-inherit kde5
-
-DESCRIPTION="Video player plugin for Konqueror and basic MPlayer frontend"
-HOMEPAGE="https://kmplayer.kde.org"
-SRC_URI="mirror://kde/stable/${PN}/${EGIT_BRANCH}/${P}.tar.bz2"
-
-LICENSE="GPL-2 FDL-1.2 LGPL-2.1"
-KEYWORDS="amd64 x86"
-IUSE="cairo npp"
-
-CDEPEND="
- $(add_frameworks_dep kbookmarks)
- $(add_frameworks_dep kcompletion)
- $(add_frameworks_dep kconfig)
- $(add_frameworks_dep kconfigwidgets)
- $(add_frameworks_dep kcoreaddons)
- $(add_frameworks_dep kdelibs4support)
- $(add_frameworks_dep ki18n)
- $(add_frameworks_dep kiconthemes)
- $(add_frameworks_dep kio)
- $(add_frameworks_dep kmediaplayer)
- $(add_frameworks_dep kparts)
- $(add_frameworks_dep ktextwidgets)
- $(add_frameworks_dep kwidgetsaddons)
- $(add_frameworks_dep kxmlgui)
- $(add_qt_dep qtdbus)
- $(add_qt_dep qtgui)
- $(add_qt_dep qtsvg)
- $(add_qt_dep qtwidgets)
- $(add_qt_dep qtx11extras)
- $(add_qt_dep qtxml)
- media-libs/phonon[qt5]
- x11-libs/libX11
- x11-libs/libxcb
- cairo? ( x11-libs/cairo[xcb] )
- npp? (
- dev-libs/dbus-glib
- dev-libs/glib:2
- www-plugins/adobe-flash:*
- >=x11-libs/gtk+-2.10.14:2
- )
-"
-DEPEND="${CDEPEND}
- sys-devel/gettext
-"
-RDEPEND="${CDEPEND}
- media-video/mplayer
- !media-video/kmplayer:4
-"
-
-src_prepare() {
- if use npp; then
- sed -i src/kmplayer_part.desktop \
- -e ":^MimeType: s:=:=application/x-shockwave-flash;:" || die
- fi
-
- kde5_src_prepare
-}
-
-src_configure() {
- # 0.12: expat build broken, check in later releases
- local mycmakeargs=(
- -DKMPLAYER_BUILT_WITH_EXPAT=OFF
- -DKMPLAYER_BUILT_WITH_CAIRO=$(usex cairo)
- -DKMPLAYER_BUILT_WITH_NPP=$(usex npp)
- )
-
- kde5_src_configure
-}
-
-src_install() {
- kde5_src_install
-
- if use npp; then
- kwriteconfig5 --file "${ED}/usr/share/config/kmplayerrc" --group "application/x-shockwave-flash" --key player npp
- kwriteconfig5 --file "${ED}/usr/share/config/kmplayerrc" --group "application/x-shockwave-flash" --key plugin /usr/lib/nsbrowser/plugins/libflashplayer.so
- fi
-}