diff options
author | 2018-09-27 19:26:13 +0200 | |
---|---|---|
committer | 2018-09-27 19:51:53 +0200 | |
commit | 10ae2212f3e609f7f9682a94ac5a02ac4f3ae47b (patch) | |
tree | e4d2cd6e4c4d91f7d1793bc5dd9396bfb11ddeb7 /media-video/orion/orion-1.4.0.ebuild | |
parent | sci-libs/votca-moo: is now part of votca-ctp (diff) | |
download | gentoo-10ae2212f3e609f7f9682a94ac5a02ac4f3ae47b.tar.gz gentoo-10ae2212f3e609f7f9682a94ac5a02ac4f3ae47b.tar.bz2 gentoo-10ae2212f3e609f7f9682a94ac5a02ac4f3ae47b.zip |
media-video/orion: drop old
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Diffstat (limited to 'media-video/orion/orion-1.4.0.ebuild')
-rw-r--r-- | media-video/orion/orion-1.4.0.ebuild | 49 |
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 -} |