summaryrefslogtreecommitdiff
path: root/media-video/orion/orion-1.4.0.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-09-30 11:19:18 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-09-30 11:19:18 +0100
commit62f67115b5c46134c34f88f4b1cbdacc19384c0a (patch)
tree0a76b14de203a4c23040e5665e39df8de9867745 /media-video/orion/orion-1.4.0.ebuild
parent265dbe5dbc14c199299496c6db8fce3f76647015 (diff)
gentoo resync : 30.09.2018
Diffstat (limited to 'media-video/orion/orion-1.4.0.ebuild')
-rw-r--r--media-video/orion/orion-1.4.0.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/media-video/orion/orion-1.4.0.ebuild b/media-video/orion/orion-1.4.0.ebuild
deleted file mode 100644
index 804460e26d8f..000000000000
--- a/media-video/orion/orion-1.4.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit qmake-utils eutils
-
-DESCRIPTION="Cross-platform Twitch client"
-HOMEPAGE="https://alamminsalo.github.io/orion/"
-SRC_URI="https://github.com/alamminsalo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+mpv"
-
-DEPEND="dev-qt/qtquickcontrols:5
- dev-qt/qtsvg:5
- dev-qt/qtwebengine:5
- mpv? ( media-video/mpv[libmpv] )
- !mpv? ( dev-qt/qtmultimedia:5 )"
-RDEPEND="${DEPEND}
- !mpv? ( media-plugins/gst-plugins-hls )"
-
-src_prepare() {
- sed -i \
- -e 's:^Icon=/usr/local/share/icons/orion.svg$:Icon=/usr/share/icons/hicolor/scalable/apps/orion.svg:' \
- -e 's:^Categories=Games$:Categories=Game;:' \
- distfiles/*.desktop
- eapply_user
-}
-
-src_configure() {
- # TODO: also supports qtav, not yet in portage
- local PLAYER
- if use mpv; then
- PLAYER=mpv
- else
- PLAYER=multimedia
- fi
- eqmake5 ${PN}.pro CONFIG+=${PLAYER}
-}
-
-src_install() {
- dobin ${PN}
- domenu distfiles/*.desktop
-
- insinto /usr/share/icons/hicolor/scalable/apps
- doins distfiles/${PN}.svg
-}