diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-01-07 01:54:04 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-01-07 10:29:00 +0100 |
commit | 03b53498033dd0a0116fe526273eca23c1e74c44 (patch) | |
tree | 158ec6c7a539d3130ec80510e0bf5884609940cd /media-video/kmplayer | |
parent | dev-lang/ruby: add sub-slot dep for sys-libs/gdbm (diff) | |
download | gentoo-03b53498033dd0a0116fe526273eca23c1e74c44.tar.gz gentoo-03b53498033dd0a0116fe526273eca23c1e74c44.tar.bz2 gentoo-03b53498033dd0a0116fe526273eca23c1e74c44.zip |
media-video/kmplayer: Drop old
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'media-video/kmplayer')
-rw-r--r-- | media-video/kmplayer/kmplayer-0.12.0b.ebuild | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/media-video/kmplayer/kmplayer-0.12.0b.ebuild b/media-video/kmplayer/kmplayer-0.12.0b.ebuild deleted file mode 100644 index 91517704d76a..000000000000 --- a/media-video/kmplayer/kmplayer-0.12.0b.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -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 -" - -PATCHES=( "${FILESDIR}/${P}-qt-5.9.patch" ) - -src_prepare() { - kde5_src_prepare - - if use npp; then - sed -i src/kmplayer_part.desktop \ - -e ":^MimeType: s:=:=application/x-shockwave-flash;:" || die - fi -} - -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 -} |