summaryrefslogtreecommitdiff
path: root/media-video/orion
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-05-22 07:31:18 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-05-22 07:31:18 +0100
commit908778078736bd36f7a60a2d576d415cb8e000fa (patch)
treec6a4796c48b608c14dc7e9674cdbd38f905e3c15 /media-video/orion
parent185fa19bbf68a4d4dca534d2b46729207a177f16 (diff)
gentoo resync : 22.05.2021
Diffstat (limited to 'media-video/orion')
-rw-r--r--media-video/orion/Manifest3
-rw-r--r--media-video/orion/metadata.xml16
-rw-r--r--media-video/orion/orion-1.6.7.ebuild47
3 files changed, 0 insertions, 66 deletions
diff --git a/media-video/orion/Manifest b/media-video/orion/Manifest
deleted file mode 100644
index 4abeb28522ed..000000000000
--- a/media-video/orion/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST orion-1.6.7.tar.gz 644899 BLAKE2B 7aa188bc5eaf1f1781735416152a9324a2945f10b2c1ccd55fa5a2b557c31e4bdad55d282c4efc0552dbf998db7193bc19ec0679034ec53cbd97f688b572f74c SHA512 dc4c4d364423cae52f95c4ad2d241e311d6947066c2a7b02b5754df2b69a7bb7aeed54d4515afe31b4437b8e47057e939e9444e7812ca0125ba3a8c65678d3d0
-EBUILD orion-1.6.7.ebuild 1048 BLAKE2B 3e3078f2d55514ac96928d982697e9b7e342709e242f6cd1d0ed3e4659878fa31d7169141468189c039e030dc26d3880986d6b43917bb5578151a2f01a8a69fd SHA512 11c13933d6598b859c6945285eba8e8adf4f1248bd6ca1d7e5e3b2fcbc6517e949b17e747f554993e2450b0b23232633c85be9a408d09f2cb0f6c4dba2590803
-MISC metadata.xml 574 BLAKE2B 494aba77b88c66e35f0fc59e2a188f15f50d678dcb155bdedd2590d44a2732ebd4554fdd483797ba316fdda3d4e25c1eceef4b0f2a2ad597c36e6d8d899d5dc4 SHA512 260fa2ae47d8d2bce4e6355d42ccf077ed10855c500eb8048fa6fc9b484260a53652d8432a3a9d5b3c1342c21915249e8807fb9594db85ad81d68bf4d259ab05
diff --git a/media-video/orion/metadata.xml b/media-video/orion/metadata.xml
deleted file mode 100644
index 6c00b2de8dd7..000000000000
--- a/media-video/orion/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>voyageur@gentoo.org</email>
- <name>Bernard Cafarelli</name>
- </maintainer>
- <use>
- <flag name="mpv">Use the <pkg>media-video/mpv</pkg> player (upstream default)</flag>
- <flag name="qtav">Use the <pkg>media-libs/qtav</pkg> player</flag>
- <flag name="qtmedia">Use the <pkg>dev-qt/qtmultimedia</pkg></flag>
- </use>
- <upstream>
- <remote-id type="github">alamminsalo/orion</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/media-video/orion/orion-1.6.7.ebuild b/media-video/orion/orion-1.6.7.ebuild
deleted file mode 100644
index 095b3c005cf1..000000000000
--- a/media-video/orion/orion-1.6.7.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit desktop qmake-utils xdg
-
-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 qtav qtmedia"
-
-DEPEND=">=dev-qt/qtdbus-5.8:5
- >=dev-qt/qtquickcontrols-5.8:5
- >=dev-qt/qtquickcontrols2-5.8:5
- >=dev-qt/qtsvg-5.8:5
- >=dev-qt/qtwebengine-5.8:5
- mpv? ( media-video/mpv[libmpv] )
- qtav? ( media-libs/qtav )
- qtmedia? ( >=dev-qt/qtmultimedia-5.8:5 )"
-RDEPEND="${DEPEND}
- !mpv? ( media-plugins/gst-plugins-hls )"
-
-REQUIRED_USE="^^ ( mpv qtav qtmedia )"
-
-src_configure() {
- local PLAYER
- if use mpv; then
- PLAYER=mpv
- elif use qtav; then
- PLAYER=qtav
- 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
-}